Remove unnecessary new string declaration

This commit is contained in:
Thanos Paravantis 2016-07-13 18:05:35 +03:00
parent 839d9263fd
commit ad32f4e2f1
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ public class ChallengeEmpty extends Challenge
{ {
public ChallengeEmpty(BawkBawkBattles host) public ChallengeEmpty(BawkBawkBattles host)
{ {
super(host, ChallengeType.FirstComplete, "Empty", new String[] { "Not enough players" }); super(host, ChallengeType.FirstComplete, "Empty", "Not enough players");
Settings.setUseMapHeight(); Settings.setUseMapHeight();
} }