Skip to content

Commit

Permalink
Fix bad loot table path (#10529)
Browse files Browse the repository at this point in the history
Fixes bad loot table path
  • Loading branch information
uecasm authored Dec 12, 2024
1 parent 102dc51 commit 47408b4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
"rolls": 1.0
}
],
"random_sequence": "minecolonies:loot_tables/miner/lucky_ore1"
"random_sequence": "minecolonies:miner/lucky_ore1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
"rolls": 1.0
}
],
"random_sequence": "minecolonies:loot_tables/miner/lucky_ore2"
"random_sequence": "minecolonies:miner/lucky_ore2"
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@
"rolls": 1.0
}
],
"random_sequence": "minecolonies:loot_tables/miner/lucky_ore3"
"random_sequence": "minecolonies:miner/lucky_ore3"
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
"rolls": 1.0
}
],
"random_sequence": "minecolonies:loot_tables/miner/lucky_ore4"
"random_sequence": "minecolonies:miner/lucky_ore4"
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
"rolls": 1.0
}
],
"random_sequence": "minecolonies:loot_tables/miner/lucky_ore5"
"random_sequence": "minecolonies:miner/lucky_ore5"
}
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class EntityAIStructureMiner extends AbstractEntityAIStructureWithWorkOrd
/**
* Lucky ore loot table
*/
public static final ResourceLocation LUCKY_ORE_LOOT_TABLE = new ResourceLocation(Constants.MOD_ID, "loot_tables/miner/lucky_ore");
public static final ResourceLocation LUCKY_ORE_LOOT_TABLE = new ResourceLocation(Constants.MOD_ID, "miner/lucky_ore");

/**
* Lead the miner to the other side of the shaft.
Expand Down

0 comments on commit 47408b4

Please sign in to comment.