mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
nothing important
This commit is contained in:
@@ -712,7 +712,7 @@ public class ChangeZoneEffect extends SpellAbilityEffect {
|
|||||||
}
|
}
|
||||||
|
|
||||||
List<Card> movedCards;
|
List<Card> movedCards;
|
||||||
if (decider.isHuman()) {
|
if (decider.getLobbyPlayer().isHuman()) {
|
||||||
movedCards = changeHiddenOriginResolveHuman(decider, sa, player, changeNum, origin, destination, fetchList, libraryPos);
|
movedCards = changeHiddenOriginResolveHuman(decider, sa, player, changeNum, origin, destination, fetchList, libraryPos);
|
||||||
} else {
|
} else {
|
||||||
movedCards = hiddenOriginResolveAI(decider, sa, player, changeNum, origin, destination, fetchList, libraryPos);
|
movedCards = hiddenOriginResolveAI(decider, sa, player, changeNum, origin, destination, fetchList, libraryPos);
|
||||||
|
|||||||
@@ -247,9 +247,6 @@ public class Player extends GameEntity implements Comparable<Player> {
|
|||||||
return teamNumber;
|
return teamNumber;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public boolean isHuman() { return getLobbyPlayer().isHuman(); }
|
|
||||||
|
|
||||||
public boolean isArchenemy() {
|
public boolean isArchenemy() {
|
||||||
|
|
||||||
//Only the archenemy has schemes.
|
//Only the archenemy has schemes.
|
||||||
|
|||||||
@@ -1081,14 +1081,12 @@ public class PlayerControllerHuman extends PlayerController {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean payManaCost(CostPartMana costPartMana, PaymentDecision pd, SpellAbility sa) {
|
public boolean payManaCost(CostPartMana costPartMana, PaymentDecision pd, SpellAbility sa) {
|
||||||
// TODO Auto-generated method stub
|
|
||||||
ManaCost toPay;
|
ManaCost toPay;
|
||||||
if ( costPartMana.isExiledCreatureCost() )
|
if ( costPartMana.isExiledCreatureCost() ) // back from the brink
|
||||||
toPay = sa.getPaidList("Exiled").get(0).getManaCost();
|
toPay = sa.getPaidList("Exiled").get(0).getManaCost();
|
||||||
else
|
else
|
||||||
toPay = costPartMana.getManaToPay();
|
toPay = costPartMana.getManaToPay();
|
||||||
|
|
||||||
|
|
||||||
return HumanPlay.payManaCost(toPay, costPartMana, sa, player);
|
return HumanPlay.payManaCost(toPay, costPartMana, sa, player);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user