- 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());