diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-17 15:18:56 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-17 15:18:56 -0600 |
commit | def01c3c3753826ab6da28996b8bff2c36e6fba8 (patch) | |
tree | 894de71168bb09fe2bd64be002d886cda7391706 /scenes/microgames/fishin/fishin.gd | |
parent | a0e3df5b4c0638667e72ff5e2b6071e0d62148cf (diff) |
Lose money when losing fishing :(
Diffstat (limited to 'scenes/microgames/fishin/fishin.gd')
-rw-r--r-- | scenes/microgames/fishin/fishin.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scenes/microgames/fishin/fishin.gd b/scenes/microgames/fishin/fishin.gd index d52e449..511a449 100644 --- a/scenes/microgames/fishin/fishin.gd +++ b/scenes/microgames/fishin/fishin.gd @@ -201,7 +201,7 @@ func _on_in_game_timeout() -> void: $"Fart".play() get_window().title = "🙂👎" - lose.emit() + lose.emit(get_window()) func _on_success_fail_timeout() -> void: |