diff options
author | panikon <panikon@zoho.com> | 2014-07-11 19:16:47 -0300 |
---|---|---|
committer | panikon <panikon@zoho.com> | 2014-07-11 19:16:47 -0300 |
commit | da4f06859fd49393ddd82c07a0586a20cb5ad4f6 (patch) | |
tree | 90c2b0052c5eaa49e5f1ef41b13ad25d555eaae1 /src/map/pc.h | |
parent | 901a8c9cdf891fb65e160094e52346b2aa4e9754 (diff) | |
download | hercules-da4f06859fd49393ddd82c07a0586a20cb5ad4f6.tar.gz hercules-da4f06859fd49393ddd82c07a0586a20cb5ad4f6.tar.bz2 hercules-da4f06859fd49393ddd82c07a0586a20cb5ad4f6.tar.xz hercules-da4f06859fd49393ddd82c07a0586a20cb5ad4f6.zip |
Fixed issue with quest exp and bonuses, issue: 8247 http://hercules.ws/board/index.php?app=tracker&showissue=8247
Corrected *getexp documentation
Documented and changed pc_gainexp type
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 fb2d3dbb1..fcd6f39d0 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -858,7 +858,7 @@ struct pc_interface { unsigned int (*maxjoblv) (struct map_session_data *sd); int (*checkbaselevelup) (struct map_session_data *sd); int (*checkjoblevelup) (struct map_session_data *sd); - int (*gainexp) (struct map_session_data *sd, struct block_list *src, unsigned int base_exp, unsigned int job_exp, bool is_quest); + bool (*gainexp) (struct map_session_data *sd, struct block_list *src, unsigned int base_exp, unsigned int job_exp, bool is_quest); unsigned int (*nextbaseexp) (struct map_session_data *sd); unsigned int (*thisbaseexp) (struct map_session_data *sd); unsigned int (*nextjobexp) (struct map_session_data *sd); |