Fixed gdscript array remove/erase namechange

feature_graphics_settings
Jan Heemstra 2021-12-06 22:13:12 +01:00
parent 95a1c7eb92
commit 7c6f4fddaa
1 changed files with 1 additions and 1 deletions

View File

@ -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()