Moved some utility methods out of the "god class"

These methods are are now functions in server_utilities.hpp
This commit is contained in:
Kayne Ruse
2015-02-27 01:20:05 +11:00
parent d8045ae339
commit 067bf40be7
10 changed files with 219 additions and 149 deletions
+1 -1
View File
@@ -188,7 +188,7 @@ void ServerApplication::Proc() {
//Check client connections
std::list<int> disconnections = clientMgr.CheckConnections();
for(auto const& it : disconnections) {
FullClientUnload(it);
fullClientUnload(it);
std::cerr << "Client dropped: " << it << std::endl;
}