viniciusgerevini / godot-clyde-dialogue

Clyde Dialogue Language Importer and interpreter for Godot.
MIT License
89 stars 11 forks source link

fix boolean assignment shorthand #15

Closed viniciusgerevini closed 2 years ago

viniciusgerevini commented 2 years ago

Support { set variable_name }. This was valid during parsing, but it would break in runtime.

Now, this is equivalent to { set variable_name = true }.