Skip to content

Commit

Permalink
Fix ores_in_ground tag containing Uraninite Blocks instead of ore(reg…
Browse files Browse the repository at this point in the history
…ular) (#211)
  • Loading branch information
WhitePhant0m authored Jan 10, 2025
1 parent f02e3c6 commit 9ff65be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"values": [
"powah:uraninite_block",
"powah:uraninite_ore",
"powah:uraninite_ore_dense",
"powah:uraninite_ore_poor"
]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"values": [
"powah:uraninite_block",
"powah:uraninite_ore",
"powah:uraninite_ore_dense",
"powah:uraninite_ore_poor"
]
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/owmii/powah/data/TagsProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ protected void addTags(HolderLookup.Provider provider) {

tag(Tags.Blocks.ORES_IN_GROUND_DEEPSLATE).add(Blcks.DEEPSLATE_URANINITE_ORE.get(),
Blcks.DEEPSLATE_URANINITE_ORE_DENSE.get(), Blcks.DEEPSLATE_URANINITE_ORE_POOR.get());
tag(Tags.Blocks.ORES_IN_GROUND_STONE).add(Blcks.URANINITE.get(), Blcks.URANINITE_ORE_DENSE.get(),
tag(Tags.Blocks.ORES_IN_GROUND_STONE).add(Blcks.URANINITE_ORE.get(), Blcks.URANINITE_ORE_DENSE.get(),
Blcks.URANINITE_ORE_POOR.get());

tag(Tags.Blocks.STORAGE_BLOCKS).add(Blcks.URANINITE.get());
Expand Down

0 comments on commit 9ff65be

Please sign in to comment.