Skip to content

Commit

Permalink
- Fixed magefree#9943
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffwadsworth committed Feb 8, 2023
1 parent 19c06e5 commit f070f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mage.Sets/src/mage/cards/i/InfectiousInquiry.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public InfectiousInquiry(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{B}");

// You draw two cards and you lose 2 life. Each opponent gets a poison counter.
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1, "you"));
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(2, "you"));
this.getSpellAbility().addEffect(new LoseLifeSourceControllerEffect(2).concatBy("and"));
this.getSpellAbility().addEffect(new AddCountersPlayersEffect(
CounterType.POISON.createInstance(), TargetController.OPPONENT
Expand Down

0 comments on commit f070f9a

Please sign in to comment.