Core/Commands: Fixed .damage command to work with spell schools caused by bad strtok usage

Closes #22280
This commit is contained in:
Shauren
2018-08-17 11:17:12 +02:00
parent b01d9f9b58
commit bc3da555fe

View File

@@ -2286,11 +2286,7 @@ public:
if (!target->IsAlive())
return true;
char* damageStr = strtok((char*)args, " ");
if (!damageStr)
return false;
int32 damage_int = atoi((char*)damageStr);
int32 damage_int = atoi((char*)str);
if (damage_int <= 0)
return true;