This commit is contained in:
FatherToast 2022-07-19 20:52:13 -05:00
parent bf0931b4f8
commit 35388dea28
2 changed files with 3 additions and 3 deletions

View file

@ -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;

View file

@ -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 ) ); }