Fixed a spelling error on the shuffle info message.

This commit is contained in:
LevelX2 2014-05-28 01:04:35 +02:00
parent 6be1ada183
commit 944bebbe16
2 changed files with 4 additions and 3 deletions

View file

@ -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;

View file

@ -1051,7 +1051,7 @@ public abstract class PlayerImpl<T extends PlayerImpl<T>> 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));
}
}