diff options
Diffstat (limited to 'src/net/tmwa/playerhandler.cpp')
-rw-r--r-- | src/net/tmwa/playerhandler.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/net/tmwa/playerhandler.cpp b/src/net/tmwa/playerhandler.cpp index 9ad631d71..f2b47c607 100644 --- a/src/net/tmwa/playerhandler.cpp +++ b/src/net/tmwa/playerhandler.cpp @@ -25,6 +25,7 @@ #include "configuration.h" #include "game.h" #include "soundmanager.h" +#include "units.h" #include "being/attributes.h" #include "being/beingflag.h" @@ -37,6 +38,7 @@ #include "net/tmwa/messageout.h" #include "net/tmwa/protocol.h" +#include "gui/windows/skilldialog.h" #include "gui/windows/whoisonline.h" #include "gui/onlineplayer.h" @@ -470,4 +472,17 @@ void PlayerHandler::setViewEquipment(const bool allow A_UNUSED) const { } +void PlayerHandler::setStat(const int type, + const int base, + const int mod, + const bool notify) const +{ + if (type == 500) + { + localPlayer->setGMLevel(base); + return; + } + Ea::PlayerHandler::setStat(type, base, mod, notify); +} + } // namespace TmwAthena |