From 8bfe6d6e15a844582d544d44bd7d13ca0004c8a1 Mon Sep 17 00:00:00 2001 From: vincibrv Date: Thu, 4 Dec 2025 12:35:43 +0100 Subject: [PATCH] tent fix --- code/modules/tents/deployed_tents.dm | 6 ++++++ 1 file changed, 6 insertions(+) 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