From 7e0a520f8efd748a13c277b3c39514aee07c74d2 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Mon, 13 Feb 2023 13:05:55 +0000 Subject: change blank and ubqorange tiles from false and true to 0 and 9 --- server/worldgen.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server/worldgen.lua') diff --git a/server/worldgen.lua b/server/worldgen.lua index e4e1a4c..3f318d1 100644 --- a/server/worldgen.lua +++ b/server/worldgen.lua @@ -28,7 +28,7 @@ local function gen_chunk(chpos) local ix = chunk.index(q,r) local nv = surface_ng:at(p.x,p.y) if nv <= 0 then - tiles[ix] = false + tiles[ix] = 0 else local nv2 = color_ng:at(p.x,p.y) nv2 = math.max(-0.9999999,math.min(0.9999999,nv2*2.5)) -- cgit v1.2.3