This commit is contained in:
Aaron Kimbre
2022-12-20 08:14:58 -06:00
parent 192948a87f
commit 30fbdd3956
13 changed files with 237 additions and 10 deletions

View File

@@ -1239,6 +1239,11 @@ void HandlePacket(Packet* packet) {
break;
}
case MSG_WORLD_CLIENT_TMP_GUILD_CREATE: {
Game::logger->Log("WorldServer", "create a guild");
ClientPackets::HandleGuildCreation(packet->systemAddress, packet);
}
default:
Game::server->GetLogger()->Log("HandlePacket", "Unknown world packet received: %i", int(packet->data[3]));
}