Merge branch 'fix-packet-integer-room-score' into 'dev'

Fixed RoomDataComposer to send correct room score

See merge request morningstar/Arcturus-Community!496
This commit is contained in:
Remco 2022-03-20 20:34:44 +00:00
commit c8f787bf32

View File

@ -39,8 +39,8 @@ public class RoomDataComposer extends MessageComposer {
this.response.appendInt(this.room.getUsersMax());
this.response.appendString(this.room.getDescription());
this.response.appendInt(this.room.getTradeMode());
this.response.appendInt(2);
this.response.appendInt(this.room.getScore());
this.response.appendInt(2);//Top rated room rank
this.response.appendInt(this.room.getCategory());
if (!this.room.getTags().isEmpty()) {