1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-20 05:21:21 +02:00

[Fix] Stacked mobs count towards spawnmob-limit count.

This commit is contained in:
KHobbits
2013-04-30 01:03:37 +01:00
parent 08b9ebed6f
commit 24f26f3d08

View File

@@ -112,10 +112,21 @@ public class SpawnMob
checkSpawnable(ess, sender, mob); checkSpawnable(ess, sender, mob);
} }
int serverLimit = ess.getSettings().getSpawnMobLimit(); final int serverLimit = ess.getSettings().getSpawnMobLimit();
if (mobCount > serverLimit) int effectiveLimit = serverLimit / parts.size();
if (effectiveLimit < 1)
{ {
mobCount = serverLimit; effectiveLimit = 1;
while (parts.size() > serverLimit)
{
parts.remove(serverLimit);
}
}
if (mobCount > effectiveLimit)
{
mobCount = effectiveLimit;
sender.sendMessage(_("mobSpawnLimit")); sender.sendMessage(_("mobSpawnLimit"));
} }
@@ -126,7 +137,7 @@ public class SpawnMob
{ {
spawnMob(ess, server, sender, target, sloc, parts, data); spawnMob(ess, server, sender, target, sloc, parts, data);
} }
sender.sendMessage(mobCount + " " + mob.name.toLowerCase(Locale.ENGLISH) + mob.suffix + " " + _("spawned")); sender.sendMessage(mobCount * parts.size() + " " + mob.name.toLowerCase(Locale.ENGLISH) + mob.suffix + " " + _("spawned"));
} }
catch (MobException e1) catch (MobException e1)
{ {