diff options
Diffstat (limited to 'src/actormanager.cpp')
-rw-r--r-- | src/actormanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actormanager.cpp b/src/actormanager.cpp index 265c60e17..0ba29a774 100644 --- a/src/actormanager.cpp +++ b/src/actormanager.cpp @@ -1275,7 +1275,7 @@ void ActorManager::printBeingsToChat(const ActorSprites &beings, debugChatTab->chatLog(strprintf("%s (%d,%d) %d", being->getName().c_str(), being->getTileX(), being->getTileY(), - being->getSubType()), BY_SERVER); + being->getSubType()), ChatMsgType::BY_SERVER); } debugChatTab->chatLog("---------------------------------------"); } @@ -1298,7 +1298,7 @@ void ActorManager::printBeingsToChat(const std::vector<Being*> &beings, debugChatTab->chatLog(strprintf("%s (%d,%d) %d", being->getName().c_str(), being->getTileX(), being->getTileY(), - being->getSubType()), BY_SERVER); + being->getSubType()), ChatMsgType::BY_SERVER); } debugChatTab->chatLog("---------------------------------------"); } |