From 20e25439cad6e0c97716e197bb2dceae731a9d24 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Tue, 31 Mar 2009 07:05:53 +0000 Subject: Add some checks to Xom making you cast spells, so you don't attempt to e.g. cast a branding spell, or a transformation that will fail for whatever reason. You may still occasionally get a "The spell fizzled" (or whatever) message but that should be rarer now. Apply the same fail chances for Detect Items as for Magic Mapping for fully explored levels, and for low severity make Summon Butterflies more likely to avoid endless attempts of casting Magic Mapping on fully explored levels. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9573 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/describe.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/describe.cc') diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc index 97f0281497..bc612b78fc 100644 --- a/crawl-ref/source/describe.cc +++ b/crawl-ref/source/describe.cc @@ -3102,7 +3102,7 @@ std::string describe_favour(god_type which_god) : "You should show more discipline."; } - return (which_god == GOD_XOM) ? describe_xom_favour() + return (which_god == GOD_XOM) ? describe_xom_favour(true) : _describe_favour_generic(which_god); } -- cgit v1.2.3-54-g00ecf