Skip to content

Commit

Permalink
fix: possessed warden minimum loot
Browse files Browse the repository at this point in the history
Closes #1156
  • Loading branch information
klikli-dev committed Jul 19, 2024
1 parent 18b19d3 commit 566b95c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"count": {
"type": "minecraft:uniform",
"max": 3.0,
"min": 0.0
"min": 1.0
},
"function": "minecraft:set_count"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ public LootTable.Builder wardenLootTable(){
.setRolls(ConstantValue.exactly(1.0F))
.add(
LootItem.lootTableItem(Items.ECHO_SHARD)
.apply(SetItemCountFunction.setCount(UniformGenerator.between(0.0F, 3.0F))
.apply(SetItemCountFunction.setCount(UniformGenerator.between(1.0F, 3.0F))
)
)
)
Expand Down

0 comments on commit 566b95c

Please sign in to comment.