diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-04 14:31:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-04 19:25:06 +0300 |
commit | 3011243a6892d8877443e46b05085a459d722e12 (patch) | |
tree | 91ca576a45c9cd59071be7308999fa9f36f364e1 /src/map/script.h | |
parent | 4bcf57902a9a7e915a8c25f220f595fe0b59ae91 (diff) | |
download | hercules-release2016-07-04.tar.gz hercules-release2016-07-04.tar.bz2 hercules-release2016-07-04.tar.xz hercules-release2016-07-04.zip |
Add one check for possible script issue.s20160706release2016-07-04
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 61c6a4583..4df8941b7 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -758,7 +758,7 @@ struct script_interface { void (*op_2num) (struct script_state *st, int op, int i1, int i2); void (*op_2) (struct script_state *st, int op); void (*op_1) (struct script_state *st, int op); - void (*check_buildin_argtype) (struct script_state *st, int func); + bool (*check_buildin_argtype) (struct script_state *st, int func); void (*detach_state) (struct script_state *st, bool dequeue_event); int (*db_free_code_sub) (union DBKey key, struct DBData *data, va_list ap); void (*add_autobonus) (const char *autobonus); |