Merge pull request #219 from noi2coco/bug-achievements
Bug achievements
This commit is contained in:
commit
4dc56188a0
3 changed files with 7 additions and 4 deletions
|
@ -113,7 +113,7 @@ public class AdvancementTab implements Consumer<Consumer<Advancement>> {
|
|||
ModDimensions.DUNGEON,
|
||||
null,
|
||||
LightPredicate.ANY,
|
||||
BlockPredicate.Builder.create().blocks(Blocks.CHEST).build(),
|
||||
BlockPredicate.Builder.create().blocks(Blocks.CHEST, Blocks.TRAPPED_CHEST).build(),
|
||||
FluidPredicate.ANY
|
||||
),
|
||||
new ItemPredicate(
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"tag": ["dimdoors:fabric"]
|
||||
"tag": "dimdoors:fabric"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -23,7 +23,10 @@
|
|||
"location": {
|
||||
"dimension": "dimdoors:dungeon_pockets",
|
||||
"block": {
|
||||
"block": "minecraft:chest"
|
||||
"blocks": [
|
||||
"minecraft:chest",
|
||||
"minecraft:trapped_chest"
|
||||
]
|
||||
}
|
||||
},
|
||||
"item": {}
|
||||
|
@ -35,4 +38,4 @@
|
|||
"open_chest"
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue