summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHercules.ws <Hercules@efficiently.awesome>2014-04-19 23:30:27 +0200
committerHerculesWSAPI <Hercules@efficiently.awesome>2014-04-19 23:30:27 +0200
commit97cd487deb324fb23d9f671d0c1ed739d52d5935 (patch)
treea8c4a64165592b32fecd326e87a7b4b84355bc09 /src
parentd57781cee04e99fa8be7c209a75b949a57eba59d (diff)
downloadhercules-97cd487deb324fb23d9f671d0c1ed739d52d5935.tar.gz
hercules-97cd487deb324fb23d9f671d0c1ed739d52d5935.tar.bz2
hercules-97cd487deb324fb23d9f671d0c1ed739d52d5935.tar.xz
hercules-97cd487deb324fb23d9f671d0c1ed739d52d5935.zip
HPM Hooks Update
Signed-off-by: HerculesWSAPI <Hercules@efficiently.awesome>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/HPMHooking/HPMHooking.Hooks.inc14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking.Hooks.inc b/src/plugins/HPMHooking/HPMHooking.Hooks.inc
index 606197a6c..969cdad93 100644
--- a/src/plugins/HPMHooking/HPMHooking.Hooks.inc
+++ b/src/plugins/HPMHooking/HPMHooking.Hooks.inc
@@ -50899,14 +50899,14 @@ int HP_pet_catch_process2(struct map_session_data *sd, int target_id) {
}
return retVal___;
}
-int HP_pet_get_egg(int account_id, int pet_id, int flag) {
+bool HP_pet_get_egg(int account_id, short pet_class, int pet_id) {
int hIndex = 0;
- int retVal___ = 0;
+ bool retVal___ = false;
if( HPMHooks.count.HP_pet_get_egg_pre ) {
- int (*preHookFunc) (int *account_id, int *pet_id, int *flag);
+ bool (*preHookFunc) (int *account_id, short *pet_class, int *pet_id);
for(hIndex = 0; hIndex < HPMHooks.count.HP_pet_get_egg_pre; hIndex++ ) {
preHookFunc = HPMHooks.list.HP_pet_get_egg_pre[hIndex].func;
- retVal___ = preHookFunc(&account_id, &pet_id, &flag);
+ retVal___ = preHookFunc(&account_id, &pet_class, &pet_id);
}
if( *HPMforce_return ) {
*HPMforce_return = false;
@@ -50914,13 +50914,13 @@ int HP_pet_get_egg(int account_id, int pet_id, int flag) {
}
}
{
- retVal___ = HPMHooks.source.pet.get_egg(account_id, pet_id, flag);
+ retVal___ = HPMHooks.source.pet.get_egg(account_id, pet_class, pet_id);
}
if( HPMHooks.count.HP_pet_get_egg_post ) {
- int (*postHookFunc) (int retVal___, int *account_id, int *pet_id, int *flag);
+ bool (*postHookFunc) (bool retVal___, int *account_id, short *pet_class, int *pet_id);
for(hIndex = 0; hIndex < HPMHooks.count.HP_pet_get_egg_post; hIndex++ ) {
postHookFunc = HPMHooks.list.HP_pet_get_egg_post[hIndex].func;
- retVal___ = postHookFunc(retVal___, &account_id, &pet_id, &flag);
+ retVal___ = postHookFunc(retVal___, &account_id, &pet_class, &pet_id);
}
}
return retVal___;