Skip to content

Commit

Permalink
Fixed old pumpkin and reed generators still being referenced
Browse files Browse the repository at this point in the history
  • Loading branch information
ammoore00 committed Jan 26, 2022
1 parent b09b994 commit ea4c679
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions minecraft_server/net/minecraft/src/BTABiomeDecorator.java
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public BTABiomeDecorator(BiomeGenBase par1BiomeGenBase)
this.mushroomBrownGen = new BTAWorldGenFlowers(Block.mushroomBrown.blockID);
this.mushroomRedGen = new BTAWorldGenFlowers(Block.mushroomRed.blockID);
this.bigMushroomGen = new WorldGenBigMushroom();
this.reedGen = new BTAWorldGenReed();
this.reedGen = new WorldGenReed();
this.cactusGen = new WorldGenCactus();
this.waterlilyGen = new WorldGenWaterlily();
this.waterlilyPerChunk = 0;
Expand All @@ -198,7 +198,7 @@ public BTABiomeDecorator(BiomeGenBase par1BiomeGenBase)
this.biome = par1BiomeGenBase;

//BTA
pumpkinGen = new BTAWorldGenPumpkin();
pumpkinGen = new WorldGenPumpkin();
melonGen = new BTAWorldGenMelons();
oasisGen = new BTAWorldGenOasis(7, Block.grass.blockID);
steppeGen = new BTAWorldGenSteppe(Block.sand.blockID, 0);
Expand Down

0 comments on commit ea4c679

Please sign in to comment.