From 90a3e19b7b5d824a31bf430c4b8d6c379c8c91bd Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 15 May 2015 15:50:04 -0400 Subject: [PATCH] v0.3.0: fixed typos in mage's staff --- .../items/weapon/melee/MagesStaff.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/MagesStaff.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/MagesStaff.java index fffc8a559..c12273e6b 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/MagesStaff.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/weapon/melee/MagesStaff.java @@ -22,7 +22,6 @@ import java.util.ArrayList; /** * Created by debenhame on 13/03/2015. */ -//TODO: lots of refinements to make here still. public class MagesStaff extends MeleeWeapon { private Wand wand; @@ -201,7 +200,7 @@ public class MagesStaff extends MeleeWeapon { @Override public String desc() { - String result = "Crafted by the mage himself, this extraordinary staff is one of a kind multi-purpose magical weapon.\n" + + String result = "Crafted by the mage himself, this extraordinary staff is a one of a kind multi-purpose magical weapon.\n" + "\n" + "Rather than having an innate magic in it, this staff is instead imbued with magical energy from a wand, permanently granting it new power.\n" + "\n"; @@ -225,7 +224,7 @@ public class MagesStaff extends MeleeWeapon { } else if (wand instanceof WandOfRegrowth){ result += "The staff flourishes and grows with natural energy from the wand it is imbued with."; } else if (wand instanceof WandOfTransfusion){ - result += "The staff Courses and Flows with life energy from the wand it is imbued with."; + result += "The staff courses and flows with life energy from the wand it is imbued with."; } return result; @@ -237,7 +236,7 @@ public class MagesStaff extends MeleeWeapon { if (item != null) { if (!item.isIdentified()) { - GLog.w("You'll need to know more about this wand first."); + GLog.w("You'll need to identify this wand first."); return; } else if (item.cursed){ GLog.w("You can't use a cursed wand.");