Fix rubber door dupe closes #2149

This commit is contained in:
Justin Vitale 2020-07-01 17:15:34 +10:00
parent ec20d3eb93
commit 8335b932b4

View file

@ -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"
}
]
}
]
}