mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28: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$
|
||||
*/
|
||||
public interface Command extends java.io.Serializable {
|
||||
/** Constant <code>Blank</code> */
|
||||
public static Command Blank = new Command() {
|
||||
/** Constant <code>Blank</code>. */
|
||||
Command Blank = new Command() {
|
||||
|
||||
private static final long serialVersionUID = 2689172297036001710L;
|
||||
|
||||
@@ -19,5 +19,5 @@ public interface Command extends java.io.Serializable {
|
||||
/**
|
||||
* <p>execute.</p>
|
||||
*/
|
||||
public void execute();
|
||||
void execute();
|
||||
}
|
||||
|
||||
@@ -134,7 +134,8 @@ public class ComputerAI_General implements Computer {
|
||||
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()
|
||||
&& CardUtil.getConvertedManaCost(c.getManaCost()) <= 3) {
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user