Skip to content

Commit

Permalink
Fix wrong type of iesnium ore spawning in nether
Browse files Browse the repository at this point in the history
Fixes #78
  • Loading branch information
klikli-dev committed Jan 3, 2021
1 parent 889eb1a commit daf8263
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 @@ -104,7 +104,7 @@ public static void registerConfiguredFeatures() {
IESNIUM_ORE = Feature.ORE.withConfiguration(
new OreFeatureConfig(
new TagMatchRuleTest(oreGen.iesniumOre.getFillerBlockTag()),
OccultismBlocks.IESNIUM_ORE.get().getDefaultState(), oreGen.iesniumOre.size.get()))
OccultismBlocks.IESNIUM_ORE_NATURAL.get().getDefaultState(), oreGen.iesniumOre.size.get()))
.withPlacement(Placement.RANGE.configure(
new TopSolidRangeConfig(
oreGen.iesniumOre.bottomOffset.get(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "minecraft:ore",
"config": {
"state": {
"Name": "occultism:iesnium_ore"
"Name": "occultism:iesnium_ore_natural"
},
"target": {
"predicate_type": "tag_match",
Expand Down

0 comments on commit daf8263

Please sign in to comment.