From 1c0a611a9e00fc789a8e71f1423e48bec7dd5020 Mon Sep 17 00:00:00 2001 From: Eino Keskitalo Date: Sat, 7 Nov 2009 16:30:52 +0200 Subject: Merge from chaotic_experiment branch: Replace mons_is_shapeshifter(const monsters *m) in mon-util.cc with is_shapeshifter() in monster.cc --- crawl-ref/source/decks.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/decks.cc') diff --git a/crawl-ref/source/decks.cc b/crawl-ref/source/decks.cc index 7f44093d9b..f5605b1615 100644 --- a/crawl-ref/source/decks.cc +++ b/crawl-ref/source/decks.cc @@ -2547,7 +2547,7 @@ static void _crusade_card(int power, deck_rarity_type rarity) || you.religion == GOD_BEOGH && mons_species(monster->type) == MONS_ORC && !monster->is_summoned() - && !mons_is_shapeshifter(monster)) + && !monster->is_shapeshifter()) { // Prevent assertion if the monster was // previously worshipping a different god, -- cgit v1.2.3-54-g00ecf