From 0f646e64e46af2e859463c1dc4e7d069eb301fec Mon Sep 17 00:00:00 2001 From: Goat <126099705+Goat-Real@users.noreply.github.com> Date: Mon, 10 Jun 2024 21:37:05 -0600 Subject: [PATCH] Gets rid of BDM's islava check (#83828) ## About The Pull Request Removes `islava(newloc)` from BDM's move atom. ## Why It's Good For The Game Megafauna have lava immunity and so won't take any damage from pathing over lava. BDM would get stuck on his lava tile spawn due to this as well. fix #83615 ## Changelog :cl: Goat fix: blood drunk miner can now path over lava /:cl: --- .../living/simple_animal/hostile/megafauna/blood_drunk_miner.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm index 37649ceb3c5..193545d9985 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm @@ -122,7 +122,7 @@ Difficulty: Medium new /obj/effect/temp_visual/dir_setting/miner_death(loc, dir) /mob/living/simple_animal/hostile/megafauna/blood_drunk_miner/Move(atom/newloc) - if(newloc && newloc.z == z && (islava(newloc) || ischasm(newloc))) //we're not stupid! + if(newloc && newloc.z == z && ischasm(newloc)) //we're not stupid! return FALSE return ..()