diff options
-rw-r--r-- | src/net/ea/tradehandler.cpp | 4 | ||||
-rw-r--r-- | src/resources/notifications.h | 4 | ||||
-rw-r--r-- | src/resources/notifytypes.h | 1 |
3 files changed, 9 insertions, 0 deletions
diff --git a/src/net/ea/tradehandler.cpp b/src/net/ea/tradehandler.cpp index 482179bd1..2e9e5db56 100644 --- a/src/net/ea/tradehandler.cpp +++ b/src/net/ea/tradehandler.cpp @@ -124,6 +124,10 @@ void TradeHandler::processTradeResponseContinue(const uint8_t type) const } PlayerInfo::setTrading(false); break; + case 5: + NotifyManager::notify(NotifyTypes::TRADE_CANCELLED_BUSY, + tradePartnerName); + break; default: // Shouldn't happen as well, but to be sure NotifyManager::notify(NotifyTypes::TRADE_ERROR_UNKNOWN, tradePartnerName); diff --git a/src/resources/notifications.h b/src/resources/notifications.h index 0c394cea1..ea96e2eb7 100644 --- a/src/resources/notifications.h +++ b/src/resources/notifications.h @@ -271,6 +271,10 @@ namespace NotifyManager // TRANSLATORS: notification message N_("Trade with %s cancelled."), NotifyFlags::STRING}, + {"trade cancelled busy", + // TRANSLATORS: notification message + N_("Trade with %s cancelled, because player is busy"), + NotifyFlags::STRING}, {"trade error unknown", // TRANSLATORS: notification message N_("Unhandled trade cancel packet with %s"), diff --git a/src/resources/notifytypes.h b/src/resources/notifytypes.h index cb26fa5c4..3a0ca731b 100644 --- a/src/resources/notifytypes.h +++ b/src/resources/notifytypes.h @@ -87,6 +87,7 @@ namespace NotifyTypes TRADE_FAIL_CHAR_NOT_EXISTS, TRADE_CANCELLED_ERROR, TRADE_CANCELLED_NAME, + TRADE_CANCELLED_BUSY, TRADE_ERROR_UNKNOWN, TRADE_ADD_PARTNER_OVER_WEIGHT, TRADE_ADD_PARTNER_NO_SLOTS, |