summaryrefslogtreecommitdiff
path: root/src/net/tmwa/itemhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-16 18:35:06 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-16 19:43:03 +0300
commit3242aa80fbee19eb421ace68d1c3c69e4fc777e6 (patch)
tree50cc1b2e47953c20059183889e667f673ba7e4c2 /src/net/tmwa/itemhandler.cpp
parentd207e52ab770681f8bd584c06dd9aa03096b71f5 (diff)
downloadmv-3242aa80fbee19eb421ace68d1c3c69e4fc777e6.tar.gz
mv-3242aa80fbee19eb421ace68d1c3c69e4fc777e6.tar.bz2
mv-3242aa80fbee19eb421ace68d1c3c69e4fc777e6.tar.xz
mv-3242aa80fbee19eb421ace68d1c3c69e4fc777e6.zip
Add packet SMSG_ITEM_VISIBLE2 0x0b18.
Change net version to 10.
Diffstat (limited to 'src/net/tmwa/itemhandler.cpp')
-rw-r--r--src/net/tmwa/itemhandler.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/net/tmwa/itemhandler.cpp b/src/net/tmwa/itemhandler.cpp
index 336fb619c..b99ca12dc 100644
--- a/src/net/tmwa/itemhandler.cpp
+++ b/src/net/tmwa/itemhandler.cpp
@@ -86,9 +86,11 @@ void ItemHandler::processItemDropped(Net::MessageIn &msg)
x, y,
0,
amount,
+ 0,
identify,
Identified_false,
- subX, subY);
+ subX, subY,
+ nullptr);
}
}
@@ -111,9 +113,11 @@ void ItemHandler::processItemVisible(Net::MessageIn &msg)
x, y,
0,
amount,
+ 0,
ItemColor_one,
identified,
- subX, subY);
+ subX, subY,
+ nullptr);
}
}