Skip to content

Commit

Permalink
Update advanced_landing.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
Lexanx committed Dec 2, 2024
1 parent 662f54e commit 861cf01
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions mods/utility_items/code/advanced_landing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@

/mob/living/carbon/human/update_dead_sight()
. = ..()
if(!eyeobj)
cancel_landeye_view()
return
if(eyeobj.type == /mob/observer/eye/landeye)
set_see_in_dark(8)
set_see_invisible(SEE_INVISIBLE_MINIMUM)
Expand Down Expand Up @@ -323,10 +326,3 @@
var/turf/T = locate(I.loc.x, I.loc.y, I.loc.z)
I = image('mods/utility_items/icons/alphacolors.dmi', T, "dither50")
T.AddOverlays(I)

/datum/shuttle/autodock/process_arrived()
.=..()
for(var/i in 1 to LAZYLEN(next_location.image_shadow))
var/image/I = next_location.image_shadow[i]
var/turf/T = locate(I.loc.x, I.loc.y, I.loc.z)
T.ClearOverlays(I)

0 comments on commit 861cf01

Please sign in to comment.