diff options
author | Haru <haru@dotalux.com> | 2018-10-21 23:45:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-21 23:45:20 +0200 |
commit | b196e2b794bb96c1584c885f50e63326678ae89e (patch) | |
tree | cb6858c2f690018c9df097dd96a986ec22089fb5 /src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc | |
parent | f275d6a7d432953d2af6b9c0fe897be5e7657e1c (diff) | |
parent | dca07b9b9e9640085412b1ceafd691727b871048 (diff) | |
download | hercules-b196e2b794bb96c1584c885f50e63326678ae89e.tar.gz hercules-b196e2b794bb96c1584c885f50e63326678ae89e.tar.bz2 hercules-b196e2b794bb96c1584c885f50e63326678ae89e.tar.xz hercules-b196e2b794bb96c1584c885f50e63326678ae89e.zip |
Merge pull request #2182 from guilherme-gm/201808-trapfix
Fixes some issues with traps
Diffstat (limited to 'src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc')
-rw-r--r-- | src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc index b11e2d61c..051e6fbe2 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc @@ -135,6 +135,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(battle->delay_damage, HP_battle_delay_damage) }, { HP_POP(battle->drain, HP_battle_drain) }, { HP_POP(battle->reflect_damage, HP_battle_reflect_damage) }, + { HP_POP(battle->reflect_trap, HP_battle_reflect_trap) }, { HP_POP(battle->attr_ratio, HP_battle_attr_ratio) }, { HP_POP(battle->attr_fix, HP_battle_attr_fix) }, { HP_POP(battle->calc_cardfix, HP_battle_calc_cardfix) }, @@ -2923,6 +2924,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(skill->onskillusage, HP_skill_onskillusage) }, { HP_POP(skill->cell_overlap, HP_skill_cell_overlap) }, { HP_POP(skill->timerskill, HP_skill_timerskill) }, + { HP_POP(skill->trap_do_splash, HP_skill_trap_do_splash) }, { HP_POP(skill->trap_splash, HP_skill_trap_splash) }, { HP_POP(skill->check_condition_mercenary, HP_skill_check_condition_mercenary) }, { HP_POP(skill->locate_element_field, HP_skill_locate_element_field) }, |