From a096c81c036eea7d4818a93357acdf6ce81992a5 Mon Sep 17 00:00:00 2001 From: Tangent Wantwight Date: Sat, 13 Jan 2024 15:21:46 -0500 Subject: [PATCH] clean imports --- island/grid.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/island/grid.ts b/island/grid.ts index f6e35c2..ce605d3 100644 --- a/island/grid.ts +++ b/island/grid.ts @@ -1,5 +1,5 @@ import { Prng, UINT_MAX, mulberry32 } from "../lib/prng"; -import { BEACH, ICECAP, WATER } from "./data"; +import { WATER } from "./data"; import { ALL_ISLANDS, BIG_ISLANDS, @@ -7,7 +7,6 @@ import { LobeGenerator, NO_ISLAND, ROCKY_ISLANDS, - SINKHOLE, SMALL_ISLANDS, VOIDS, } from "./generators";