Skip to content

Commit

Permalink
fix GT Stones not being generated (GTNewHorizons#3112)
Browse files Browse the repository at this point in the history
  • Loading branch information
boubou19 authored Sep 8, 2024
1 parent fe53125 commit 4acfebc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions src/main/java/gregtech/common/StoneBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public class StoneBuilder {

public StoneBuilder name(String name) {
this.stoneName = name;
this.amount = 1; // if 0, no vein in chunk despite being valid.
return this;
}

Expand Down
1 change: 0 additions & 1 deletion src/main/java/gregtech/common/WorldgenStone.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public class WorldgenStone extends GTWorldgen {
public final Block mBlock;
public final Collection<String> mBiomeList;
public final boolean mAllowToGenerateinVoid;
private final String aTextWorldgen = "worldgen.";

public Hashtable<Long, StoneSeeds> validStoneSeeds = new Hashtable<>(1024);

Expand Down

0 comments on commit 4acfebc

Please sign in to comment.