We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a6fc2f commit deb801aCopy full SHA for deb801a
addons/Rakugo/lib/systems/Executer.gd
@@ -192,6 +192,9 @@ func do_execute_script(parameters:Dictionary):
192
var var_ = Rakugo.get_variable(sub_result.get_string("variable"))
193
194
if var_:
195
+ if typeof(var_) != TYPE_STRING:
196
+ var_ = str(var_)
197
+
198
text = text.replace(sub_result.strings[0], var_)
199
200
Rakugo.say(result.get_string("character_tag"), text)
0 commit comments