Fixed image not being copied for Cavern Harpy.

TODO: Stop making new cards. Need to have a common card copier that all cards of this sort will use.
This commit is contained in:
jendave
2011-08-06 13:43:41 +00:00
parent 80e35ad053
commit 1378fbe1db

View File

@@ -9401,6 +9401,11 @@ public class CardFactory_Creatures {
if(!c.isToken()) {
Card newCard = AllZone.CardFactory.getCard(c.getName(), c.getOwner());
//TODO: Stop making new cards! Need a common card copier to fix multiple isues including images:
newCard.setCurSetCode(c.getCurSetCode());
newCard.setImageFilename(c.getImageFilename());
hand.add(newCard);
}
}