From 706172fb9a1f64d29239fe55d7d6f03ed16c7ccb Mon Sep 17 00:00:00 2001 From: NotEvil Date: Thu, 16 Apr 2026 01:45:04 +0200 Subject: [PATCH] =?UTF-8?q?fix(UC-02):=20QA=20review=20=E2=80=94=20crypt?= =?UTF-8?q?=20bottom=5Frow=20+=20ice=20decorations=20fidelity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - BUG-001: CRYPT bottom_row had unreachable mossy_stone_bricks (same f variable makes mossy_cobblestone guard trigger first). Fixed weights: 0.20/0.10/0.70 - BUG-003: ICE ceiling ice stalactites (y_offset=10) were missing from JSON - BUG-002: ICE snow corner layers use middle value (3) as compromise since DecorationConfig.PositionedBlock doesn't support random_property --- src/main/resources/data/tiedup/tiedup_room_themes/crypt.json | 5 ++--- src/main/resources/data/tiedup/tiedup_room_themes/ice.json | 3 ++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/data/tiedup/tiedup_room_themes/crypt.json b/src/main/resources/data/tiedup/tiedup_room_themes/crypt.json index 84557e5..a0a4a1e 100644 --- a/src/main/resources/data/tiedup/tiedup_room_themes/crypt.json +++ b/src/main/resources/data/tiedup/tiedup_room_themes/crypt.json @@ -8,9 +8,8 @@ ], "bottom_row": [ { "block": "minecraft:mossy_cobblestone", "weight": 0.20 }, - { "block": "minecraft:mossy_stone_bricks", "weight": 0.12 }, - { "block": "minecraft:cracked_stone_bricks", "weight": 0.12 }, - { "block": "minecraft:stone_bricks", "weight": 0.56 } + { "block": "minecraft:cracked_stone_bricks", "weight": 0.10 }, + { "block": "minecraft:stone_bricks", "weight": 0.70 } ] }, "floor_palette": { diff --git a/src/main/resources/data/tiedup/tiedup_room_themes/ice.json b/src/main/resources/data/tiedup/tiedup_room_themes/ice.json index ec8b3cc..9e60b88 100644 --- a/src/main/resources/data/tiedup/tiedup_room_themes/ice.json +++ b/src/main/resources/data/tiedup/tiedup_room_themes/ice.json @@ -42,7 +42,8 @@ }, "decorations": { "corner_decorations": [ - { "block": "minecraft:snow[layers=2]", "y_offset": 1 } + { "block": "minecraft:snow[layers=3]", "y_offset": 1 }, + { "block": "minecraft:ice", "y_offset": 10 } ], "wall_midpoint_blocks": [ { "block": "minecraft:lantern", "y_offset": 3 }