CosttoOpenBankMsg has no handler
This commit is contained in:
+3
-3
@@ -22,7 +22,7 @@ import engine.objects.PlayerCharacter;
|
||||
*
|
||||
* @author Burfo
|
||||
*/
|
||||
public class AckBankWindowOpenedMsg extends ClientNetMsg {
|
||||
public class CostOpenBankMsg extends ClientNetMsg {
|
||||
|
||||
private int playerType;
|
||||
private int playerID;
|
||||
@@ -32,7 +32,7 @@ public class AckBankWindowOpenedMsg extends ClientNetMsg {
|
||||
/**
|
||||
* This is the general purpose constructor.
|
||||
*/
|
||||
public AckBankWindowOpenedMsg(PlayerCharacter pc, long unknown01, long unknown02) {
|
||||
public CostOpenBankMsg(PlayerCharacter pc, long unknown01, long unknown02) {
|
||||
super(Protocol.COSTTOOPENBANK);
|
||||
this.playerType = pc.getObjectType().ordinal();
|
||||
this.playerID = pc.getObjectUUID();
|
||||
@@ -46,7 +46,7 @@ public class AckBankWindowOpenedMsg extends ClientNetMsg {
|
||||
* past the limit) then this constructor Throws that Exception to the
|
||||
* caller.
|
||||
*/
|
||||
public AckBankWindowOpenedMsg(AbstractConnection origin, ByteBufferReader reader) {
|
||||
public CostOpenBankMsg(AbstractConnection origin, ByteBufferReader reader) {
|
||||
super(Protocol.COSTTOOPENBANK, origin, reader);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user