diff --git a/Mage.Sets/src/mage/sets/arabiannights/GuardianBeast.java b/Mage.Sets/src/mage/sets/arabiannights/GuardianBeast.java index d58aec6ffe..b357ed6dea 100644 --- a/Mage.Sets/src/mage/sets/arabiannights/GuardianBeast.java +++ b/Mage.Sets/src/mage/sets/arabiannights/GuardianBeast.java @@ -106,7 +106,7 @@ class GuardianBeastConditionalEffect extends ContinuousRuleModifyingEffectImpl { public GuardianBeastConditionalEffect(UUID guardianBeastId) { super(Duration.WhileOnBattlefield, Outcome.Neutral); - staticText = "Non-creature artifacts you control have they can't be enchanted, they're indestructible, and other players can't gain control of them"; + staticText = "Noncreature artifacts you control have they can't be enchanted, they're indestructible, and other players can't gain control of them"; this.guardianBeastId = guardianBeastId; } @@ -122,7 +122,7 @@ class GuardianBeastConditionalEffect extends ContinuousRuleModifyingEffectImpl { @Override public boolean checksEventType(GameEvent event, Game game) { - return true || (event.getType() == EventType.TARGET || event.getType() == EventType.LOSE_CONTROL); + return true; } @Override @@ -155,4 +155,4 @@ class GuardianBeastConditionalEffect extends ContinuousRuleModifyingEffectImpl { return false; } -} \ No newline at end of file +}