ss atoms update (#17529)

* draft ss atoms update

* .

* .

* .

* low wall

* do that when not asleep

* late init handling

* .

* smes

* try this
This commit is contained in:
Kashargul
2025-04-24 00:00:57 +02:00
committed by GitHub
parent d320585510
commit e5d5b3769a
53 changed files with 431 additions and 245 deletions
+3 -3
View File
@@ -57,7 +57,7 @@ var/list/ventcrawl_machinery = list(
if(is_ventcrawling && istype(loc, /obj/machinery/atmospherics)) //attach us back into the pipes
remove_ventcrawl()
add_ventcrawl(loc)
client.screen += global_hud.centermarker
client.screen += GLOB.global_hud.centermarker
/mob/living/simple_mob/slime/xenobio/can_ventcrawl()
if(victim)
@@ -239,7 +239,7 @@ var/list/ventcrawl_machinery = list(
pipes_shown += A.pipe_image
client.images += A.pipe_image
if(client)
client.screen += global_hud.centermarker
client.screen += GLOB.global_hud.centermarker
/mob/living/proc/remove_ventcrawl()
is_ventcrawling = 0
@@ -247,7 +247,7 @@ var/list/ventcrawl_machinery = list(
if(client)
for(var/image/current_image in pipes_shown)
client.images -= current_image
client.screen -= global_hud.centermarker
client.screen -= GLOB.global_hud.centermarker
client.eye = src
pipes_shown.len = 0