summaryrefslogtreecommitdiff
path: root/src/spellmanager.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-09-11 20:04:10 +0300
committerAndrei Karas <akaras@inbox.ru>2016-09-11 20:04:10 +0300
commitbbc86b94fbe27e2ed4c05e7c2ac42037338e961e (patch)
treeb16704b23d99aed5cabe51ba2a0f80fb48d32cb0 /src/spellmanager.cpp
parent5019ae8009921a95770959b5f5a92854203d2755 (diff)
downloadplus-bbc86b94fbe27e2ed4c05e7c2ac42037338e961e.tar.gz
plus-bbc86b94fbe27e2ed4c05e7c2ac42037338e961e.tar.bz2
plus-bbc86b94fbe27e2ed4c05e7c2ac42037338e961e.tar.xz
plus-bbc86b94fbe27e2ed4c05e7c2ac42037338e961e.zip
Remove support for legacy configuration in SpellManager.
Diffstat (limited to 'src/spellmanager.cpp')
-rw-r--r--src/spellmanager.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/spellmanager.cpp b/src/spellmanager.cpp
index 79ec80a40..2020dae11 100644
--- a/src/spellmanager.cpp
+++ b/src/spellmanager.cpp
@@ -250,13 +250,9 @@ TextCommand *SpellManager::createNewSpell() const
return new TextCommand(CAST_U32(mSpellsVector.size()));
}
-void SpellManager::load(const bool oldConfig)
+void SpellManager::load()
{
- const Configuration *cfg;
- if (oldConfig)
- cfg = &config;
- else
- cfg = &serverConfig;
+ const Configuration *cfg = &serverConfig;
delete_all(mSpells);
mSpells.clear();