Merge branch 'patch-freeze-lives' into 'dev'

freeze lives packet should use virtual id

See merge request morningstar/Arcturus-Community!325
This commit is contained in:
Harmonic 2020-11-15 15:38:31 -05:00
commit f6dcf3a7b3

View File

@ -15,7 +15,7 @@ public class FreezeLivesComposer extends MessageComposer {
@Override
protected ServerMessage composeInternal() {
this.response.init(Outgoing.FreezeLivesComposer);
this.response.appendInt(this.gamePlayer.getHabbo().getHabboInfo().getId());
this.response.appendInt(this.gamePlayer.getHabbo().getRoomUnit().getId());
this.response.appendInt(this.gamePlayer.getLives());
return this.response;
}