Replaced a block of code in setup_server.lua with one line

This commit is contained in:
Kayne Ruse
2015-01-11 20:12:50 +11:00
parent d0b2f8e12f
commit 9f3721247d
4 changed files with 4 additions and 72 deletions
-2
View File
@@ -589,8 +589,6 @@ void InWorld::HandleCharacterDelete(CharacterPacket* const argPacket) {
//ignore if this character doesn't exist
std::map<int, BaseCharacter>::iterator characterIt = characterMap.find(argPacket->characterIndex);
if (characterIt == characterMap.end()) {
//debug
std::cout << "Ignoring character deletion" << std::endl;
return;
}