spelling fixes, disabling Particles, fixing mob limit.

This commit is contained in:
Sarah 2015-12-05 22:17:45 +01:00
parent 4c4b997453
commit 90c6d0a83f
2 changed files with 4 additions and 3 deletions

View File

@ -96,7 +96,7 @@ public class Minion
"Muscles", "Invader", "Grandpa", "Confirm", "Speaker", "Wizards", "Stacker", "Feather", "Channel", "Thunder",
"Marbles", "Contest", "Grandma", "History", "Minigun", "Skywars", "Turtwig", "Morning", "Explode", "Factory",
"Polygon", "Teacher", "Royalty", "Balcony", "Android", "Monster", "Emerald", "Primate", "Village", "Company",
"Degrees", "Glacier", "Cricket", "Partner", "Mideval", "Gravity", "Surgeon", "Volcano", "Forward", "Console",
"Degrees", "Glacier", "Cricket", "Partner", "Medieval", "Gravity", "Surgeon", "Volcano", "Forward", "Console",
"Hexagon", "Cyclops", "Kung-fu", "Bonjour", "Painter", "Snowman", "Caramel", "Lullaby", "Sparrow", "Blowgun",
"Octagon", "January", "Century", "Bowling", "Plumber", "Explore", "Healing", "Circuit", "Vampire", "Distort",
"Nonagon", "October", "Lockers", "Justice", "England", "Pancake", "Whisper", "Voltage", "Ceramic", "Avenger",

View File

@ -131,6 +131,7 @@ public class TypeWars extends TeamGame
this.PlaySoundGameStart = false;
this.EnableTutorials = true;
this.PrepareFreeze = true;
this.AllowParticles = false;
_activeMinions = new ArrayList<>();
_deadMinions = new ArrayList<>();
@ -461,9 +462,9 @@ public class TypeWars extends TeamGame
{
if(teams != team)
{
if(getMinions(team).size() >= 60)
if(getMinions(teams).size() >= 60)
{
UtilTextMiddle.display("", ChatColor.GRAY + "Your Team cant have more than 60 Minions", event.getPlayer());
UtilTextMiddle.display("", ChatColor.GRAY + "Your Team cant have more than 60 Minions", 5, 30, 5);
return;
}