Fix misspellings of "Equipped"

This commit is contained in:
LoneFox 2015-07-13 11:20:07 +03:00
parent 0abfbd66e1
commit 71a12993be
6 changed files with 31 additions and 31 deletions

View file

@ -47,7 +47,7 @@ public class AttacksIfAbleAttachedEffect extends RequirementEffect {
if (attachmentType.equals(AttachmentType.AURA)) { if (attachmentType.equals(AttachmentType.AURA)) {
this.staticText = "Enchanted creature attacks each turn if able"; this.staticText = "Enchanted creature attacks each turn if able";
} else { } else {
this.staticText = "Equiped creature attacks each turn if able"; this.staticText = "Equipped creature attacks each turn if able";
} }
} }

View file

@ -47,7 +47,7 @@ public class BlocksIfAbleAttachedEffect extends RequirementEffect {
if (attachmentType.equals(AttachmentType.AURA)) { if (attachmentType.equals(AttachmentType.AURA)) {
this.staticText = "Enchanted creature blocks each turn if able"; this.staticText = "Enchanted creature blocks each turn if able";
} else { } else {
this.staticText = "Equiped creature blocks each turn if able"; this.staticText = "Equipped creature blocks each turn if able";
} }
} }

View file

@ -47,7 +47,7 @@ public class CantAttackAttachedEffect extends RestrictionEffect {
if (attachmentType.equals(AttachmentType.AURA)) { if (attachmentType.equals(AttachmentType.AURA)) {
this.staticText = "Enchanted creature can't attack"; this.staticText = "Enchanted creature can't attack";
} else { } else {
this.staticText = "Equiped creature can't attack"; this.staticText = "Equipped creature can't attack";
} }
} }

View file

@ -45,7 +45,7 @@ public class CantAttackBlockAttachedEffect extends RestrictionEffect {
if (attachmentType.equals(AttachmentType.AURA)) { if (attachmentType.equals(AttachmentType.AURA)) {
this.staticText = "Enchanted creature can't attack or block"; this.staticText = "Enchanted creature can't attack or block";
} else { } else {
this.staticText = "Equiped creature can't attack or block"; this.staticText = "Equipped creature can't attack or block";
} }
} }

View file

@ -49,7 +49,7 @@ public class CantAttackControllerAttachedEffect extends RestrictionEffect {
if (attachmentType.equals(AttachmentType.AURA)) { if (attachmentType.equals(AttachmentType.AURA)) {
this.staticText = "Enchanted creature can't attack you or a planeswalker you control"; this.staticText = "Enchanted creature can't attack you or a planeswalker you control";
} else { } else {
this.staticText = "Equiped creature can't attack you or a planeswalker you control"; this.staticText = "Equipped creature can't attack you or a planeswalker you control";
} }
} }

View file

@ -50,7 +50,7 @@ public class CantBlockAttachedEffect extends RestrictionEffect {
if (attachmentType.equals(AttachmentType.AURA)) { if (attachmentType.equals(AttachmentType.AURA)) {
sb.append("Enchanted creature can't block"); sb.append("Enchanted creature can't block");
} else { } else {
sb.append("Equiped creature can't block"); sb.append("Equipped creature can't block");
} }
if (!duration.toString().isEmpty()) { if (!duration.toString().isEmpty()) {
sb.append(" ").append(duration.toString()); sb.append(" ").append(duration.toString());