diff options
author | Haru <haru@dotalux.com> | 2016-07-05 02:02:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-05 02:02:56 +0200 |
commit | 5f5ef66b14ad74bbf10b01212825cb537c872623 (patch) | |
tree | ea80e4b6344fb5413b49ecd47e33b308a95d7176 /src/map/script.h | |
parent | 5ee87b37287e73088102cb824354e8ccd98580f3 (diff) | |
parent | d5baa8a68e3bb65681c0168920a461b2675d2dfd (diff) | |
download | hercules-5f5ef66b14ad74bbf10b01212825cb537c872623.tar.gz hercules-5f5ef66b14ad74bbf10b01212825cb537c872623.tar.bz2 hercules-5f5ef66b14ad74bbf10b01212825cb537c872623.tar.xz hercules-5f5ef66b14ad74bbf10b01212825cb537c872623.zip |
Merge pull request #1339 from 4144/scriptchecks
Add one check for possible script issue.
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); |