summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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: