mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 15:20:52 +01:00
Merge branch 'patch-photo-extradata' into 'dev'
added additonal parameters to photo extra data json string See merge request morningstar/Arcturus-Community!82
This commit is contained in:
commit
f14bd9dbc8
1
sqlupdates/2_3_0_TO_2_3_1.sql
Normal file
1
sqlupdates/2_3_0_TO_2_3_1.sql
Normal file
@ -0,0 +1 @@
|
||||
UPDATE `emulator_settings` SET `value`='{\"t\":%timestamp%, \"u\":\"%id%\", \"n\":\"%username%\", \"s\":%user_id%, \"w\":\"%url%\"}' WHERE (`key`='camera.extradata');
|
@ -45,7 +45,7 @@ public class HabboInfo implements Runnable {
|
||||
private TIntIntHashMap currencies;
|
||||
private GamePlayer gamePlayer;
|
||||
private int photoRoomId;
|
||||
private int photoTimestamp;
|
||||
private long photoTimestamp;
|
||||
private String photoURL;
|
||||
private String photoJSON;
|
||||
private int webPublishTimestamp;
|
||||
@ -430,11 +430,11 @@ public class HabboInfo implements Runnable {
|
||||
this.photoRoomId = roomId;
|
||||
}
|
||||
|
||||
public int getPhotoTimestamp() {
|
||||
public long getPhotoTimestamp() {
|
||||
return this.photoTimestamp;
|
||||
}
|
||||
|
||||
public void setPhotoTimestamp(int photoTimestamp) {
|
||||
public void setPhotoTimestamp(long photoTimestamp) {
|
||||
this.photoTimestamp = photoTimestamp;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user