diff options
author | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-15 15:13:45 +0000 |
---|---|---|
committer | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-15 15:13:45 +0000 |
commit | a709396e2957e4cf70c8f5061ea62073b7f6f0f6 (patch) | |
tree | a298eca62a8df2311edaecc0a234a509e0ed2a4a | |
parent | 209b33d9e30842758a1f248dfdc62091af4b2316 (diff) | |
download | hercules-a709396e2957e4cf70c8f5061ea62073b7f6f0f6.tar.gz hercules-a709396e2957e4cf70c8f5061ea62073b7f6f0f6.tar.bz2 hercules-a709396e2957e4cf70c8f5061ea62073b7f6f0f6.tar.xz hercules-a709396e2957e4cf70c8f5061ea62073b7f6f0f6.zip |
Fixed compilation error added in r10003 in skill.c
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10016 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | src/map/skill.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/skill.c b/src/map/skill.c index bb22057b4..b3ad80d8d 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -8970,7 +8970,7 @@ void skill_weaponrefine (struct map_session_data *sd, int idx) ep = item->equip; pc_unequipitem(sd,idx,3); } - clif_refine(sd->fd,sd,0,idx,item->refine); + clif_refine(sd->fd,0,idx,item->refine); clif_delitem(sd,idx,1); clif_additem(sd,idx,1,0); if (ep) @@ -8996,7 +8996,7 @@ void skill_weaponrefine (struct map_session_data *sd, int idx) item->refine = 0; if(item->equip) pc_unequipitem(sd,idx,3); - clif_refine(sd->fd,sd,1,idx,item->refine); + clif_refine(sd->fd,1,idx,item->refine); pc_delitem(sd,idx,1,0); clif_misceffect(&sd->bl,2); clif_emotion(&sd->bl, 23); |