diff options
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r-- | src/net/eathena/playerhandler.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 8c82cd93e..c319c6e8d 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -31,6 +31,7 @@ #include "debug.h" extern Net::PlayerHandler *playerHandler; +extern int serverVersion; namespace EAthena { @@ -170,6 +171,14 @@ void PlayerHandler::setShortcut(const int idx, outMsg.writeInt16(static_cast<int16_t>(level), "level"); } +void PlayerHandler::shortcutShiftRow(const int row) const +{ + if (serverVersion != 0 && serverVersion < 11) + return; + createOutPacket(CMSG_SHORTCUTS_ROW_SHIFT); + outMsg.writeInt8(static_cast<int8_t>(row), "row"); +} + void PlayerHandler::removeOption() const { createOutPacket(CMSG_REMOVE_OPTION); |