diff options
author | shennetsind <ind@henn.et> | 2013-09-17 16:56:04 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-09-17 16:56:04 -0300 |
commit | 78c7c6bf04a6c96d92524ae37ad165e65f599eb8 (patch) | |
tree | fc7d3a562c6c47b4f8836c984b5aef1c70b64d7c /src/map/map.c | |
parent | 2884b361c247a66c91188cfeb924e1794d58da55 (diff) | |
download | hercules-78c7c6bf04a6c96d92524ae37ad165e65f599eb8.tar.gz hercules-78c7c6bf04a6c96d92524ae37ad165e65f599eb8.tar.bz2 hercules-78c7c6bf04a6c96d92524ae37ad165e65f599eb8.tar.xz hercules-78c7c6bf04a6c96d92524ae37ad165e65f599eb8.zip |
HPM: npc_chat.c Interfaced
Fully Integrated, closes #117
Also updated buildin_ functions to match latest script.c/.h macros.
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/map/map.c b/src/map/map.c index a1c78f35b..d4568766a 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -5175,7 +5175,9 @@ void map_hp_symbols(void) { HPM->share(pet,"pet"); HPM->share(path,"path"); HPM->share(quest,"quest"); - +#ifdef PCRE_SUPPORT + HPM->share(npc_chat,"npc_chat"); +#endif /* partial */ HPM->share(mapit,"mapit"); /* sql link */ @@ -5226,6 +5228,9 @@ void map_load_defaults(void) { pet_defaults(); path_defaults(); quest_defaults(); +#ifdef PCRE_SUPPORT + npc_chat_defaults(); +#endif } int do_init(int argc, char *argv[]) { |