summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-12-11 02:07:30 +0300
committerAndrei Karas <akaras@inbox.ru>2012-12-11 02:07:30 +0300
commit793ef9a791108d4940fca7f4158dbd4cacee96f2 (patch)
treee3962424bdb69cb6db237a5b0f91febe78c2352c
parentcddb3dd72f0fdf4639270596b3bcc252b3216c3a (diff)
downloadplus-793ef9a791108d4940fca7f4158dbd4cacee96f2.tar.gz
plus-793ef9a791108d4940fca7f4158dbd4cacee96f2.tar.bz2
plus-793ef9a791108d4940fca7f4158dbd4cacee96f2.tar.xz
plus-793ef9a791108d4940fca7f4158dbd4cacee96f2.zip
Show trade partner nick in trading errors.
-rw-r--r--src/net/ea/tradehandler.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/net/ea/tradehandler.cpp b/src/net/ea/tradehandler.cpp
index 32ddcfb98..946019251 100644
--- a/src/net/ea/tradehandler.cpp
+++ b/src/net/ea/tradehandler.cpp
@@ -131,12 +131,12 @@ void TradeHandler::processTradeResponse(Net::MessageIn &msg)
switch (msg.readInt8())
{
case 0: // Too far away
- SERVER_NOTICE(_("Trading isn't possible. Trade "
- "partner is too far away."))
+ SERVER_NOTICE(strprintf(_("Trading with %s isn't possible."
+ " Trade partner is too far away."), tradePartnerName.c_str()))
break;
case 1: // Character doesn't exist
- SERVER_NOTICE(_("Trading isn't possible. Character "
- "doesn't exist."))
+ SERVER_NOTICE(strprintf(_("Trading with %s isn't possible."
+ " Character doesn't exist."), tradePartnerName.c_str()))
break;
case 2: // Invite request check failed...
SERVER_NOTICE(_("Trade cancelled due to an unknown reason."))
@@ -156,7 +156,7 @@ void TradeHandler::processTradeResponse(Net::MessageIn &msg)
PlayerRelation::SPEECH_LOG))
{
SERVER_NOTICE(strprintf(_("Trade with %s cancelled."),
- tradePartnerName.c_str()))
+ tradePartnerName.c_str()))
}
// otherwise ignore silently
@@ -168,7 +168,8 @@ void TradeHandler::processTradeResponse(Net::MessageIn &msg)
PlayerInfo::setTrading(false);
break;
default: // Shouldn't happen as well, but to be sure
- SERVER_NOTICE(_("Unhandled trade cancel packet."))
+ SERVER_NOTICE(strprintf(_("Unhandled trade cancel packet with %s"),
+ tradePartnerName.c_str()))
if (tradeWindow)
tradeWindow->clear();
break;