summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-22 11:00:16 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-22 11:00:16 +0000
commitff6bdc3daff822e5b59b9fbb48b2f74a2d1d9c30 (patch)
tree29f4a05e390e7c59575a6856ef5e74341abcdcf7 /crawl-ref/source/item_use.cc
parent606eefbdd7ea6cfff1a93fc080d2ff6629e3c52d (diff)
downloadcrawl-ref-ff6bdc3daff822e5b59b9fbb48b2f74a2d1d9c30.tar.gz
crawl-ref-ff6bdc3daff822e5b59b9fbb48b2f74a2d1d9c30.zip
Applying two patches by dolorous:
1817546: refix Beogh butchering crash 1817459: fix a couple of typos git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2515 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 5fd1c638fe..2dcb74a054 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -427,7 +427,7 @@ void wield_effects(int item_wield_2, bool showMsgs)
// inc_max_mp(13);
calc_mp();
set_ident_flags( you.inv[item_wield_2], ISFLAG_EQ_WEAPON_MASK );
- mpr("You fell your mana capacity increase.");
+ mpr("You feel your mana capacity increase.");
}
else
{
@@ -2382,7 +2382,7 @@ void jewellery_wear_effects(item_def &item)
break;
case RING_MAGICAL_POWER:
- mpr("You feel you mana capacity increase.");
+ mpr("You feel your mana capacity increase.");
calc_mp();
if (artefact)
fake_rap = RAP_MAGICAL_POWER;
@@ -2722,7 +2722,7 @@ void jewellery_remove_effects(item_def &item)
break;
case RING_MAGICAL_POWER:
- mpr("You feel you mana capacity decrease.");
+ mpr("You feel your mana capacity decrease.");
// dec_max_mp(9);
break;
@@ -4011,7 +4011,7 @@ void use_randart(item_def &item)
you.redraw_magic_points = 1;
if (!known[RAP_MAGICAL_POWER])
{
- mprf("You feel you mana capacity %s.", proprt[RAP_EVASION] > 0?
+ mprf("You feel your mana capacity %s.", proprt[RAP_EVASION] > 0?
"increase" : "decrease");
randart_wpn_learn_prop(item, RAP_MAGICAL_POWER);
}