Code cleanup

This commit is contained in:
drdev
2014-09-25 11:37:24 +00:00
parent 42af632ccf
commit 1b0346219d
5 changed files with 10 additions and 14 deletions

View File

@@ -22,7 +22,7 @@ import forge.view.SpellAbilityView;
public interface IMatchController {
void startNewMatch(Match match);
boolean resetForNewGame();
void openView(List<Player> sortedPlayers, int humanCount);
void openView(List<Player> sortedPlayers);
void afterGameEnd();
void showCombat(CombatView combat);
void showPromptMessage(PlayerView playerView, String message);

View File

@@ -194,7 +194,7 @@ public class MatchUtil {
}
}
controller.openView(sortedPlayers, humanCount);
controller.openView(sortedPlayers);
if (humanCount == 0) {
playbackControl = new FControlGamePlayback(GuiBase.getInterface(), getGameView());