Skip to content

Commit

Permalink
🐒 dust blocks 🐒
Browse files Browse the repository at this point in the history
  • Loading branch information
serenibyss committed Aug 11, 2021
1 parent 81f2eef commit e53885d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/gregtech/common/blocks/MetaBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ public static void init() {
StoneType.init();

createGeneratedBlock(
material -> material.hasProperty(PropertyKey.DUST) && !OrePrefix.block.isIgnored(material),
material -> (material.hasProperty(PropertyKey.INGOT) || material.hasProperty(PropertyKey.GEM))
&& !OrePrefix.block.isIgnored(material),
MetaBlocks::createCompressedBlock);

for (Material material : MaterialRegistry.MATERIAL_REGISTRY) {
Expand Down

0 comments on commit e53885d

Please sign in to comment.