Rebalance mountain

This commit is contained in:
Tangent Wantwight 2024-01-13 14:24:48 -05:00
parent bb651ee1aa
commit 51848cab3d
2 changed files with 2 additions and 1 deletions

View file

@ -5,4 +5,4 @@ export const BEACH = 1;
export const LIGHT_FOREST = 2; export const LIGHT_FOREST = 2;
export const DENSE_FOREST = 3; export const DENSE_FOREST = 3;
export const MOUNTAIN = 4; export const MOUNTAIN = 4;
export const ICECAP = 6; export const ICECAP = 7;

View file

@ -23,6 +23,7 @@ export function renderIslands(
break; break;
case MOUNTAIN: case MOUNTAIN:
case MOUNTAIN + 1: case MOUNTAIN + 1:
case MOUNTAIN + 2:
cx.fillStyle = "#666666"; cx.fillStyle = "#666666";
break; break;
default: default: