Skip to content

Commit

Permalink
Removed debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
GirafiStudios committed Sep 29, 2020
1 parent a91accc commit 39198e8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/java/com/girafi/waddles/init/PenguinSpawn.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ public class PenguinSpawn {
public static void addSpawn(BiomeLoadingEvent event) {
Biome biome = ForgeRegistries.BIOMES.getValue(event.getName());
if (biome != null && (ConfigurationHandler.SPAWN.biomeCategoryBiomes.get().contains(biome.getCategory().getName()) || ConfigurationHandler.SPAWN.additionalBiomes.get().contains(event.getName().toString()))) {
System.out.println("CAN SPAWN: " + event.getName());
event.getSpawns().getSpawner(EntityClassification.CREATURE).add(new MobSpawnInfo.Spawners(PenguinRegistry.ADELIE_PENGUIN, ConfigurationHandler.SPAWN.weight.get(), ConfigurationHandler.SPAWN.min.get(), ConfigurationHandler.SPAWN.max.get()));
}
}
Expand Down

0 comments on commit 39198e8

Please sign in to comment.