From 9c2a25cbb484a11f1f09893f3fcc1edc0a8e4908 Mon Sep 17 00:00:00 2001 From: IamPyu Date: Sun, 29 Sep 2024 14:21:22 -0600 Subject: [PATCH] [worlds/special_caves] Remove crystal lanterns from the Icy Cave --- mods/pyutest/pyutest_mapgen/worlds.lua | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/mods/pyutest/pyutest_mapgen/worlds.lua b/mods/pyutest/pyutest_mapgen/worlds.lua index 9346d1b..06a69eb 100644 --- a/mods/pyutest/pyutest_mapgen/worlds.lua +++ b/mods/pyutest/pyutest_mapgen/worlds.lua @@ -34,6 +34,7 @@ PyuTest.register_world = function (options) y_max = conf.y_max, y_min = conf.y_min, node_water = "air", + node_river_water = "air", node_cave_liquid = "air", vertical_blend = 5 })) @@ -73,14 +74,3 @@ SpecialCaveWorld.register_ore({ biomes = {icy_cave}, noise_params = PyuTest.SPECIALSTONE_NOISE_PARAMS }) - -SpecialCaveWorld.register_ore({ - ore_type = "blob", - ore = "pyutest_core:crystal_lantern_block", - wherein = "pyutest_core:ice_block", - clust_scarcity = 5 * 5 * 5, - clust_num_ores = 4, - clust_size = 5, - biomes = {icy_cave}, - noise_params = PyuTest.SPECIALSTONE_NOISE_PARAMS -})