From 78c4aa76365eda388f9f9ae86510030f804c28d0 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 14 Apr 2024 04:22:47 +0200 Subject: [PATCH] oh are you serious --- scenes/game/main_game.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenes/game/main_game.gd b/scenes/game/main_game.gd index 7c1a050..76ba8a4 100644 --- a/scenes/game/main_game.gd +++ b/scenes/game/main_game.gd @@ -9,7 +9,7 @@ static func get_ancestor(start: Node) -> MainGame: if current is MainGame: return current current = current.get_parent() - Log.w(self, "MainGame ancestor not found.") + Log.w(start, "MainGame ancestor not found.") return null