From 870e2deb7982e9956179018ea595f9638ffce802 Mon Sep 17 00:00:00 2001 From: Eden Kirin Date: Mon, 27 Mar 2023 09:52:51 +0200 Subject: [PATCH] FE tweak --- frontend/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/index.html b/frontend/index.html index 425b288..a773ee5 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -76,8 +76,8 @@ function renderPlayers(players) { players.filter(player => player.active).forEach(player => { const cell = findCell(player.position); + const playerIcon = player.reached_destination ? "😎" : "😀"; if (cell) { - const playerIcon = "😎"; const html = `
${player.name}
${playerIcon}