diff options
author | Emistry <Equinox1991@gmail.com> | 2016-08-10 23:07:42 +0800 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-08-14 17:53:23 +0200 |
commit | 26f1241ca5e58d95845aba101d7026759fa15e4b (patch) | |
tree | ddbe9bf60c41783db7e08d5eb640b99164720ef1 /src/map/pc.h | |
parent | 694070de091852a2b3426072d2141224391a8cc8 (diff) | |
download | hercules-26f1241ca5e58d95845aba101d7026759fa15e4b.tar.gz hercules-26f1241ca5e58d95845aba101d7026759fa15e4b.tar.bz2 hercules-26f1241ca5e58d95845aba101d7026759fa15e4b.tar.xz hercules-26f1241ca5e58d95845aba101d7026759fa15e4b.zip |
Update pc_steal_coin parameter
Added skill_lv as parameter to *pc_steal_coin()
Closes #1395 as merged
Signed-off-by: Haru <haru@dotalux.com>
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 df5416bc1..fd446813f 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -901,7 +901,7 @@ END_ZEROED_BLOCK; /* End */ bool (*can_insert_card_into) (struct map_session_data* sd, int idx_card, int idx_equip); int (*steal_item) (struct map_session_data *sd,struct block_list *bl, uint16 skill_lv); - int (*steal_coin) (struct map_session_data *sd,struct block_list *bl); + int (*steal_coin) (struct map_session_data *sd,struct block_list *bl, uint16 skill_lv); int (*modifybuyvalue) (struct map_session_data *sd,int orig_value); int (*modifysellvalue) (struct map_session_data *sd,int orig_value); |