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; }