From ebd4b71650061cd625b5fccb95442a8f8e8433ac Mon Sep 17 00:00:00 2001 From: Adam Borowski Date: Mon, 11 Jan 2010 22:27:57 +0100 Subject: Change the messages on wielding a weapon of pain. (MarvinPA) I dropped "great" from "great ineptitude", though. --- crawl-ref/source/item_use.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/item_use.cc') 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: -- cgit v1.2.3-54-g00ecf