From faedb81a5cf8c3ed7d0e4eb4e14c42faeebae6d4 Mon Sep 17 00:00:00 2001 From: Grath <1895280+Grath@users.noreply.github.com> Date: Fri, 15 Aug 2025 20:47:10 -0400 Subject: [PATCH] [PIP] Rex doesn't restrict stolen abilities to only once per turn. --- Mage.Sets/src/mage/cards/r/RexCyberHound.java | 1 - 1 file changed, 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/r/RexCyberHound.java b/Mage.Sets/src/mage/cards/r/RexCyberHound.java index 3b04fb97384..90f7f61121b 100644 --- a/Mage.Sets/src/mage/cards/r/RexCyberHound.java +++ b/Mage.Sets/src/mage/cards/r/RexCyberHound.java @@ -129,7 +129,6 @@ class RexCyberhoundContinuousEffect extends ContinuousEffectImpl { for (Ability ability : card.getAbilities(game)) { if (ability.isActivatedAbility()) { ActivatedAbility copyAbility = (ActivatedAbility) ability.copy(); - copyAbility.setMaxActivationsPerTurn(1); perm.addAbility(copyAbility, source.getSourceId(), game, true); } }