From 7c6f4fddaa72b8f3cf446b7a0d8170472216e452 Mon Sep 17 00:00:00 2001 From: Jan Heemstra Date: Mon, 6 Dec 2021 22:13:12 +0100 Subject: [PATCH] Fixed gdscript array remove/erase namechange --- Game/Main.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Game/Main.gd b/Game/Main.gd index 73e954f..189f757 100644 --- a/Game/Main.gd +++ b/Game/Main.gd @@ -235,7 +235,7 @@ func update_hud(): scores.reverse() var rank = scores.find(score) + 1 - scores.remove(scores.find(score)) + scores.remove_at(scores.find(score)) scores.sort() scores.reverse()