summaryrefslogtreecommitdiff
path: root/src/map/script.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/script.h')
-rw-r--r--src/map/script.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/script.h b/src/map/script.h
index 2260724a5..9783eeb3b 100644
--- a/src/map/script.h
+++ b/src/map/script.h
@@ -62,7 +62,8 @@ struct script_state {
};
enum script_parse_options {
- SCRIPT_USE_LABEL_DB = 0x1
+ SCRIPT_USE_LABEL_DB = 0x1,// records labels in scriptlabel_db
+ SCRIPT_IGNORE_EXTERNAL_BRACKETS = 0x2// ignores the check for {} brackets around the script
};
struct script_code* parse_script(const char* src,const char* file,int line,int options);