From 7559a07aaa2351ca79216180693099ad2c44d1b3 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 20 Sep 2026 15:46:51 +0000 Subject: [PATCH] Update the loot tables to the 26.3 format 26.3 replaced the "functions"/"conditions" lists on tables, pools and entries with a single "modifier"/"condition" holder, and the inline "function"/"condition" type keys with "type". The old format parses without any error and is then ignored, so every loot function and condition in these tables had silently become a no-op. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01V35MFZ7JSgoLe79J4d1uxf --- .../data/flopper/loot_table/blocks/flopper.json | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/loader-common/src/main/resources/data/flopper/loot_table/blocks/flopper.json b/loader-common/src/main/resources/data/flopper/loot_table/blocks/flopper.json index 2626eb93..92b5ec74 100644 --- a/loader-common/src/main/resources/data/flopper/loot_table/blocks/flopper.json +++ b/loader-common/src/main/resources/data/flopper/loot_table/blocks/flopper.json @@ -9,11 +9,9 @@ "name": "flopper:flopper" } ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] + "condition": { + "type": "minecraft:survives_explosion" + } } ] -} \ No newline at end of file +}