From 83749c5d2326aa46dd6840866353710d95a8baca Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Wed, 9 Jul 2008 20:56:52 +0000 Subject: Fix 2014303: Vampire hunger properties Fix 2014275: Sif Muna giving manuals Fix 2013914: Draconians merging incorrectly Also, at the start of a tutorial game change all secret doors within a radius of 10 into closed doors, to avoid players encountering a dead-end really close to the entry. (And yes, I've had that happen.) Change display of forbidden choices in the character selection menus. It should now be clearer what's going on. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6463 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/randart.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/randart.cc') diff --git a/crawl-ref/source/randart.cc b/crawl-ref/source/randart.cc index e0108b9d80..d676e93813 100644 --- a/crawl-ref/source/randart.cc +++ b/crawl-ref/source/randart.cc @@ -110,12 +110,12 @@ static bool _god_fits_artefact(const god_type which_god, const item_def &item) break; case GOD_SIF_MUNA: - // no weapons for Sif Muna + case GOD_KIKUBAAQUDGHA: + case GOD_VEHUMET: + // The magic gods: no weapons, no preventing spellcasting. if (item.base_type == OBJ_WEAPONS) return (false); - case GOD_KIKUBAAQUDGHA: - case GOD_VEHUMET: if (randart_wpn_property( item, RAP_PREVENT_SPELLCASTING )) return (false); break; -- cgit v1.2.3-54-g00ecf