diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-11 20:04:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-11 20:04:10 +0300 |
commit | bbc86b94fbe27e2ed4c05e7c2ac42037338e961e (patch) | |
tree | b16704b23d99aed5cabe51ba2a0f80fb48d32cb0 /src/spellmanager.cpp | |
parent | 5019ae8009921a95770959b5f5a92854203d2755 (diff) | |
download | ManaVerse-bbc86b94fbe27e2ed4c05e7c2ac42037338e961e.tar.gz ManaVerse-bbc86b94fbe27e2ed4c05e7c2ac42037338e961e.tar.bz2 ManaVerse-bbc86b94fbe27e2ed4c05e7c2ac42037338e961e.tar.xz ManaVerse-bbc86b94fbe27e2ed4c05e7c2ac42037338e961e.zip |
Remove support for legacy configuration in SpellManager.
Diffstat (limited to 'src/spellmanager.cpp')
-rw-r--r-- | src/spellmanager.cpp | 8 |
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(); |