mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
Deathtouch was not working. fixing.
This commit is contained in:
@@ -2684,6 +2684,11 @@ public class Card extends MyObservable {
|
||||
AllZone.Stack.add(ability2);
|
||||
}
|
||||
|
||||
if(source.getKeyword().contains("Deathtouch") && this.isCreature()) {
|
||||
AllZone.GameAction.destroy(this);
|
||||
//AllZone.Combat.removeFromCombat(card);
|
||||
}
|
||||
|
||||
System.out.println("Adding " + damageToAdd + " damage to " + getName());
|
||||
Log.debug("Adding " + damageToAdd + " damage to " + getName());
|
||||
if(AllZoneUtil.isCardInPlay(this) && CardFactoryUtil.canDamage(source, this)) {
|
||||
|
||||
Reference in New Issue
Block a user