diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-07-01 15:26:53 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-07-01 15:26:53 +0000 |
commit | bdfce85b67dd0e63f34ddf9bed05d94b79dd9d05 (patch) | |
tree | 8a5660f98c2af5a8456e801e5d11f17a31bb6e1d /src/map/pc.c | |
parent | e8268e93edc3fe17abb22b870a66eecaf5ba1e13 (diff) | |
download | hercules-bdfce85b67dd0e63f34ddf9bed05d94b79dd9d05.tar.gz hercules-bdfce85b67dd0e63f34ddf9bed05d94b79dd9d05.tar.bz2 hercules-bdfce85b67dd0e63f34ddf9bed05d94b79dd9d05.tar.xz hercules-bdfce85b67dd0e63f34ddf9bed05d94b79dd9d05.zip |
Cleaned up some parts of the code.
Removed obsolete script function 'hasitems'.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10838 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 995bf5901..79a898cff 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -2920,8 +2920,8 @@ int pc_takeitem(struct map_session_data *sd,struct flooritem_data *fitem) } } } - //This function takes care of giving the item to whoever should have it - //considering party-share options. + + //This function takes care of giving the item to whoever should have it, considering party-share options. if ((flag = party_share_loot(p,sd,&fitem->item_data, fitem->first_get_id))) { clif_additem(sd,0,0,flag); return 1; @@ -2929,7 +2929,6 @@ int pc_takeitem(struct map_session_data *sd,struct flooritem_data *fitem) //Display pickup animation. pc_stop_attack(sd); - clif_takeitem(&sd->bl,&fitem->bl); map_clearflooritem(fitem->bl.id); return 1; @@ -3050,7 +3049,7 @@ int pc_useitem(struct map_session_data *sd,int n) sd->itemindex = n; amount = sd->status.inventory[n].amount; script = sd->inventory_data[n]->script; - //Check if the item is to be consumed inmediately [Skotlex] + //Check if the item is to be consumed immediately [Skotlex] if (sd->inventory_data[n]->flag.delay_consume) clif_useitemack(sd,n,amount,1); else { |