mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
- Force detachment of Equipment when a creature is destroyed.
This commit is contained in:
@@ -684,7 +684,11 @@ public class GameAction {
|
|||||||
|
|
||||||
|
|
||||||
c.destroy();
|
c.destroy();
|
||||||
if(c.isEquipped()) skullClamp_destroy(c);
|
if(c.isEquipped()){ // when equipped creature goes to the grave here.
|
||||||
|
// Deathrender & Oathkeeper, Takeno's Daisho have similar triggers to Skullclamp
|
||||||
|
skullClamp_destroy(c);
|
||||||
|
c.unEquipAllCards();
|
||||||
|
}
|
||||||
|
|
||||||
//destroy card effects:
|
//destroy card effects:
|
||||||
PlayerZone comp = AllZone.getZone(Constant.Zone.Play, Constant.Player.Computer);
|
PlayerZone comp = AllZone.getZone(Constant.Zone.Play, Constant.Player.Computer);
|
||||||
|
|||||||
Reference in New Issue
Block a user