summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
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)