- Fixed Pongify and Crib Swap (for real this time).

- Removed "number of cards in {player} removed zone:{number}" console output.
This commit is contained in:
jendave
2011-08-06 03:23:04 +00:00
parent 9fc6ca7027
commit 761e16a1be
2 changed files with 4 additions and 2 deletions

View File

@@ -4681,7 +4681,7 @@ public class CardFactory implements NewConstants {
{
if(AllZone.GameAction.isCardInPlay(getTargetCard()) && CardFactoryUtil.canTarget(card,getTargetCard()) )
{
CardFactoryUtil.makeToken("Ape", "G 3 3 Ape", AllZone.GameAction.getOpponent(getTargetCard().getController()), "G",
CardFactoryUtil.makeToken("Ape", "G 3 3 Ape", getTargetCard().getController(), "G",
new String[] {"Creature", "Ape"}, 3, 3, new String[] {""} );
AllZone.GameAction.destroyNoRegeneration(getTargetCard());
}
@@ -6045,7 +6045,7 @@ public class CardFactory implements NewConstants {
{
if(AllZone.GameAction.isCardInPlay(getTargetCard()) && CardFactoryUtil.canTarget(card, getTargetCard()) )
{
CardFactoryUtil.makeToken("Shapeshifter", "C 1 1 Shapeshifter", AllZone.GameAction.getOpponent(getTargetCard().getController()), "",
CardFactoryUtil.makeToken("Shapeshifter", "C 1 1 Shapeshifter", getTargetCard().getController(), "",
new String[] {"Creature", "Shapeshifter"}, 1, 1, new String[] {"Changeling"} );
//remove card from play
AllZone.GameAction.removeFromGame(getTargetCard());

View File

@@ -38,6 +38,7 @@ public class EndOfTurn implements java.io.Serializable
AllZone.StateBasedEffects.rePopulateStateBasedList();
/*
PlayerZone cz = AllZone.getZone(Constant.Zone.Removed_From_Play, Constant.Player.Computer);
PlayerZone hz = AllZone.getZone(Constant.Zone.Removed_From_Play, Constant.Player.Human);
@@ -46,6 +47,7 @@ public class EndOfTurn implements java.io.Serializable
System.out.println("number of cards in compy removed zone: " + c.size());
System.out.println("number of cards in human removed zone: " + h.size());
*/
execute(at);
}//executeAt()