From f3f2c3cf661f51dd0bfcb3b050e326b86ace27da Mon Sep 17 00:00:00 2001 From: xenohedron Date: Mon, 18 Nov 2024 12:39:01 -0500 Subject: [PATCH] fix Diresight --- Mage.Sets/src/mage/cards/d/Diresight.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/d/Diresight.java b/Mage.Sets/src/mage/cards/d/Diresight.java index f5e49fd0516..286ac1ebe5d 100644 --- a/Mage.Sets/src/mage/cards/d/Diresight.java +++ b/Mage.Sets/src/mage/cards/d/Diresight.java @@ -19,7 +19,7 @@ public final class Diresight extends CardImpl { // Surveil 2, then draw two cards. You lose 2 life. this.getSpellAbility().addEffect(new SurveilEffect(2, false)); - this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1).concatBy(", then")); + this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(2).concatBy(", then")); this.getSpellAbility().addEffect(new LoseLifeSourceControllerEffect(2)); }