diff options
author | Haruna <haru@dotalux.com> | 2015-10-20 01:04:55 +0200 |
---|---|---|
committer | Haruna <haru@dotalux.com> | 2015-10-20 01:04:55 +0200 |
commit | 8547f799e5c395edf2f4e838889b7006e4320820 (patch) | |
tree | 1045b65e86b00ebbf6ef57b5c80542b3a3215179 /src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc | |
parent | cffb68c6ee66227327e128f86cde8aa843e273d6 (diff) | |
parent | 06ccf37fe3cf52fd45a18a55eec78f47844b7efe (diff) | |
download | hercules-8547f799e5c395edf2f4e838889b7006e4320820.tar.gz hercules-8547f799e5c395edf2f4e838889b7006e4320820.tar.bz2 hercules-8547f799e5c395edf2f4e838889b7006e4320820.tar.xz hercules-8547f799e5c395edf2f4e838889b7006e4320820.zip |
Merge pull request #778 from 4144/mobdb
Convert mob_db from txt to conf format.
Diffstat (limited to 'src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc')
-rw-r--r-- | src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc index dacb51580..3ecb82965 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc @@ -1754,10 +1754,16 @@ struct HookingPointData HookingPoints[] = { { HP_POP(mob->clone_delete, HP_mob_clone_delete) }, { HP_POP(mob->drop_adjust, HP_mob_drop_adjust) }, { HP_POP(mob->item_dropratio_adjust, HP_mob_item_dropratio_adjust) }, - { HP_POP(mob->parse_dbrow, HP_mob_parse_dbrow) }, - { HP_POP(mob->readdb_sub, HP_mob_readdb_sub) }, { HP_POP(mob->readdb, HP_mob_readdb) }, - { HP_POP(mob->read_sqldb, HP_mob_read_sqldb) }, + { HP_POP(mob->lookup_const, HP_mob_lookup_const) }, + { HP_POP(mob->get_const, HP_mob_get_const) }, + { HP_POP(mob->read_libconfig, HP_mob_read_libconfig) }, + { HP_POP(mob->read_db_additional_fields, HP_mob_read_db_additional_fields) }, + { HP_POP(mob->read_db_sub, HP_mob_read_db_sub) }, + { HP_POP(mob->read_db_drops_sub, HP_mob_read_db_drops_sub) }, + { HP_POP(mob->read_db_mvpdrops_sub, HP_mob_read_db_mvpdrops_sub) }, + { HP_POP(mob->read_db_mode_sub, HP_mob_read_db_mode_sub) }, + { HP_POP(mob->read_db_stats_sub, HP_mob_read_db_stats_sub) }, { HP_POP(mob->name_constants, HP_mob_name_constants) }, { HP_POP(mob->readdb_mobavail, HP_mob_readdb_mobavail) }, { HP_POP(mob->read_randommonster, HP_mob_read_randommonster) }, |