diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-12-29 12:30:46 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-12-29 12:30:46 +0000 |
commit | b32f28d74e9ec5cfe3bc443e2fbffd5de245fd0b (patch) | |
tree | 987e6805c3fc00966d1358b0a6a48c42bf1f0ec7 /src/net | |
parent | 41101dbd7f38c7e9898422c755b8eaf379f1d7c1 (diff) | |
download | mana-b32f28d74e9ec5cfe3bc443e2fbffd5de245fd0b.tar.gz mana-b32f28d74e9ec5cfe3bc443e2fbffd5de245fd0b.tar.bz2 mana-b32f28d74e9ec5cfe3bc443e2fbffd5de245fd0b.tar.xz mana-b32f28d74e9ec5cfe3bc443e2fbffd5de245fd0b.zip |
Removed duplicate pick up code
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/protocol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/protocol.cpp b/src/net/protocol.cpp index 7a98ffb6..28663827 100644 --- a/src/net/protocol.cpp +++ b/src/net/protocol.cpp @@ -93,7 +93,7 @@ void talk(Being *being) void pickUp(Uint32 floorItemId) { MessageOut outMsg; - outMsg.writeInt16(0x009f); + outMsg.writeInt16(CMSG_ITEM_PICKUP); outMsg.writeInt32(floorItemId); } |