- Restored Emblem image functionality

- Added Domri Rade's emblem to the token download urls
This commit is contained in:
moomarc
2013-03-12 10:10:33 +00:00
parent c8ee94e54e
commit 592ab5752d
2 changed files with 2 additions and 1 deletions

View File

@@ -215,6 +215,7 @@ wu_1_1_bird.jpg http://www.cardforge.org/fpics/tokens/wu_
# //Emblems and extras
chandra_the_firebrand_effect.jpg http://www.cardforge.org/fpics/effects/chandra_the_firebrand_effect.jpg
domri_rade_emblem.jpg http://www.cardforge.org/fpics/effects/domri_rade_emblem.jpg
elspeth_knight_errant_emblem.jpg http://www.cardforge.org/fpics/effects/elspeth_knight_errant_emblem.jpg
koth_of_the_hammer_emblem.jpg http://www.cardforge.org/fpics/effects/koth_of_the_hammer_emblem.jpg
liliana_of_the_dark_realms_emblem.jpg http://www.cardforge.org/fpics/effects/liliana_of_the_dark_realms_emblem.jpg

View File

@@ -104,7 +104,7 @@ public class EffectEffect extends SpellAbilityEffect {
// nuked
eff.addController(controller);
eff.setOwner(controller);
eff.setImageFilename(hostCard.getImageFilename());
eff.setImageFilename(sa.hasParam("Image") ? sa.getParam("Image") : hostCard.getImageFilename());
eff.setColor(hostCard.getColor());
eff.setImmutable(true);
eff.setEffectSource(hostCard);