fix bugs with editor and multiple mods

This commit is contained in:
Persephone Bubblegum-Holiday 2025-08-13 19:29:52 -07:00
parent 768bf2fda4
commit 1f0ca6286a
2 changed files with 4 additions and 4 deletions

View file

@ -26,10 +26,10 @@ func _ready() -> void:
in_flow = flow_control.in_value
out_flow = flow_control.out_value
func _update_in_flow(new_value: float) -> void:
func _update_in_flow(new_value: float, _internal_id) -> void:
in_flow = new_value
func _update_out_flow(new_value: float) -> void:
func _update_out_flow(new_value: float, _internal_id) -> void:
out_flow = new_value
func _on_button_button_down() -> void: