1
0

Fix tiles are upside down

Signed-off-by: James Ketrenos <james_eikona@ketrenos.com>
This commit is contained in:
James Ketrenos 2022-06-20 09:46:30 -07:00
parent 49fa3976f0
commit 0ac1d07de7

View File

@ -518,7 +518,7 @@ const Board = () => {
&& state !== 'normal' && state !== 'normal'
&& state !== 'volcano' && state !== 'volcano'
&& state !== 'winner' && state !== 'winner'
&& (volcanoActive && tile.type !== 'desert')) { && (!volcanoActive || tile.type !== 'desert')) {
tile.type = 'jungle'; tile.type = 'jungle';
tile.card = 0; tile.card = 0;
} }