|
@@ -230,7 +230,7 @@ void GDScriptParser::push_warning(const Node *p_source, GDScriptWarning::Code p_
|
|
|
warning.leftmost_column = p_source->leftmost_column;
|
|
|
warning.rightmost_column = p_source->rightmost_column;
|
|
|
|
|
|
- if (warn_level == GDScriptWarning::WarnLevel::ERROR) {
|
|
|
+ if (warn_level == GDScriptWarning::WarnLevel::ERROR || bool(GLOBAL_GET("debug/gdscript/warnings/treat_warnings_as_errors"))) {
|
|
|
push_error(warning.get_message(), p_source);
|
|
|
return;
|
|
|
}
|