From f846d50cb8e4d7e3af5dc33c2c7546cc261f7b5d Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Fri, 7 Nov 2025 05:42:56 -0500 Subject: [PATCH] hiero staff does proper bonus damage to basic mining mobs (#30879) --- .../mob/living/simple_animal/hostile/megafauna/hierophant.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm index 7e794e180a5..bf5ee946c59 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm @@ -772,7 +772,7 @@ Difficulty: Hard H.FindTarget(list(caster), 1) else H.Goto(get_turf(caster), H.move_to_delay, 3) - if(monster_damage_boost && (ismegafauna(target) || istype(target, /mob/living/simple_animal/hostile/asteroid))) + if(monster_damage_boost && (ismegafauna(target) || istype(target, /mob/living/basic/mining))) target.adjustBruteLoss(damage) if(caster) add_attack_logs(caster, target, "Struck with a [name]")