Merge pull request #219 from noi2coco/bug-achievements

Bug achievements
This commit is contained in:
CreepyCre 2021-08-24 00:58:02 +02:00 committed by GitHub
commit 4dc56188a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 4 deletions

View file

@ -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(

View file

@ -22,7 +22,7 @@
"conditions": {
"items": [
{
"tag": ["dimdoors:fabric"]
"tag": "dimdoors:fabric"
}
]
}

View file

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