Skip to content

Commit

Permalink
Fix broken Dark Ore loot tables, Closes #1038
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensworks committed Jul 24, 2024
1 parent 242a14e commit 1e199d7
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 49 deletions.
48 changes: 27 additions & 21 deletions src/main/resources/data/evilcraft/loot_table/blocks/dark_ore.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
}
]
]
}
}
}
],
Expand Down Expand Up @@ -80,28 +82,32 @@
"term": {
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
}
]
]
}
}
}
},
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:fortune",
"levels": {
"min": 1
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "minecraft:fortune",
"levels": {
"min": 1
}
}
}
]
]
}
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
}
]
]
}
}
}
],
Expand Down Expand Up @@ -80,28 +82,32 @@
"term": {
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
}
]
]
}
}
}
},
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:fortune",
"levels": {
"min": 1
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "minecraft:fortune",
"levels": {
"min": 1
}
}
}
]
]
}
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
}
]
]
}
}
}
],
Expand Down

0 comments on commit 1e199d7

Please sign in to comment.