diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-10 16:16:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-15 19:26:02 +0300 |
commit | a74ad535b6c048994bce887134c710676abc2147 (patch) | |
tree | 648b04f628cb9ee65c84e297b47dbf6b6a91c780 /src/map | |
parent | 66ccb5adb45411adaef7ab45d2dc7fe1741ebdcc (diff) | |
download | hercules-a74ad535b6c048994bce887134c710676abc2147.tar.gz hercules-a74ad535b6c048994bce887134c710676abc2147.tar.bz2 hercules-a74ad535b6c048994bce887134c710676abc2147.tar.xz hercules-a74ad535b6c048994bce887134c710676abc2147.zip |
Add support for plugin options in map server config (script.conf).
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/script.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/map/script.c b/src/map/script.c index 56bccbdec..aa90a5b1c 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -55,6 +55,7 @@ #include "../common/sysinfo.h" #include "../common/timer.h" #include "../common/utils.h" +#include "../common/HPM.h" #ifndef WIN32 #include <sys/time.h> @@ -4141,7 +4142,9 @@ int script_config_read(char *cfgName) { else if(strcmpi(w1,"import")==0) { script->config_read(w2); } - else { + else if(HPM->parseConf(w1, w2, HPCT_SCRIPT)) { + ; // handled by plugin + } else { ShowWarning("Unknown setting '%s' in file %s\n", w1, cfgName); } } |