From 197259929ec7b269e27460b6c6a4bc2cf7541916 Mon Sep 17 00:00:00 2001 From: Goesta Date: Sat, 11 Feb 2017 03:11:32 +0100 Subject: [PATCH] Changed GontisMachinations effect from damage to loseLife --- Mage.Sets/src/mage/cards/g/GontisMachinations.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/g/GontisMachinations.java b/Mage.Sets/src/mage/cards/g/GontisMachinations.java index 927a5c8c14..3752633a1e 100644 --- a/Mage.Sets/src/mage/cards/g/GontisMachinations.java +++ b/Mage.Sets/src/mage/cards/g/GontisMachinations.java @@ -173,7 +173,7 @@ class GontisMachinationsEffect extends OneShotEffect { public boolean apply(Game game, Ability source) { int damage = 0; for (UUID opponentId : game.getOpponents(source.getControllerId())) { - damage += game.getPlayer(opponentId).damage(3, source.getSourceId(), game, false, true); + damage += game.getPlayer(opponentId).loseLife(3, game, false); } game.getPlayer(source.getControllerId()).gainLife(damage, game); return true;