Fix new ID for copy

This commit is contained in:
tool4EvEr
2021-06-13 11:23:12 +02:00
parent db3bde4bbb
commit 73016d1fe0
2 changed files with 1 additions and 2 deletions

View File

@@ -1643,7 +1643,7 @@ public class ComputerUtilCard {
*/
public static Card getPumpedCreature(final Player ai, final SpellAbility sa,
final Card c, int toughness, int power, final List<String> keywords) {
Card pumped = CardFactory.copyCard(c, true);
Card pumped = CardFactory.copyCard(c, false);
pumped.setSickness(c.hasSickness());
final long timestamp = c.getGame().getNextTimestamp();
final List<String> kws = new ArrayList<>();

View File

@@ -231,7 +231,6 @@ public class CardFactory {
// Would like to move this away from in-game entities
String originalPicture = cp.getImageKey(false);
//System.out.println(c.getName() + " -> " + originalPicture);
c.setImageKey(originalPicture);
c.setToken(cp.isToken());