From 3a439a396db8912fabca46785c1078c08b5e4bd3 Mon Sep 17 00:00:00 2001 From: bconlon Date: Thu, 31 Dec 2020 19:16:26 -0800 Subject: [PATCH] Adjusted zephyr spawnrates. --- .../gildedgames/the_aether/client/gui/trivia/AetherTrivia.java | 2 -- .../gildedgames/the_aether/entities/hostile/EntityZephyr.java | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/java/com/gildedgames/the_aether/client/gui/trivia/AetherTrivia.java b/src/main/java/com/gildedgames/the_aether/client/gui/trivia/AetherTrivia.java index 3238954..5b14815 100644 --- a/src/main/java/com/gildedgames/the_aether/client/gui/trivia/AetherTrivia.java +++ b/src/main/java/com/gildedgames/the_aether/client/gui/trivia/AetherTrivia.java @@ -25,8 +25,6 @@ public class AetherTrivia { String localization = Minecraft.getMinecraft().getLanguageManager().getCurrentLanguage().getLanguageCode(); - System.out.println(localization); - if (getEntriesForLocalization(localization) != null) { return getEntriesForLocalization(localization); diff --git a/src/main/java/com/gildedgames/the_aether/entities/hostile/EntityZephyr.java b/src/main/java/com/gildedgames/the_aether/entities/hostile/EntityZephyr.java index edbe5bc..7e26aed 100644 --- a/src/main/java/com/gildedgames/the_aether/entities/hostile/EntityZephyr.java +++ b/src/main/java/com/gildedgames/the_aether/entities/hostile/EntityZephyr.java @@ -40,7 +40,7 @@ public class EntityZephyr extends EntityFlying implements IMob { int j = MathHelper.floor_double(this.boundingBox.minY); int k = MathHelper.floor_double(this.posZ); - return this.worldObj.getBlock(i, j - 1, k) == BlocksAether.aether_grass && this.rand.nextInt(25) == 0 && this.worldObj.getCollidingBoundingBoxes(this, this.boundingBox).size() == 0 && !this.worldObj.isAnyLiquid(this.boundingBox) && this.worldObj.getBlockLightValue(MathHelper.floor_double(this.posX), MathHelper.floor_double(this.boundingBox.minY), MathHelper.floor_double(this.posZ)) > 8 && super.getCanSpawnHere(); + return this.worldObj.getBlock(i, j - 1, k) == BlocksAether.aether_grass && this.rand.nextInt(50) == 0 && this.worldObj.getCollidingBoundingBoxes(this, this.boundingBox).size() == 0 && !this.worldObj.isAnyLiquid(this.boundingBox) && this.worldObj.getBlockLightValue(MathHelper.floor_double(this.posX), MathHelper.floor_double(this.boundingBox.minY), MathHelper.floor_double(this.posZ)) > 8 && super.getCanSpawnHere(); } @Override