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 ef630fc67..31451c09a 100644 --- a/src/spellmanager.cpp +++ b/src/spellmanager.cpp @@ -198,19 +198,19 @@ std::string SpellManager::parseCommand(std::string command, bool found = false; - int idx = command.find("<TARGET>"); + int idx = static_cast<int>(command.find("<TARGET>")); if (idx >= 0) { found = true; command = replaceAll(command, "<TARGET>", name); } - idx = command.find("<TARGETID>"); + idx = static_cast<int>(command.find("<TARGETID>")); if (idx >= 0) { found = true; command = replaceAll(command, "<TARGETID>", id); } - idx = command.find("<TARGETORSELF>"); + idx = static_cast<int>(command.find("<TARGETORSELF>")); if (idx >= 0) { found = true; |