summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-27 10:54:03 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-27 10:54:03 +0000
commit1d78b895cd536021bae5ab96ca3a4fff30eef870 (patch)
tree5cb55cb26d6cf52fbbaab2c7492208c6e82c364c /crawl-ref/source/item_use.cc
parent9c94ca75ce486b32945ee29c557dfc4e00f3daf1 (diff)
downloadcrawl-ref-1d78b895cd536021bae5ab96ca3a4fff30eef870.tar.gz
crawl-ref-1d78b895cd536021bae5ab96ca3a4fff30eef870.zip
Can't fix pain brands (Darshan.)
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@890 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 4fbf0e7ce5..f6cb476c34 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -2854,10 +2854,12 @@ static bool affix_weapon_enchantment( void )
break;
case SPWPN_PAIN:
- strcat(info, " shrieks out in eternal agony!");
+ // Can't fix pain brand (balance)...you just get tormented.
+ strcat(info, " shrieks out in agony!");
mpr(info);
torment_monsters(you.x_pos, you.y_pos, 0, TORMENT_GENERIC);
+ success = false;
// is only naughty if you know you're doing it
if (get_ident_type(OBJ_SCROLLS, SCR_ENCHANT_WEAPON_III)==ID_KNOWN_TYPE)