Acturally handle click packets

This commit is contained in:
SilicaAndPina 2020-12-21 16:10:38 +13:00
parent 862375cc75
commit b184a9a3d4

View file

@ -168,6 +168,9 @@ namespace HISP.Server
case PacketBuilder.PACKET_CHAT:
GameServer.OnChatPacket(this, Packet);
break;
case PacketBuilder.PACKET_CLICK:
GameServer.OnClickPacket(this, Packet);
break;
case PacketBuilder.PACKET_KEEP_ALIVE:
GameServer.OnKeepAlive(this, Packet);
break;