summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-26 22:21:16 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-26 22:21:16 +0000
commit6ceab003bb46f769b5f4d1c0d7429f5032f3c017 (patch)
tree26175ebc265af365f2ea144f5740899e7332013d /crawl-ref/source/acr.cc
parent3cfe89ce027c008e6fe651b79171afa5da78cd85 (diff)
downloadcrawl-ref-6ceab003bb46f769b5f4d1c0d7429f5032f3c017.tar.gz
crawl-ref-6ceab003bb46f769b5f4d1c0d7429f5032f3c017.zip
Fix 2448686: some jewellery properties not working properly while transformed.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7983 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index b08372d1d3..00760dd015 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -1855,17 +1855,17 @@ static void _print_friendly_pickup_setting(bool was_changed)
if (you.friendly_pickup == FRIENDLY_PICKUP_NONE)
{
- mprf("Your intelligent, permanent allies are %sforbidden to pick up anything at all.",
+ mprf("Your intelligent allies are %sforbidden to pick up anything at all.",
now.c_str());
}
else if (you.friendly_pickup == FRIENDLY_PICKUP_FRIEND)
{
- mprf("Your intelligent, permanent allies may %sonly pick up items dropped by allies.",
+ mprf("Your intelligent allies may %sonly pick up items dropped by allies.",
now.c_str());
}
else if (you.friendly_pickup == FRIENDLY_PICKUP_ALL)
{
- mprf("Your intelligent, permanent allies may %spick up anything they need.", now.c_str());
+ mprf("Your intelligent allies may %spick up anything they need.", now.c_str());
}
else
{