From 140c5531b2d82b4c0b0d3c9775b60a55a7771022 Mon Sep 17 00:00:00 2001 From: Redeix Date: Tue, 5 Aug 2025 11:54:24 -0500 Subject: [PATCH] accumulator render fix (#1533) * Fix colored steel recipe with Amp loss (#1517) Signed-off-by: TomPlop * fix yeast starter from water giving too much * Feature/mars rock layers (#1519) * moving to real tfc rock layers! * thanks git * git pls * that's a good start for the mars rock layer stuff now * langs, some desert block height tweaks * mars water fog color * forgot to convert back from hex to dec * fix #1518 * pakku * updated size data * bump gregtech version * - crash fix --------- Signed-off-by: TomPlop Co-authored-by: TomPlop Co-authored-by: Gustavo Co-authored-by: Pyritie --- .../machines/hv_aqueous_accumulator.json | 2 +- .../machines/lv_aqueous_accumulator.json | 2 +- .../venus/terrain/lava_delta.json | 66 ++++++++++--------- 3 files changed, 36 insertions(+), 34 deletions(-) diff --git a/kubejs/assets/tfg/models/block/machines/hv_aqueous_accumulator.json b/kubejs/assets/tfg/models/block/machines/hv_aqueous_accumulator.json index dcdbcf5e5..a25ccd1f5 100644 --- a/kubejs/assets/tfg/models/block/machines/hv_aqueous_accumulator.json +++ b/kubejs/assets/tfg/models/block/machines/hv_aqueous_accumulator.json @@ -27,7 +27,7 @@ }, "recipe_logic_status=waiting": { "model": { - "parent": "tfg:block/casings/voltage/hv", + "parent": "gtceu:block/casings/voltage/hv", "textures": { "overlay_front": "tfg:block/machines/aqueous_accumulator/overlay_front_active", "overlay_front_emissive": "tfg:block/machines/aqueous_accumulator/overlay_front_active_emissive", diff --git a/kubejs/assets/tfg/models/block/machines/lv_aqueous_accumulator.json b/kubejs/assets/tfg/models/block/machines/lv_aqueous_accumulator.json index a67a421af..d47d0018b 100644 --- a/kubejs/assets/tfg/models/block/machines/lv_aqueous_accumulator.json +++ b/kubejs/assets/tfg/models/block/machines/lv_aqueous_accumulator.json @@ -27,7 +27,7 @@ }, "recipe_logic_status=waiting": { "model": { - "parent": "tfg:block/casings/voltage/lv", + "parent": "gtceu:block/casings/voltage/lv", "textures": { "overlay_front": "tfg:block/machines/aqueous_accumulator/overlay_front_active", "overlay_front_emissive": "tfg:block/machines/aqueous_accumulator/overlay_front_active_emissive", diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_delta.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_delta.json index 638c977d1..f34273165 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_delta.json +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_delta.json @@ -1,35 +1,37 @@ { - "feature": "tfg:venus/terrain/lava_delta", - "placement": [ - { - "type": "minecraft:count", - "count": 1 - }, - { - "type": "minecraft:rarity_filter", - "chance": 3 - }, - { - "type": "minecraft:height_range", - "height": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 200 - }, - "min_inclusive": { - "above_bottom": 54 - } - } - }, - { - "type": "minecraft:heightmap", - "heightmap": "WORLD_SURFACE" - }, - { - "type": "minecraft:in_square" - }, - { - "type": "minecraft:biome" + "feature": "tfg:venus/terrain/lava_delta", + "placement": [ + { + "type": "minecraft:noise_based_count", + "noise_to_count_ratio": 1, + "noise_factor": 1, + "noise_offset": 3 + }, + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 200 + }, + "min_inclusive": { + "above_bottom": 54 } - ] + } + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + } + ] } \ No newline at end of file