diff options
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r-- | src/net/eathena/playerhandler.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 19146a836..cefbcf285 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -836,6 +836,13 @@ void PlayerHandler::setTitle(const int titleId) const outMsg.writeInt32(titleId, "title"); } +void PlayerHandler::closeStyleWindow() const +{ + if (packetVersion < 20151104) + return; + createOutPacket(CMSG_PLAYER_STYLE_CLOSE); +} + #undef setStatComplex } // namespace EAthena |