diff --git a/src/main/resources/data/techreborn/loot_tables/blocks/rubber_door.json b/src/main/resources/data/techreborn/loot_tables/blocks/rubber_door.json index c853034b3..e2b46194e 100644 --- a/src/main/resources/data/techreborn/loot_tables/blocks/rubber_door.json +++ b/src/main/resources/data/techreborn/loot_tables/blocks/rubber_door.json @@ -1,19 +1,28 @@ { "type": "minecraft:block", "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "techreborn:rubber_door" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "techreborn:rubber_door", + "properties": { + "half": "lower" + } + } + ], + "name": "techreborn:rubber_door" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } ] } \ No newline at end of file