diff options
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/monsterdb.cpp | 1 | ||||
-rw-r--r-- | src/resources/npcdb.cpp | 1 | ||||
-rw-r--r-- | src/resources/npcdb.h | 2 |
3 files changed, 1 insertions, 3 deletions
diff --git a/src/resources/monsterdb.cpp b/src/resources/monsterdb.cpp index 9a47b7c61..3d6473fd6 100644 --- a/src/resources/monsterdb.cpp +++ b/src/resources/monsterdb.cpp @@ -244,7 +244,6 @@ void MonsterDB::loadXmlFile(const std::string &fileName) mMonsterInfos[XML::getProperty( monsterNode, "id", 0) + offset] = currentInfo; } - } void MonsterDB::unload() diff --git a/src/resources/npcdb.cpp b/src/resources/npcdb.cpp index fe10370a5..bafef22c8 100644 --- a/src/resources/npcdb.cpp +++ b/src/resources/npcdb.cpp @@ -136,7 +136,6 @@ void NPCDB::loadXmlFile(const std::string &fileName) currentInfo->setDisplay(display); mNPCInfos[id] = currentInfo; } - } void NPCDB::unload() diff --git a/src/resources/npcdb.h b/src/resources/npcdb.h index 83d938f5a..9614c2052 100644 --- a/src/resources/npcdb.h +++ b/src/resources/npcdb.h @@ -45,6 +45,6 @@ namespace NPCDB uint16_t getAvatarFor(const int id); void loadXmlFile(const std::string &fileName); -} +} // namespace NPCDB #endif // RESOURCES_NPCDB_H |