Skip to content

Commit

Permalink
fix a function bug in subsystem_variables.gd
Browse files Browse the repository at this point in the history
  • Loading branch information
endaye committed Jan 18, 2024
1 parent d8df1d7 commit ef31f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/dialogic/Modules/Variable/subsystem_variables.gd
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ class VariableFolder:
func _set(property, value) -> bool:
property = str(property)
if not value is VariableFolder:
outside._set_value_in_dictionary(path+"."+property, outside.dialogic.current_state_info['variables'], value)
DialogicUtil._set_value_in_dictionary(path+"."+property, outside.dialogic.current_state_info['variables'], value)
return true

func has(key) -> bool:
Expand Down

0 comments on commit ef31f5e

Please sign in to comment.