From 17508a709141b563396c08d58dbe0bd37e2ea897 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 6 May 2025 22:54:26 +0100 Subject: [PATCH] fixed rabbit houses not spawning, put them in every biome but reduced the weight a bit --- .../structure/moon/moon_rabbit_houses.json | 14 +------------- .../structure_set/moon/moon_rabbit_houses.json | 4 ++-- kubejs/server_scripts/ad_astra/tags.js | 3 +-- 3 files changed, 4 insertions(+), 17 deletions(-) diff --git a/kubejs/data/tfg/worldgen/structure/moon/moon_rabbit_houses.json b/kubejs/data/tfg/worldgen/structure/moon/moon_rabbit_houses.json index 7ea4b8b90..003100dab 100644 --- a/kubejs/data/tfg/worldgen/structure/moon/moon_rabbit_houses.json +++ b/kubejs/data/tfg/worldgen/structure/moon/moon_rabbit_houses.json @@ -11,17 +11,5 @@ }, "project_start_to_heightmap": "WORLD_SURFACE_WG", "use_expansion_hack": false, - "spawn_overrides": { - "creature": { - "bounding_box": "full", - "spawns": [ - { - "type": "tfc:rat", - "weight": 1, - "minCount": 1, - "maxCount": 2 - } - ] - } - } + "spawn_overrides": {} } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/structure_set/moon/moon_rabbit_houses.json b/kubejs/data/tfg/worldgen/structure_set/moon/moon_rabbit_houses.json index 8fc65e08c..1ab645f7a 100644 --- a/kubejs/data/tfg/worldgen/structure_set/moon/moon_rabbit_houses.json +++ b/kubejs/data/tfg/worldgen/structure_set/moon/moon_rabbit_houses.json @@ -7,8 +7,8 @@ ], "placement": { "salt": 1234542, - "spacing": 6, - "separation": 2, + "spacing": 8, + "separation": 5, "type": "minecraft:random_spread", "exclusion_zone": { "other_set": "tfg:moon/meteors", diff --git a/kubejs/server_scripts/ad_astra/tags.js b/kubejs/server_scripts/ad_astra/tags.js index 0d092ac53..8868d545c 100644 --- a/kubejs/server_scripts/ad_astra/tags.js +++ b/kubejs/server_scripts/ad_astra/tags.js @@ -151,11 +151,10 @@ const registerAdAstraBiomeTags = (event) => { event.add('tfg:has_structure/meteors', biome) event.add('tfg:has_structure/cheese_ores', biome) event.add('tfg:has_structure/moonbase', biome) + event.add('tfg:has_structure/moon_rabbit_houses', biome) event.add('minecraft:spawns_gold_rabbits', biome) event.add('minecraft:spawns_white_rabbits', biome) }) - - event.add('tfg:has_structure/moon_rabbit_houses', 'tfg:lunar_plains') } const registerAdAstraEntityTypeTags = (event) => {