diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2018-05-26 10:30:36 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2018-05-29 20:26:41 +0200 |
commit | 8e35d937a96399c7fc9dcc3b9cd7344a6a38cfd8 (patch) | |
tree | 0668016861a01e0858cb96364e97a2fad2f7efb1 /modules/gdscript/gdscript.cpp | |
parent | 4524153b6ece766e496d7b9c1a4f9216ea9e34cc (diff) | |
download | redot-engine-8e35d937a96399c7fc9dcc3b9cd7344a6a38cfd8.tar.gz |
New sync keywords in GDScript, NativeScript, Mono
Diffstat (limited to 'modules/gdscript/gdscript.cpp')
-rw-r--r-- | modules/gdscript/gdscript.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript.cpp b/modules/gdscript/gdscript.cpp index 33591ac2a9..f23e7854a5 100644 --- a/modules/gdscript/gdscript.cpp +++ b/modules/gdscript/gdscript.cpp @@ -1769,6 +1769,9 @@ void GDScriptLanguage::get_reserved_words(List<String> *p_words) const { "sync", "master", "slave", + "remotesync", + "mastersync", + "slavesync", 0 }; |