Update BasicAI.java

- sysouts
This commit is contained in:
Dennis Weinberger 2019-03-26 20:38:54 +00:00
parent 1319536671
commit d62800c3d5

View file

@ -53,7 +53,6 @@ public class BasicAI extends AI {
// SCARE-JOKER // SCARE-JOKER
if(getJokers()[1] == JokerTypes.SCARE_TROOPS) { if(getJokers()[1] == JokerTypes.SCARE_TROOPS) {
for(Castle c : game.getMap().getCastles()) { for(Castle c : game.getMap().getCastles()) {
System.out.print(c.getName() + " " + c.getTroopCount() + " " + c.getOwner().getName());
if(c.getOwner() != game.getCurrentPlayer() && c.getTroopCount() > 1) { if(c.getOwner() != game.getCurrentPlayer() && c.getTroopCount() > 1) {
playScareJoker(c, game); playScareJoker(c, game);
break; break;