Two-step login system works perfectly; can't shut the server down

I've also removed a large amount of commented and uncommented code from
in_world.cpp, simply because so much code was dummied out. I can readd
this code as I reimeplement various features.
This commit is contained in:
Kayne Ruse
2014-11-26 10:14:26 +11:00
parent 584b6ea303
commit e5abd51f76
4 changed files with 119 additions and 375 deletions
+1 -1
View File
@@ -167,7 +167,7 @@ void ServerApplication::Proc() {
while(running) {
//suck in the waiting packets & process them
while(UDPNetworkUtility::GetSingleton().Receive(packetBuffer)) {
while(network.Receive(packetBuffer)) {
try {
HandlePacket(packetBuffer);
}