diff --git a/Mage/src/mage/abilities/effects/common/combat/CantBeBlockedByOneAttachedEffect.java b/Mage/src/mage/abilities/effects/common/combat/CantBeBlockedByOneAttachedEffect.java index e05e8c3615..4ce526c740 100644 --- a/Mage/src/mage/abilities/effects/common/combat/CantBeBlockedByOneAttachedEffect.java +++ b/Mage/src/mage/abilities/effects/common/combat/CantBeBlockedByOneAttachedEffect.java @@ -27,13 +27,14 @@ */ package mage.abilities.effects.common.combat; +import mage.abilities.Ability; +import mage.abilities.effects.ContinuousEffectImpl; import mage.constants.AttachmentType; import mage.constants.Duration; import mage.constants.Layer; +import static mage.constants.Layer.RulesEffects; import mage.constants.Outcome; import mage.constants.SubLayer; -import mage.abilities.Ability; -import mage.abilities.effects.ContinuousEffectImpl; import mage.game.Game; import mage.game.permanent.Permanent; diff --git a/Mage/src/mage/players/PlayerImpl.java b/Mage/src/mage/players/PlayerImpl.java index 013565a6f2..48620159ca 100644 --- a/Mage/src/mage/players/PlayerImpl.java +++ b/Mage/src/mage/players/PlayerImpl.java @@ -1051,7 +1051,7 @@ public abstract class PlayerImpl> implements Player, Ser public void shuffleLibrary(Game game) { if (!game.replaceEvent(GameEvent.getEvent(GameEvent.EventType.SHUFFLE_LIBRARY, playerId, playerId))) { this.library.shuffle(); - game.informPlayers(new StringBuilder(this.name).append(" shuffels his or her library.").toString()); + game.informPlayers(new StringBuilder(this.name).append(" shuffles his or her library.").toString()); game.fireEvent(GameEvent.getEvent(GameEvent.EventType.LIBRARY_SHUFFLED, playerId, playerId)); } }