summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/fight.cc12
-rw-r--r--crawl-ref/source/monstuff.cc4
2 files changed, 8 insertions, 8 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 0d8d54cdc7..3c767268d1 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -630,18 +630,18 @@ bool melee_attack::player_attack()
if (player_check_monster_died())
return (true);
+ player_sustain_passive_damage();
+
+ // At this point, pretend we didn't hit at all.
+ if (shield_blocked)
+ did_hit = false;
+
if (hit_woke_orc)
{
// call function of orcs first noticing you but with
// beaten-up conversion messages (if applicable)
beogh_follower_convert(def, true);
}
-
- player_sustain_passive_damage();
-
- // At this point, pretend we didn't hit at all.
- if (shield_blocked)
- did_hit = false;
}
else
player_warn_miss();
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 0af9e58596..c54c312fc7 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -474,9 +474,9 @@ static bool monster_avoided_death(monsters *monster, killer_type killer, int i)
if (YOU_KILL(killer)
&& mons_near(monster)
&& !mons_friendly(monster)
+ && you.religion == GOD_BEOGH
&& mons_species(monster->type) == MONS_ORC
- && you.species == SP_HILL_ORC && you.religion == GOD_BEOGH
- && !player_under_penance() && you.piety >= 75)
+ && !player_under_penance() && you.piety >= piety_breakpoint(2))
{
#ifdef DEBUG_DIAGNOSTICS
mprf(MSGCH_DIAGNOSTICS, "Death convert attempt on %s, HD: %d, "