From 923dd25c4055609e98c38e46013404f6cf3df2a3 Mon Sep 17 00:00:00 2001 From: NovaBot <154629622+NovaBot13@users.noreply.github.com> Date: Tue, 11 Jun 2024 01:56:25 -0400 Subject: [PATCH] [MIRROR] Gets rid of BDM's islava check [MDB IGNORE] (#2970) * 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: * Gets rid of BDM's islava check --------- Co-authored-by: Goat <126099705+Goat-Real@users.noreply.github.com> Co-authored-by: NovaBot13 --- .../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 ..()