Fixed typo in the scoretable

main
unfa 2021-09-28 02:06:40 +02:00
parent 4f1d28d107
commit 1a40489237
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ func scoretab(show: bool, winner = null):
if winner:
$ScoreTable/VBoxContainer/Header.text = "Match over! Player " + main.player_list.get(winner).name + " won!"
else:
$ScoreTable/VBoxContainer/Header.text = "Playing dethmatch until " + str(main.game_score_limit) + " kills"
$ScoreTable/VBoxContainer/Header.text = "Playing deathmatch until " + str(main.game_score_limit) + " kills"
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
# if main.local_player == null: # player is dead ATM