Infect and wither abilities are also shown on card with deathtouch icon.

master
ubeefx 2011-04-23 16:13:04 +00:00
parent 2927bfe736
commit 023ffa3452
2 changed files with 4 additions and 2 deletions

View File

@ -34,8 +34,8 @@ Release LE 1.13 (April 23, 2011)
- default cube (600 cards)
- all cube (900 cards)
- added "Save replay" to menu, useful for sharing game state when reporting issues
- right mouse click on hand zone can now be used as a shortcut for action button
- infect and wither abilities are also shown on cards with same icon as deathtouch
Release LE 1.12 (April 17, 2011)
===============

View File

@ -68,7 +68,9 @@ public class ImageDrawingUtils {
g.drawImage(IconImages.TRAMPLE.getImage(),ax,ay,observer);
ax+=16;
}
if (MagicAbility.Deathtouch.hasAbility(abilityFlags)) {
if (MagicAbility.Deathtouch.hasAbility(abilityFlags)||
MagicAbility.Wither.hasAbility(abilityFlags)||
MagicAbility.Infect.hasAbility(abilityFlags)) {
g.drawImage(IconImages.DEATHTOUCH.getImage(),ax,ay,observer);
ax+=16;
}