diff options
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(); |