diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-07-27 07:23:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-07-27 07:23:36 +0300 |
commit | 03d1705dfafccdcd5ed613a2cca699e80978f747 (patch) | |
tree | 5484e6f63b50c5a6d1a3a4f7a9865b89ec46dc8c /src/net/eathena/homunculusrecv.cpp | |
parent | ae865d08a0d913e5a5a8e843f4f3be042fca15af (diff) | |
download | mv-03d1705dfafccdcd5ed613a2cca699e80978f747.tar.gz mv-03d1705dfafccdcd5ed613a2cca699e80978f747.tar.bz2 mv-03d1705dfafccdcd5ed613a2cca699e80978f747.tar.xz mv-03d1705dfafccdcd5ed613a2cca699e80978f747.zip |
Add new chanaged packet where item id with size int32 was introduced.
Also fix some other packets for support int32 ints.
Diffstat (limited to 'src/net/eathena/homunculusrecv.cpp')
-rw-r--r-- | src/net/eathena/homunculusrecv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/homunculusrecv.cpp b/src/net/eathena/homunculusrecv.cpp index 5f0b586bd..33bde140c 100644 --- a/src/net/eathena/homunculusrecv.cpp +++ b/src/net/eathena/homunculusrecv.cpp @@ -123,7 +123,7 @@ void HomunculusRecv::processHomunculusInfo(Net::MessageIn &msg) Notify_true); const int hungry = msg.readInt16("hungry"); const int intimacy = msg.readInt16("intimacy"); - const int equip = msg.readInt16("equip"); + const int equip = msg.readItemId("item id"); PlayerInfo::setStatBase(Attributes::HOMUN_ATK, msg.readInt16("atk"), Notify_true); |