mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
remove debug code.
This commit is contained in:
@@ -12626,7 +12626,7 @@ public class GameActionUtil {
|
||||
if(condition2.startsWith("LevelGE")) {
|
||||
condition2 = condition2.replace("LevelGE", "");
|
||||
int levelReq = Integer.parseInt(condition2);
|
||||
System.out.println("condition2, got level: "+levelReq);
|
||||
//System.out.println("condition2, got level: "+levelReq);
|
||||
if(card.getCounters(Counters.LEVEL) >= levelReq) {
|
||||
altCondition2 = true;
|
||||
}
|
||||
@@ -12646,7 +12646,7 @@ public class GameActionUtil {
|
||||
else if(condition.startsWith("LevelGE")) {
|
||||
condition = condition.replace("LevelGE", "");
|
||||
int levelReq = Integer.parseInt(condition);
|
||||
System.out.println("condition, got level: "+levelReq);
|
||||
//System.out.println("condition, got level: "+levelReq);
|
||||
if(card.getCounters(Counters.LEVEL) >= levelReq) {
|
||||
altCondition = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user