You've already forked Arcturus-Morningstar-Extended
mirror of
https://github.com/duckietm/Arcturus-Morningstar-Extended.git
synced 2026-06-19 15:06:19 +00:00
Merge pull request #157 from simoleo89/fix/messenger-offline-friend-look
fix(messenger): send friend look for offline friends in friend list
This commit is contained in:
@@ -40,7 +40,7 @@ public class FriendsComposer extends MessageComposer {
|
|||||||
this.response.appendInt(row.getGender().equals(HabboGender.M) ? 0 : 1);
|
this.response.appendInt(row.getGender().equals(HabboGender.M) ? 0 : 1);
|
||||||
this.response.appendBoolean(row.getOnline() == 1);
|
this.response.appendBoolean(row.getOnline() == 1);
|
||||||
this.response.appendBoolean(row.inRoom()); //IN ROOM
|
this.response.appendBoolean(row.inRoom()); //IN ROOM
|
||||||
this.response.appendString(row.getOnline() == 1 ? row.getLook() : "");
|
this.response.appendString(row.getLook()); // send look for offline friends too (loaded from DB)
|
||||||
this.response.appendInt(row.getCategoryId()); //Friends category
|
this.response.appendInt(row.getCategoryId()); //Friends category
|
||||||
this.response.appendString(row.getMotto());
|
this.response.appendString(row.getMotto());
|
||||||
this.response.appendString(""); //Last seen as DATETIMESTRING
|
this.response.appendString(""); //Last seen as DATETIMESTRING
|
||||||
|
|||||||
Reference in New Issue
Block a user