diff options
Diffstat (limited to 'src/net/tmwa/itemhandler.cpp')
-rw-r--r-- | src/net/tmwa/itemhandler.cpp | 8 |
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); } } |