Skip to content

Commit

Permalink
[MIRROR] Gets rid of BDM's islava check [MDB IGNORE] (#2970)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
Co-authored-by: NovaBot13 <[email protected]>
  • Loading branch information
3 people authored and StealsThePRs committed Jun 11, 2024
1 parent 15675a3 commit 923dd25
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..()

Expand Down

0 comments on commit 923dd25

Please sign in to comment.