diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-29 12:00:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-29 12:00:44 +0300 |
commit | 523c9239668819844966097bd82445863d89103f (patch) | |
tree | 36302098c08aa324a03dd8311edc11b0ac1bfbd9 /src/net/eathena/inventoryhandler.cpp | |
parent | e54f285078ef704950648829d50cef7a9265e9fd (diff) | |
download | plus-523c9239668819844966097bd82445863d89103f.tar.gz plus-523c9239668819844966097bd82445863d89103f.tar.bz2 plus-523c9239668819844966097bd82445863d89103f.tar.xz plus-523c9239668819844966097bd82445863d89103f.zip |
Fix typo in packet name CMSG_MOVE_FROM_STORAGE.
Diffstat (limited to 'src/net/eathena/inventoryhandler.cpp')
-rw-r--r-- | src/net/eathena/inventoryhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/inventoryhandler.cpp b/src/net/eathena/inventoryhandler.cpp index 9de9d2141..278ca03bb 100644 --- a/src/net/eathena/inventoryhandler.cpp +++ b/src/net/eathena/inventoryhandler.cpp @@ -366,7 +366,7 @@ void InventoryHandler::moveItem2(const int source, { offset = STORAGE_OFFSET; if (destination == InventoryType::INVENTORY) - packet = CSMG_MOVE_FROM_STORAGE; + packet = CMSG_MOVE_FROM_STORAGE; else if (destination == InventoryType::CART) packet = CMSG_MOVE_FROM_STORAGE_TO_CART; } |