From 0ac1d07de70f2b797f8e14a2d625917369636446 Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Mon, 20 Jun 2022 09:46:30 -0700 Subject: [PATCH] Fix tiles are upside down Signed-off-by: James Ketrenos --- client/src/Board.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/Board.js b/client/src/Board.js index b840e22..9a5a5ee 100644 --- a/client/src/Board.js +++ b/client/src/Board.js @@ -518,7 +518,7 @@ const Board = () => { && state !== 'normal' && state !== 'volcano' && state !== 'winner' - && (volcanoActive && tile.type !== 'desert')) { + && (!volcanoActive || tile.type !== 'desert')) { tile.type = 'jungle'; tile.card = 0; }