diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Commands/cs_modify.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/scripts/Commands/cs_modify.cpp b/src/server/scripts/Commands/cs_modify.cpp index d181e41cf7d..670d92e6129 100644 --- a/src/server/scripts/Commands/cs_modify.cpp +++ b/src/server/scripts/Commands/cs_modify.cpp @@ -502,13 +502,13 @@ public: if (!*args) return false; - const char* mount_cstr = strtok(const_cast<char*>(args), " "); - const char* speed_cstr = strtok(NULL, " "); + char const* mount_cstr = strtok(const_cast<char*>(args), " "); + char const* speed_cstr = strtok(nullptr, " "); if (!mount_cstr || !speed_cstr) return false; - uint32 mount = atoul(args); + uint32 mount = atoul(mount_cstr); if (!sCreatureDisplayInfoStore.LookupEntry(mount)) { handler->SendSysMessage(LANG_NO_MOUNT); |