From 091bd626270a1561f550aff4779ca9ba3534d72c Mon Sep 17 00:00:00 2001 From: Fenhl Date: Tue, 3 May 2016 17:53:30 +0000 Subject: [PATCH] Fix inverted Yawgmoth Demon trigger, fixes #1918 --- Mage.Sets/src/mage/sets/ninthedition/YawgmothDemon.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/ninthedition/YawgmothDemon.java b/Mage.Sets/src/mage/sets/ninthedition/YawgmothDemon.java index 7179f58b25d..c32bcff72d8 100644 --- a/Mage.Sets/src/mage/sets/ninthedition/YawgmothDemon.java +++ b/Mage.Sets/src/mage/sets/ninthedition/YawgmothDemon.java @@ -100,7 +100,7 @@ class YawgmothDemonEffect extends OneShotEffect { if (controller != null) { int artifacts = game.getBattlefield().countAll(new FilterArtifactPermanent(), source.getControllerId(), game); boolean artifactSacrificed = false; - if (artifacts < 1 || !controller.chooseUse(outcome, "Sacrifice an artifact?", source, game)) { + if (artifacts > 0 && controller.chooseUse(outcome, "Sacrifice an artifact?", source, game)) { if (new SacrificeControllerEffect(new FilterArtifactPermanent(), 1, "").apply(game, source)) { artifactSacrificed = true; }