diff options
author | Haru <haru@dotalux.com> | 2018-05-01 18:56:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-01 18:56:28 +0200 |
commit | 75930315136d7a6b3ce301d09065e3b0386806e0 (patch) | |
tree | 539679fec485b593c54dd2ee4096630232638ed4 /src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc | |
parent | 24360ce305c85b34d814283be9fe7c70a1eff404 (diff) | |
parent | 51da42665a00756ecbeae5e264875c312fd1536d (diff) | |
download | hercules-75930315136d7a6b3ce301d09065e3b0386806e0.tar.gz hercules-75930315136d7a6b3ce301d09065e3b0386806e0.tar.bz2 hercules-75930315136d7a6b3ce301d09065e3b0386806e0.tar.xz hercules-75930315136d7a6b3ce301d09065e3b0386806e0.zip |
Merge pull request #2019 from Asheraf/mskillconf
Convert mob_skill_db into libconf format
Diffstat (limited to 'src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc')
-rw-r--r-- | src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc index 711e25d30..488792200 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc @@ -1923,13 +1923,15 @@ struct HookingPointData HookingPoints[] = { { HP_POP(mob->read_randommonster, HP_mob_read_randommonster) }, { HP_POP(mob->parse_row_chatdb, HP_mob_parse_row_chatdb) }, { HP_POP(mob->readchatdb, HP_mob_readchatdb) }, - { HP_POP(mob->parse_row_mobskilldb, HP_mob_parse_row_mobskilldb) }, { HP_POP(mob->readskilldb, HP_mob_readskilldb) }, { HP_POP(mob->readdb_race2, HP_mob_readdb_race2) }, { HP_POP(mob->readdb_itemratio, HP_mob_readdb_itemratio) }, { HP_POP(mob->load, HP_mob_load) }, { HP_POP(mob->clear_spawninfo, HP_mob_clear_spawninfo) }, { HP_POP(mob->destroy_mob_db, HP_mob_destroy_mob_db) }, + { HP_POP(mob->skill_db_libconfig, HP_mob_skill_db_libconfig) }, + { HP_POP(mob->skill_db_libconfig_sub, HP_mob_skill_db_libconfig_sub) }, + { HP_POP(mob->skill_db_libconfig_sub_skill, HP_mob_skill_db_libconfig_sub_skill) }, /* mutex_interface */ { HP_POP(mutex->create, HP_mutex_create) }, { HP_POP(mutex->destroy, HP_mutex_destroy) }, |