Prep for forgejo migration.

This commit is contained in:
patrick_pluto 2024-08-19 18:06:35 +02:00
commit 56d77fbb53
6 changed files with 324 additions and 83 deletions

View file

@ -10,10 +10,8 @@
extends Control
func _ready():
if Game.player_escaped or (Game.is_beast and Game.escaped == 0):
$VBoxContainer/Label.text = "You Win"
else:
$VBoxContainer/Label.text = "You Lose"
$VBoxContainer/Label.text = Game.result
Game.result = "You Lose"
func _process(_delta):