mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
checkstyle
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -7,8 +7,8 @@ package forge;
|
|||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public interface Command extends java.io.Serializable {
|
public interface Command extends java.io.Serializable {
|
||||||
/** Constant <code>Blank</code> */
|
/** Constant <code>Blank</code>. */
|
||||||
public static Command Blank = new Command() {
|
Command Blank = new Command() {
|
||||||
|
|
||||||
private static final long serialVersionUID = 2689172297036001710L;
|
private static final long serialVersionUID = 2689172297036001710L;
|
||||||
|
|
||||||
@@ -19,5 +19,5 @@ public interface Command extends java.io.Serializable {
|
|||||||
/**
|
/**
|
||||||
* <p>execute.</p>
|
* <p>execute.</p>
|
||||||
*/
|
*/
|
||||||
public void execute();
|
void execute();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -134,7 +134,8 @@ public class ComputerAI_General implements Computer {
|
|||||||
creatures2.add(creatures.get(i));
|
creatures2.add(creatures.get(i));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (creatures2.size() + CardUtil.getThisTurnCast("Creature.YouCtrl", vengevines.get(0)).size() > 1
|
if (creatures2.size()
|
||||||
|
+ CardUtil.getThisTurnCast("Creature.YouCtrl", vengevines.get(0)).size() > 1
|
||||||
&& c.isCreature()
|
&& c.isCreature()
|
||||||
&& CardUtil.getConvertedManaCost(c.getManaCost()) <= 3) {
|
&& CardUtil.getConvertedManaCost(c.getManaCost()) <= 3) {
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
Reference in New Issue
Block a user