diff options
author | Haru <haru@dotalux.com> | 2016-03-13 21:13:32 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-07-12 20:58:40 +0200 |
commit | d0355d1df812f75e22f2d0538a1850d4e1274078 (patch) | |
tree | 03fd55f341c33519ced7a98c157f4b110bd6228b /src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc | |
parent | bdfa016ce40fb7382206775d656ba5f751ac3b49 (diff) | |
download | hercules-d0355d1df812f75e22f2d0538a1850d4e1274078.tar.gz hercules-d0355d1df812f75e22f2d0538a1850d4e1274078.tar.bz2 hercules-d0355d1df812f75e22f2d0538a1850d4e1274078.tar.xz hercules-d0355d1df812f75e22f2d0538a1850d4e1274078.zip |
HPM Hooks Update
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc')
-rw-r--r-- | src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc index 59949c536..4f103df81 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc @@ -2323,6 +2323,15 @@ struct HookingPointData HookingPoints[] = { { HP_POP(quest->clear, HP_quest_clear) }, { HP_POP(quest->read_db, HP_quest_read_db) }, { HP_POP(quest->read_db_sub, HP_quest_read_db_sub) }, +/* rnd_interface */ + { HP_POP(rnd->init, HP_rnd_init) }, + { HP_POP(rnd->final, HP_rnd_final) }, + { HP_POP(rnd->seed, HP_rnd_seed) }, + { HP_POP(rnd->random, HP_rnd_random) }, + { HP_POP(rnd->roll, HP_rnd_roll) }, + { HP_POP(rnd->value, HP_rnd_value) }, + { HP_POP(rnd->uniform, HP_rnd_uniform) }, + { HP_POP(rnd->uniform53, HP_rnd_uniform53) }, /* script_interface */ { HP_POP(script->init, HP_script_init) }, { HP_POP(script->final, HP_script_final) }, |