summaryrefslogtreecommitdiff
path: root/src/net/ea/tradehandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-04 19:33:37 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-06 01:18:57 +0300
commit549d21c0c9995c2120ea539cfb3551817df214a2 (patch)
treed314c5fab2de5a39b26e0c628b9ca9968c5bfaa4 /src/net/ea/tradehandler.cpp
parentd3dda64049f13ca95bb86fe13c707b14039a7595 (diff)
downloadplus-549d21c0c9995c2120ea539cfb3551817df214a2.tar.gz
plus-549d21c0c9995c2120ea539cfb3551817df214a2.tar.bz2
plus-549d21c0c9995c2120ea539cfb3551817df214a2.tar.xz
plus-549d21c0c9995c2120ea539cfb3551817df214a2.zip
Move processTradeItemAdd from ea namespace into eathena and tmwa.
Diffstat (limited to 'src/net/ea/tradehandler.cpp')
-rw-r--r--src/net/ea/tradehandler.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/net/ea/tradehandler.cpp b/src/net/ea/tradehandler.cpp
index 5f507a01a..d22a602a6 100644
--- a/src/net/ea/tradehandler.cpp
+++ b/src/net/ea/tradehandler.cpp
@@ -128,29 +128,6 @@ void TradeHandler::processTradeResponse(Net::MessageIn &msg) const
}
}
-void TradeHandler::processTradeItemAdd(Net::MessageIn &msg)
-{
- const int amount = msg.readInt32();
- const int type = msg.readInt16();
- const uint8_t identify = msg.readUInt8(); // identified flag
- msg.readUInt8(); // attribute
- const uint8_t refine = msg.readUInt8(); // refine
- msg.skip(8); // card (4 shorts)
-
- if (tradeWindow)
- {
- if (type == 0)
- {
- tradeWindow->setMoney(amount);
- }
- else
- {
- tradeWindow->addItem2(type, false, amount,
- refine, identify, false);
- }
- }
-}
-
void TradeHandler::processTradeItemAddResponse(Net::MessageIn &msg)
{
// Trade: New Item add response (was 0x00ea, now 01b1)