diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-06-10 05:51:29 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-06-10 05:51:29 +0300 |
commit | b02eceefa01bbe52f05d1e0db8693a2088808bac (patch) | |
tree | 6ae658c19f882f19265d59cc9ba17dcad818063d /src/net/eathena/skillhandler.cpp | |
parent | aa1922ef9731d8f8a949eb171be1f945973c5115 (diff) | |
download | mv-b02eceefa01bbe52f05d1e0db8693a2088808bac.tar.gz mv-b02eceefa01bbe52f05d1e0db8693a2088808bac.tar.bz2 mv-b02eceefa01bbe52f05d1e0db8693a2088808bac.tar.xz mv-b02eceefa01bbe52f05d1e0db8693a2088808bac.zip |
Disable additional field in SkillHandler::usePos.
Diffstat (limited to 'src/net/eathena/skillhandler.cpp')
-rw-r--r-- | src/net/eathena/skillhandler.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/net/eathena/skillhandler.cpp b/src/net/eathena/skillhandler.cpp index 3c9e7e158..fdce9a93c 100644 --- a/src/net/eathena/skillhandler.cpp +++ b/src/net/eathena/skillhandler.cpp @@ -77,11 +77,14 @@ void SkillHandler::usePos(const int id, const int level, outMsg.writeInt16(CAST_S16(id), "skill id"); outMsg.writeInt16(CAST_S16(x), "x"); outMsg.writeInt16(CAST_S16(y), "y"); +/* + // disabled due priority from shuffle packets over normal. if (packetVersionZero >= 20180131 || packetVersion >= 20180207) { outMsg.writeInt8(0, "unknown"); } +*/ } } |