diff --git a/changelog.md b/changelog.md index 39e1f76..87efbf2 100644 --- a/changelog.md +++ b/changelog.md @@ -12,7 +12,7 @@ Effective 2.3.1 - 1.20.1 - Added frogs and crickets in swamps at night - Added day jungle animals in jungles during the day - Added night jungle animals in jungles at night - - Added owls in forests at + - Added owls in forests at night - Added rustling foliage in forests, floral biomes, swamps, jungles, wooded badlands and lush caves - Added water dripping in dripstone caves - Added water streams in lush caves diff --git a/src/client/java/org/ladysnake/effective/ambience/EffectiveAmbience.java b/src/client/java/org/ladysnake/effective/ambience/EffectiveAmbience.java index 6a9f3fa..f67d0a1 100644 --- a/src/client/java/org/ladysnake/effective/ambience/EffectiveAmbience.java +++ b/src/client/java/org/ladysnake/effective/ambience/EffectiveAmbience.java @@ -44,7 +44,7 @@ public void onInitializeClient() { AMBIENT_CONDITIONS.add(new AmbientCondition(EffectiveAmbienceSounds.ANIMAL_JUNGLE_NIGHT, AmbientCondition.Type.ANIMAL, (world, pos, player) -> isInOverworld(world, pos) && !isInCave(world, pos) && (world.getBiome(pos).isIn(ConventionalBiomeTags.JUNGLE)) && Effective.isNightTime(world))); - // owls in forests at + // owls in forests at night AMBIENT_CONDITIONS.add(new AmbientCondition(EffectiveAmbienceSounds.ANIMAL_OWLS, AmbientCondition.Type.ANIMAL, (world, pos, player) -> isInOverworld(world, pos) && !isInCave(world, pos) && (world.getBiome(pos).isIn(ConventionalBiomeTags.FOREST)) && Effective.isNightTime(world)));