Fixed gdscript array remove/erase namechange
This commit is contained in:
parent
95a1c7eb92
commit
7c6f4fddaa
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
||||
|
|
Reference in a new issue