Browse Source

Merge pull request #5388 from Hinsbart/keyword_bool

Add "bool" to GDScript reserverd keywords
Rémi Verschelde 9 years ago
parent
commit
d7da269f46
1 changed files with 1 additions and 0 deletions
  1. 1 0
      modules/gdscript/gd_script.cpp

+ 1 - 0
modules/gdscript/gd_script.cpp

@@ -1709,6 +1709,7 @@ void GDScriptLanguage::get_reserved_words(List<String> *p_words) const  {
 		"false",
 		"float",
 		"int",
+		"bool",
 		"null",
 		"PI",
 		"self",