diff options
Diffstat (limited to 'src/utils/gmfunctions.cpp')
-rw-r--r-- | src/utils/gmfunctions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/gmfunctions.cpp b/src/utils/gmfunctions.cpp index 45179c02d..e6abc3e83 100644 --- a/src/utils/gmfunctions.cpp +++ b/src/utils/gmfunctions.cpp @@ -66,7 +66,7 @@ void runCharCommand(const std::string &command, const std::string &name, const std::string ¶ms) { - if (localPlayer && name == localPlayer->getName()) + if ((localPlayer != nullptr) && name == localPlayer->getName()) { if (params.empty()) { @@ -101,7 +101,7 @@ void runCharCommand(const std::string &command, void runCharCommand(const std::string &command, const std::string &name) { - if (localPlayer && name == localPlayer->getName()) + if ((localPlayer != nullptr) && name == localPlayer->getName()) { chatHandler->talk(std::string( settings.gmCommandSymbol).append( |