From 5eb01527a7ee911e6a7f2022e9bdfdc236095b99 Mon Sep 17 00:00:00 2001 From: Adam Borowski Date: Tue, 6 Oct 2009 00:10:15 +0200 Subject: Give a message and a milestone when Nemelex' active wrath stops [BR 2844717] --- crawl-ref/source/describe.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/describe.cc') diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc index 2189bd4071..e27f3a3850 100644 --- a/crawl-ref/source/describe.cc +++ b/crawl-ref/source/describe.cc @@ -3511,7 +3511,10 @@ void describe_god( god_type which_god, bool give_title ) which_god_penance = 2; // == "Come back to the one true church!" } - cprintf( (which_god_penance >= 50) ? "%s's wrath is upon you!" : + cprintf( (which_god == GOD_NEMELEX_XOBEH + && which_god_penance > 0 && which_god_penance <= 100) + ? "%s doesn't play fair with you." : + (which_god_penance >= 50) ? "%s's wrath is upon you!" : (which_god_penance >= 20) ? "%s is annoyed with you." : (which_god_penance >= 5) ? "%s well remembers your sins." : (which_god_penance > 0) ? "%s is ready to forgive your sins." : -- cgit v1.2.3-54-g00ecf