From 754ad2986bad93bc980ca4dab2a98fa041aef004 Mon Sep 17 00:00:00 2001 From: John Breaux Date: Thu, 25 Nov 2021 13:16:41 -0600 Subject: [PATCH] Game: Hide the 'Buttons' --- godot_ship/script/game/Gameplay/Game.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/godot_ship/script/game/Gameplay/Game.gd b/godot_ship/script/game/Gameplay/Game.gd index 4da38cf..f7b91b3 100644 --- a/godot_ship/script/game/Gameplay/Game.gd +++ b/godot_ship/script/game/Gameplay/Game.gd @@ -159,7 +159,7 @@ func _on_player_ready(): func victory_screen(ships, winner = true): if winner: # Hide the buttons - get_node("Bittons").hide() + get_node("Buttons").hide() # Create a new Victory screen var victory = Victory.instance() # Give it the ships received from the opponent