summaryrefslogtreecommitdiff
path: root/src/resources/chatobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/chatobject.cpp')
-rw-r--r--src/resources/chatobject.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/resources/chatobject.cpp b/src/resources/chatobject.cpp
index 3a8ac56f8..af5bc5737 100644
--- a/src/resources/chatobject.cpp
+++ b/src/resources/chatobject.cpp
@@ -53,7 +53,8 @@ void ChatObject::update()
ChatObject *ChatObject::findByName(const std::string &name)
{
- const std::map<std::string, ChatObject*>::iterator it = chatNameMap.find(name);
+ const std::map<std::string, ChatObject*>::iterator it =
+ chatNameMap.find(name);
if (it == chatNameMap.end())
return nullptr;
else