Fixed per-world spawn limits. I have no idea how we missed this.
This commit is contained in:
parent
73ae279e8d
commit
8f1fc96da0
@ -98,10 +98,13 @@ public final class SpawnerCreature {
|
||||
switch (enumcreaturetype) {
|
||||
case MONSTER:
|
||||
limit = world.getWorld().getMonsterSpawnLimit();
|
||||
break;
|
||||
case CREATURE:
|
||||
limit = world.getWorld().getAnimalSpawnLimit();
|
||||
break;
|
||||
case WATER_CREATURE:
|
||||
limit = world.getWorld().getWaterAnimalSpawnLimit();
|
||||
break;
|
||||
}
|
||||
|
||||
if (limit == 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user