Arcturus-Community/src/main/java/com/eu/habbo/messages/outgoing/users/UserBCLimitsComposer.java

17 lines
524 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.messages.outgoing.users;
import com.eu.habbo.messages.ServerMessage;
import com.eu.habbo.messages.outgoing.MessageComposer;
import com.eu.habbo.messages.outgoing.Outgoing;
2019-05-26 20:14:53 +02:00
public class UserBCLimitsComposer extends MessageComposer {
2018-07-06 15:30:00 +02:00
@Override
protected ServerMessage composeInternal() {
2018-07-06 15:30:00 +02:00
this.response.init(Outgoing.UserBCLimitsComposer);
this.response.appendInt(0);
this.response.appendInt(500);
this.response.appendInt(0);
return this.response;
}
}