Skip to content

Commit

Permalink
Remove non-metal storage blocks from grinding disc
Browse files Browse the repository at this point in the history
 - Does not remove other mod's storage blocks
     - Technical limitations prevent this
 - Removes lapis, redstone, quartz, diamond, emerald, amethyst, and coal
  • Loading branch information
voidsong-dragonfly committed Jun 22, 2024
1 parent b16f102 commit 6f22495
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ private void registerGrindingDiskMineable()
IntrinsicTagAppender<Block> tag = tag(IETags.grindingDiskHarvestable);
// storage and remove rocklike storage, sheetmetal
tag.addTag(Tags.Blocks.STORAGE_BLOCKS);
tag.remove(Blocks.AMETHYST_BLOCK, Blocks.QUARTZ_BLOCK, Blocks.LAPIS_BLOCK, Blocks.REDSTONE_BLOCK, Blocks.DIAMOND_BLOCK, Blocks.EMERALD_BLOCK, Blocks.COAL_BLOCK);
tag.addTag(IETags.sheetmetals);
// storage and sheetmetal slabs
for(EnumMetals metal : EnumMetals.values())
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6f22495

Please sign in to comment.