summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog-Trunk.txt1
-rw-r--r--src/map/trade.c6
2 files changed, 6 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 089a0af91..37467bd7a 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -1,6 +1,7 @@
Date Added
2010/11/08
+ * Notify players involved in a trade that it has been canceled when one player changes maps/logs out or otherwise becomes unable to participate in the trade. [Paradox924X]
* Send the actual level of the person you're trading with rather than limiting it by the max_lv/aura_lv settings. [Paradox924X]
2010/11/07
* 'Exp gained' packets are now sent regardless of @showexp. @showexp can be enabled regardless of PACKETVER. [Gepard]
diff --git a/src/map/trade.c b/src/map/trade.c
index 392acb33f..32c84b508 100644
--- a/src/map/trade.c
+++ b/src/map/trade.c
@@ -455,8 +455,12 @@ void trade_tradecancel(struct map_session_data *sd)
if(!sd->state.trading)
{ // Not trade acepted
- if( target_sd ) target_sd->trade_partner = 0;
+ if( target_sd ) {
+ target_sd->trade_partner = 0;
+ clif_tradecancelled(target_sd);
+ }
sd->trade_partner = 0;
+ clif_tradecancelled(sd);
return;
}