diff options
Diffstat (limited to 'src/spellmanager.cpp')
-rw-r--r-- | src/spellmanager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/spellmanager.cpp b/src/spellmanager.cpp index 85ac4bf22..b1fad932a 100644 --- a/src/spellmanager.cpp +++ b/src/spellmanager.cpp @@ -165,7 +165,7 @@ void SpellManager::invoke(const int spellId) const } } -void SpellManager::invokeSpell(const TextCommand *const spell) const +void SpellManager::invokeSpell(const TextCommand *const spell) { if (!chatWindow || !spell) return; @@ -173,7 +173,7 @@ void SpellManager::invokeSpell(const TextCommand *const spell) const } void SpellManager::invokeSpell(const TextCommand *const spell, - const Being *const target) const + const Being *const target) { if (!chatWindow || !spell || !target) return; @@ -181,7 +181,7 @@ void SpellManager::invokeSpell(const TextCommand *const spell, } std::string SpellManager::parseCommand(std::string command, - const Being *const target) const + const Being *const target) { if (!player_node) return command; |