From 41c1540f45254ad65fe8cd021dfd08e22af64b9e Mon Sep 17 00:00:00 2001 From: Dilnu Date: Sun, 18 Sep 2016 20:16:56 -0400 Subject: [PATCH] Fix a couple typos --- Mage/src/main/java/mage/game/GameImpl.java | 2 +- Mage/src/main/java/mage/target/Targets.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage/src/main/java/mage/game/GameImpl.java b/Mage/src/main/java/mage/game/GameImpl.java index f020c0e1e14..76aa1802bb7 100644 --- a/Mage/src/main/java/mage/game/GameImpl.java +++ b/Mage/src/main/java/mage/game/GameImpl.java @@ -1284,7 +1284,7 @@ public abstract class GameImpl implements Game, Serializable { state.setPriorityPlayerId(player.getId()); while (!player.isPassed() && player.canRespond() && !isPaused() && !gameOver(null)) { if (!resuming) { - // 603.3. Once an ability has triggered, its controller puts it on the stack as an object thatÂ’s not a card the next time a player would receive priority + // 603.3. Once an ability has triggered, its controller puts it on the stack as an object that's not a card the next time a player would receive priority checkStateAndTriggered(); applyEffects(); if (state.getStack().isEmpty()) { diff --git a/Mage/src/main/java/mage/target/Targets.java b/Mage/src/main/java/mage/target/Targets.java index be2bbe1d6e8..fd4715e4499 100644 --- a/Mage/src/main/java/mage/target/Targets.java +++ b/Mage/src/main/java/mage/target/Targets.java @@ -100,7 +100,7 @@ public class Targets extends ArrayList { if (target.getTargetController() != null) { // some targets can have controller different than ability controller targetController = target.getTargetController(); } - if (noMana) { // if cast without mana (e.g. by supend you may notr be able to cancel the casting if you are able to cast it + if (noMana) { // if cast without mana (e.g. by suspend you may not be able to cancel the casting if you are able to cast it target.setRequired(true); } if (!target.chooseTarget(outcome, targetController, source, game)) {