From 3e4b5830be926ce75e7f4e443ac1d552d6819df5 Mon Sep 17 00:00:00 2001 From: kevlahnota Date: Thu, 7 Sep 2017 22:43:28 +0000 Subject: [PATCH] Fixes Warning in Log - unmappable character for encoding UTF-8 --- forge-game/src/main/java/forge/game/keyword/Keyword.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-game/src/main/java/forge/game/keyword/Keyword.java b/forge-game/src/main/java/forge/game/keyword/Keyword.java index 1217cbe6c36..1a6275349e1 100644 --- a/forge-game/src/main/java/forge/game/keyword/Keyword.java +++ b/forge-game/src/main/java/forge/game/keyword/Keyword.java @@ -122,7 +122,7 @@ public enum Keyword { SOULBOND(SimpleKeyword.class, true, "You may pair this creature with another unpaired creature when either enters the battlefield. They remain paired for as long as you control both of them"), SOULSHIFT(KeywordWithAmount.class, false, "When this creature dies, you may return target Spirit card with converted mana cost %d or less from your graveyard to your hand."), SPLICE(KeywordWithCostAndType.class, false, "As you cast an %2$s spell, you may reveal this card from your hand and pay its splice cost. If you do, add this card's effects to that spell."), - SPLIT_SECOND(SimpleKeyword.class, true, "As long as this spell is on the stack, players can’t cast other spells or activate abilities that aren’t mana abilities."), + SPLIT_SECOND(SimpleKeyword.class, true, "As long as this spell is on the stack, players can't cast other spells or activate abilities that aren't mana abilities."), STORM(SimpleKeyword.class, false, "When you cast this spell, copy it for each other spell that was cast before it this turn. You may choose new targets for the copies."), STRIVE(KeywordWithCost.class, false, "CARDNAME costs %s more to cast for each target beyond the first."), SUNBURST(SimpleKeyword.class, false, "This enters the battlefield with either a +1/+1 or charge counter on it for each color of mana spent to cast it based on whether it's a creature."),