Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tomprince committed Dec 20, 2024
1 parent 35e3ce9 commit 792ebfb
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,8 @@ public static TagPrefix get(String name) {
.materialIconType(MaterialIconType.dustSmall)
.unificationEnabled(true)
.generateItem(true)
.generationCondition(mat -> mat.hasProperty(PropertyKey.DUST) && !mat.hasFlag(MaterialFlags.NO_GENERATE_DUST_PILES));
.generationCondition(
mat -> mat.hasProperty(PropertyKey.DUST) && !mat.hasFlag(MaterialFlags.NO_GENERATE_DUST_PILES));

// 1/9th of a Dust.
public static final TagPrefix dustTiny = new TagPrefix("tinyDust")
Expand All @@ -351,7 +352,8 @@ public static TagPrefix get(String name) {
.materialIconType(MaterialIconType.dustTiny)
.unificationEnabled(true)
.generateItem(true)
.generationCondition(mat -> mat.hasProperty(PropertyKey.DUST) && !mat.hasFlag(MaterialFlags.NO_GENERATE_DUST_PILES));
.generationCondition(
mat -> mat.hasProperty(PropertyKey.DUST) && !mat.hasFlag(MaterialFlags.NO_GENERATE_DUST_PILES));

// Dust with impurities. 1 Unit of Main Material and 1/9 - 1/4 Unit of secondary Material
public static final TagPrefix dustImpure = new TagPrefix("impureDust")
Expand Down

0 comments on commit 792ebfb

Please sign in to comment.