summaryrefslogtreecommitdiff
path: root/src/map/trade.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/trade.c')
-rw-r--r--src/map/trade.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/trade.c b/src/map/trade.c
index da43d67..8bf2cb2 100644
--- a/src/map/trade.c
+++ b/src/map/trade.c
@@ -27,6 +27,12 @@ void trade_traderequest(struct map_session_data *sd,int target_id)
return;
}
}
+ if (target_sd->npc_id)
+ {
+ //Trade fails if you are using an NPC.
+ clif_tradestart(sd, 2);
+ return;
+ }
if((target_sd->trade_partner !=0) || (sd->trade_partner !=0)) {
trade_tradecancel(sd); //person is in another trade
}