increase the maximum allowed amount of animals

This commit is contained in:
Ellpeck 2019-01-27 01:40:08 +01:00
parent 5ab72c60c6
commit fc1723a78d

View file

@ -42,7 +42,7 @@ public class AnimalEffect implements IDrainSpotEffect {
AxisAlignedBB bb = new AxisAlignedBB(pos).grow(dist);
List<EntityAnimal> animals = world.getEntitiesWithinAABB(EntityAnimal.class, bb);
if (animals.size() >= 40)
if (animals.size() >= 200)
return;
if (world.getTotalWorldTime() % 200 == 0) {