diff options
author | Haruna <haru@dotalux.com> | 2015-08-12 16:16:28 +0200 |
---|---|---|
committer | Haruna <haru@dotalux.com> | 2015-08-12 16:16:28 +0200 |
commit | 8ce961b7bfa60f447d93b604a9944d9c44e8319c (patch) | |
tree | ce60c77a7dadb8ff6de007032b33a051580d4cd0 /src/map/pc.h | |
parent | 10f24ba5b82e7e563cb720a8dea9a415fd8055d7 (diff) | |
parent | 691fe69c991503b2b00e4ece5d5cc956737e5a67 (diff) | |
download | hercules-8ce961b7bfa60f447d93b604a9944d9c44e8319c.tar.gz hercules-8ce961b7bfa60f447d93b604a9944d9c44e8319c.tar.bz2 hercules-8ce961b7bfa60f447d93b604a9944d9c44e8319c.tar.xz hercules-8ce961b7bfa60f447d93b604a9944d9c44e8319c.zip |
Merge pull request #636 from 4144/equippos
Add n parameter to function pc_equipitem_pos.
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index f546d4910..d35c29bc7 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -915,7 +915,7 @@ END_ZEROED_BLOCK; /* End */ int (*resetfeel) (struct map_session_data *sd); int (*resethate) (struct map_session_data *sd); int (*equipitem) (struct map_session_data *sd,int n,int req_pos); - void (*equipitem_pos) (struct map_session_data *sd, struct item_data *id, int pos); + void (*equipitem_pos) (struct map_session_data *sd, struct item_data *id, int n, int pos); int (*unequipitem) (struct map_session_data *sd,int n,int flag); void (*unequipitem_pos) (struct map_session_data *sd, int n, int pos); int (*checkitem) (struct map_session_data *sd); |