summaryrefslogtreecommitdiff
path: root/scenes/microgames/fishin
diff options
context:
space:
mode:
Diffstat (limited to 'scenes/microgames/fishin')
-rw-r--r--scenes/microgames/fishin/fishin.gd2
1 files changed, 2 insertions, 0 deletions
diff --git a/scenes/microgames/fishin/fishin.gd b/scenes/microgames/fishin/fishin.gd
index abaf999..1aa911c 100644
--- a/scenes/microgames/fishin/fishin.gd
+++ b/scenes/microgames/fishin/fishin.gd
@@ -13,6 +13,7 @@ enum FishType {
}
signal win
+signal lose
const IN_GAME_WAIT_TIME = 10
@@ -170,6 +171,7 @@ func _on_in_game_timeout() -> void:
$"Fart".play()
get_window().title = "🙂👎"
+ lose.emit()
func _on_success_fail_timeout() -> void: