From 785c43e0f7629b1c00cb1f76e1b395e79b4bb1bf Mon Sep 17 00:00:00 2001 From: L_J Date: Fri, 1 Jun 2018 15:09:45 +0000 Subject: [PATCH] Mindslaver text fix --- .../common/LoseControlOnOtherPlayersControllerEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/main/java/mage/abilities/effects/common/LoseControlOnOtherPlayersControllerEffect.java b/Mage/src/main/java/mage/abilities/effects/common/LoseControlOnOtherPlayersControllerEffect.java index 5ddf7d65e2..ada377e8da 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/LoseControlOnOtherPlayersControllerEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/LoseControlOnOtherPlayersControllerEffect.java @@ -42,7 +42,7 @@ public class LoseControlOnOtherPlayersControllerEffect extends OneShotEffect { public LoseControlOnOtherPlayersControllerEffect(String controllingPlayerName, String controlledPlayerName) { super(Outcome.Detriment); - staticText = controlledPlayerName + " lost control over " + controlledPlayerName; + staticText = controllingPlayerName + " lost control over " + controlledPlayerName; } public LoseControlOnOtherPlayersControllerEffect(final LoseControlOnOtherPlayersControllerEffect effect) {