diff options
Diffstat (limited to 'UI/HUD/LevelMapCell.gd')
-rw-r--r-- | UI/HUD/LevelMapCell.gd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/UI/HUD/LevelMapCell.gd b/UI/HUD/LevelMapCell.gd index 16ff961..a03fc52 100644 --- a/UI/HUD/LevelMapCell.gd +++ b/UI/HUD/LevelMapCell.gd @@ -12,6 +12,8 @@ func _ready(): $ClearMark.text = "X" elif level.cleared_by.idx == Enum.PLAYER.SECOND: $ClearMark.text = "O" + elif level.cleared_by.idx == Enum.PLAYER.THIRD: + $ClearMark.text = "P" $Time.text = str(level.time) + "s" $Name.text = level.cleared_by.name |