diff --git a/src/main/java/fathertoast/specialmobs/common/bestiary/BestiaryInfo.java b/src/main/java/fathertoast/specialmobs/common/bestiary/BestiaryInfo.java index e8db1a2..88e9e8a 100644 --- a/src/main/java/fathertoast/specialmobs/common/bestiary/BestiaryInfo.java +++ b/src/main/java/fathertoast/specialmobs/common/bestiary/BestiaryInfo.java @@ -31,8 +31,8 @@ public class BestiaryInfo { DISABLED( 0.0 ), LOWEST( DEFAULT.value / 8.0 ), LOW( DEFAULT.value / 4.0 ), - HIGH( DEFAULT.value * 4.0 ), - HIGHEST( DEFAULT.value * 8.0 ); + HIGH( DEFAULT.value * 2.5 ), + HIGHEST( DEFAULT.value * 5.0 ); public final double value; diff --git a/src/main/java/fathertoast/specialmobs/common/config/util/EnvironmentEntry.java b/src/main/java/fathertoast/specialmobs/common/config/util/EnvironmentEntry.java index f4ccdb6..a0bc5df 100644 --- a/src/main/java/fathertoast/specialmobs/common/config/util/EnvironmentEntry.java +++ b/src/main/java/fathertoast/specialmobs/common/config/util/EnvironmentEntry.java @@ -262,7 +262,7 @@ public class EnvironmentEntry { public Builder belowHalfMoonLight() { return fromHalfMoonLight( ComparisonOperator.LESS_THAN ); } - public Builder atNoMoonLight() { return in( new MoonPhaseEnvironment( MoonPhaseEnvironment.Value.NEW, true ) ); } + public Builder atNoMoonLight() { return in( new MoonPhaseEnvironment( MoonPhaseEnvironment.Value.NEW, false ) ); } private Builder fromHalfMoonLight( ComparisonOperator op ) { return in( new MoonBrightnessEnvironment( op, 0.5F ) ); }