From ea78e3b88da2c70285b09f34c9c5d8230280405b Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Sun, 22 Jun 2008 21:57:35 +0000 Subject: Swap '.' and '!' in the targetting interface. Forbid bats wearing hats/caps or rings. (That makes amulets the only type of equipment Vampires can keep on when transforming.) To make up for it, increase their damage stats again. Also fix it being possible to (un)equip the allowed items in Tiles while in bat form. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6055 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/xom.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/xom.cc') diff --git a/crawl-ref/source/xom.cc b/crawl-ref/source/xom.cc index a933a075a3..8a27691849 100644 --- a/crawl-ref/source/xom.cc +++ b/crawl-ref/source/xom.cc @@ -117,10 +117,11 @@ static const char* _get_xom_speech(const std::string key) if (result.empty()) result = getSpeakString("Xom general effect"); - if (!result.empty()) - return (result.c_str()); + if (result.empty()) + return ("Xom makes something happen."); - return ("Xom makes something happen."); +// mprf(MSGCH_DIAGNOSTICS, "Xom speech result: %s", result.c_str()); + return (result.c_str()); } static void _xom_is_stimulated(int maxinterestingness, -- cgit v1.2.3-54-g00ecf