diff options
author | Haru <haru@dotalux.com> | 2018-07-24 03:17:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-24 03:17:45 +0200 |
commit | 567d218287a59154d40b6c69b4dd339640ca92b6 (patch) | |
tree | 850cc2b40e2c20ed1ecb9b56460594251ea2d12d /src/map/script.h | |
parent | bb301746703582be9f7c30b969f03c1ab14d1228 (diff) | |
parent | 053dac2f0e62b64877e3dd04cc531452bce9d4aa (diff) | |
download | hercules-567d218287a59154d40b6c69b4dd339640ca92b6.tar.gz hercules-567d218287a59154d40b6c69b4dd339640ca92b6.tar.bz2 hercules-567d218287a59154d40b6c69b4dd339640ca92b6.tar.xz hercules-567d218287a59154d40b6c69b4dd339640ca92b6.zip |
Merge pull request #2130 from mekolat/reloadconst
reload the const db on script reload
Diffstat (limited to 'src/map/script.h')
-rw-r--r-- | src/map/script.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script.h b/src/map/script.h index 4ad9531b7..fe8bcf00b 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -872,7 +872,7 @@ struct script_interface { void (*add_translatable_string) (const struct script_string_buf *string, const char *start_point); const char *(*parse_expr) (const char *p); const char *(*parse_line) (const char *p); - void (*read_constdb) (void); + void (*read_constdb) (bool reload); void (*constdb_comment) (const char *comment); void (*load_parameters) (void); const char* (*print_line) (StringBuf *buf, const char *p, const char *mark, int line); |