diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e85565d1..9220c84d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,12 +19,15 @@ - Saplings and fruit bushes can now enter the seed pouch. (#2202) @Redeix - Mars sandstorms are now sandier @Pyritie - Added an alternative recipe for item frames using cloth @Pyritie +- Added a little more silver to surface bismuth veins, moved apatite veins closer to the surface and with deeper indicators, increased deep sapphire veins' max Y level and added a rock type, and also added a rock type to deep magnetite's veins (all overworld only) @Pyritie ### Bug fixes - Fixed TFC bug where paths and roads can collapse on themselves when creating a staircase shape. (#2144) @Redeix - Fixed the HV aqueous accumulator water recipe so the amount of water can actually fit in the HV machine @Pyritie - Fixed not being able to make brown universal compost with a mortar if the item is both green and brown (#2091) @Pyritie - Fixed soup made in the food processor not returning bowls when eaten (#2053) @Pyritie - Fixed missing helve hammer recipe for silver plates (#2183) @Pyritie +- Fixed some typos in gun/attachment names and descriptions @Jeuvke +- Fixed ocean moai spawning underwater sometimes 🗿 @Pyritie ### Translation updates - Russian @DI-GitH + @nineex - Brazilian Portuguese @Redeix diff --git a/kubejs/data/tfg/lithostitched/worldgen_modifier/contains_temperate_house.json b/kubejs/data/tfg/lithostitched/worldgen_modifier/contains_temperate_house.json new file mode 100644 index 000000000..620e0a23a --- /dev/null +++ b/kubejs/data/tfg/lithostitched/worldgen_modifier/contains_temperate_house.json @@ -0,0 +1,16 @@ +{ + "type": "lithostitched:set_structure_spawn_condition", + "structures": [ + "tfg:temperate/plains_temperate_house_0" + ], + "spawn_condition": { + "type": "lithostitched:grid", + "condition": { + "type": "lithostitched:in_biome", + "biomes": "#tfg:never_has_structure/illages" + }, + "radius": 50, + "distance_between_points": 15, + "allowed_count": 0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/lithostitched/worldgen_modifier/ocean_moai.json b/kubejs/data/tfg/lithostitched/worldgen_modifier/ocean_moai.json new file mode 100644 index 000000000..fd83de2cb --- /dev/null +++ b/kubejs/data/tfg/lithostitched/worldgen_modifier/ocean_moai.json @@ -0,0 +1,12 @@ +{ + "type": "lithostitched:set_structure_spawn_condition", + "structures": [ + "tfg:ocean/ocean_moai_0" + ], + "spawn_condition": { + "type": "lithostitched:height_filter", + "range_type": "absolute", + "heightmap": "OCEAN_FLOOR_WG", + "permitted_range": [65, 256] + } +} \ No newline at end of file