summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/decks.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/decks.cc')
-rw-r--r--crawl-ref/source/decks.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/decks.cc b/crawl-ref/source/decks.cc
index c7c31cc632..532674e323 100644
--- a/crawl-ref/source/decks.cc
+++ b/crawl-ref/source/decks.cc
@@ -2496,12 +2496,14 @@ static void _crusade_card(int power, deck_rarity_type rarity)
monster->attitude = ATT_FRIENDLY;
// If you worship a god that lets you recruit
- // permanent followers, count this as a recruitment.
- if (you.religion == GOD_SHINING_ONE
+ // permanent followers, or a god allied with one,
+ // count this as a recruitment.
+ if (is_good_god(you.religion)
|| you.religion == GOD_BEOGH
&& mons_species(monster->type) == MONS_ORC)
{
- mons_make_god_gift(monster);
+ mons_make_god_gift(monster, is_good_god(you.religion) ?
+ GOD_SHINING_ONE : GOD_BEOGH);
}
}
else