Skip to content

Commit

Permalink
1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
baguchi committed Nov 15, 2023
1 parent 9956f0e commit 7270614
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ halplibe_version=2.7.0
prismatic_version=2.1.1
terrain_api_version=1.3.1
# Mod
mod_version=1.6.0
mod_version=1.6.1
mod_group=baguchan
mod_name=better_with_aquatic
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package baguchan.better_with_aquatic.mixin;

import baguchan.better_with_aquatic.entity.EntityBaseFish;
import baguchan.better_with_aquatic.entity.EntityAnglerFish;
import baguchan.better_with_aquatic.entity.EntityFish;
import net.minecraft.core.entity.SpawnListEntry;
import net.minecraft.core.world.biome.Biome;
import net.minecraft.core.world.biome.Biomes;
Expand All @@ -22,7 +23,8 @@ public class BiomeMixin {
private void addMobs(CallbackInfo ci) {
Biome biome = (Biome) (Object) this;
if (biome != Biomes.NETHER_NETHER) {
spawnableWaterCreatureList.add(new SpawnListEntry(EntityBaseFish.class, 15));
spawnableWaterCreatureList.add(new SpawnListEntry(EntityFish.class, 15));
spawnableWaterCreatureList.add(new SpawnListEntry(EntityAnglerFish.class, 10));
}
}
}

0 comments on commit 7270614

Please sign in to comment.