summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-01-11 22:27:57 +0100
committerAdam Borowski <kilobyte@angband.pl>2010-01-11 22:27:57 +0100
commitebd4b71650061cd625b5fccb95442a8f8e8433ac (patch)
tree01d40321e31658c25402349d77e6f41655888b31 /crawl-ref/source/item_use.cc
parenta6dc4a5857b621261f60342ccfa0d64690f35f2d (diff)
downloadcrawl-ref-ebd4b71650061cd625b5fccb95442a8f8e8433ac.tar.gz
crawl-ref-ebd4b71650061cd625b5fccb95442a8f8e8433ac.zip
Change the messages on wielding a weapon of pain. (MarvinPA)
I dropped "great" from "great ineptitude", though.
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 542ed56a20..d8c6298fa7 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -658,7 +658,12 @@ void wield_effects(int item_wield_2, bool showMsgs)
break;
case SPWPN_PAIN:
- mpr("A searing pain shoots up your arm!");
+ if(you.skills[SK_NECROMANCY] == 0)
+ mpr("You have a feeling of ineptitude.");
+ else if(you.skills[SK_NECROMANCY] <= 4)
+ mpr("Pain shudders through your arm!");
+ else
+ mpr("A searing pain shoots up your arm!");
break;
case SPWPN_CHAOS: