summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/decks.cc1
-rw-r--r--crawl-ref/source/monstuff.cc3
2 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/decks.cc b/crawl-ref/source/decks.cc
index d4c41758c8..cf02cfa371 100644
--- a/crawl-ref/source/decks.cc
+++ b/crawl-ref/source/decks.cc
@@ -2493,6 +2493,7 @@ static void _crusade_card(int power, deck_rarity_type rarity)
if (is_good_god(you.religion)
|| you.religion == GOD_BEOGH
&& mons_species(monster->type) == MONS_ORC
+ && !mons_is_summoned(monster)
&& !mons_is_shapeshifter(monster))
{
mons_make_god_gift(monster, is_good_god(you.religion) ?
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 6868e2c1d1..80cfa15b96 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -587,8 +587,9 @@ static bool _monster_avoided_death(monsters *monster, killer_type killer, int i)
if (you.religion == GOD_BEOGH
&& mons_species(monster->type) == MONS_ORC
+ && !mons_is_summoned(monster) && !mons_is_shapeshifter(monster)
&& !player_under_penance() && you.piety >= piety_breakpoint(2)
- && mons_near(monster) && !mons_is_summoned(monster))
+ && mons_near(monster))
{
if (YOU_KILL(killer))
convert = true;