diff --git a/code/modules/tents/deployed_tents.dm b/code/modules/tents/deployed_tents.dm index b7533f8db5dc..59924f9703b0 100644 --- a/code/modules/tents/deployed_tents.dm +++ b/code/modules/tents/deployed_tents.dm @@ -65,6 +65,9 @@ var/mob/hologram/hologram_mob = subject_mob subject_mob = hologram_mob.linked_mob + if(!subject_mob.hud_used) + return + var/atom/movable/screen/plane_master/roof/roof_plane = subject_mob.hud_used.plane_masters["[ROOF_PLANE]"] roof_plane?.invisibility = INVISIBILITY_MAXIMUM if(ishuman(subject)) @@ -88,6 +91,9 @@ var/mob/hologram/hologram_mob = subject subject = hologram_mob.linked_mob + if(!subject.hud_used) + return + var/atom/movable/screen/plane_master/roof/roof_plane = subject.hud_used.plane_masters["[ROOF_PLANE]"] roof_plane?.invisibility = 0