From 8c4062d16fa6997951d37493f6f581854e5ce7cb Mon Sep 17 00:00:00 2001 From: skotlex Date: Sat, 14 Apr 2007 04:09:40 +0000 Subject: - Corrected land protector's duration according to the descriptions - Fixed "pc drop item" doing the incorrect check to see if the player was trading. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10252 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/pc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/map') diff --git a/src/map/pc.c b/src/map/pc.c index 7ea090113..90b9217ab 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -2803,9 +2803,9 @@ int pc_dropitem(struct map_session_data *sd,int n,int amount) return 0; if(sd->status.inventory[n].nameid <= 0 || - sd->status.inventory[n].amount < amount || - sd->trade_partner != 0 || sd->vender_id != 0 || sd->status.inventory[n].amount <= 0 || + sd->status.inventory[n].amount < amount || + sd->state.trading || sd->vender_id != 0 || !sd->inventory_data[n] //pc_delitem would fail on this case. ) return 0; -- cgit v1.2.3-70-g09d2