fix spawnmob command

This commit is contained in:
ZeroEpoch1969 2018-07-11 16:17:00 -07:00
parent 114567f94c
commit 8602850245
No known key found for this signature in database
GPG key ID: E0AAB104FB9F8FDF

View file

@ -68,7 +68,7 @@ public class Command_spawnmob extends FreedomCommand
World w = playerSender.getWorld();
msg("Spawning " + amount + " of " + type.getName());
for (int i = 0; i < amount; amount++)
for (int i = 0; i < amount; i++)
{
w.spawnEntity(l, type);
}