diff --git a/code/game/syndicate_specops_shuttle.dm b/code/game/syndicate_specops_shuttle.dm index 8dbfb79ba2a..15b9456c8c5 100644 --- a/code/game/syndicate_specops_shuttle.dm +++ b/code/game/syndicate_specops_shuttle.dm @@ -243,7 +243,7 @@ var/syndicate_elite_shuttle_timeleft = 0 elite_squad.readyalert()//Trigger alarm for the spec ops area. syndicate_elite_shuttle_moving_to_station = 1 - syndicate_elite_shuttle_time = world.timeofday + syndicate_elite_shuttle_time = world.timeofday + SYNDICATE_ELITE_MOVETIME spawn(0) syndicate_elite_process() diff --git a/code/game/turf.dm b/code/game/turf.dm index 7e749b94760..ca8444f4415 100644 --- a/code/game/turf.dm +++ b/code/game/turf.dm @@ -1323,7 +1323,7 @@ turf/simulated/floor/return_siding_icon_state() spawn (0) if ((A && A.loc)) A.loc.Entered(A) - +/* /turf/space/proc/Sandbox_Spacemove(atom/movable/A as mob|obj) var/cur_x var/cur_y diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index f8cf1ee2f0b..eb408645f29 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -195,7 +195,17 @@ for(var/mob/O in viewers(usr.loc, null)) O.show_message("[usr] checks [src]'s pulse.", 1) spawn(15) - usr << "\red [t_He] has no pulse!" + usr << "\red [t_He] has no pulse" + if(!src.client) + var/foundghost = 0 + for(var/mob/dead/observer/G in world) + if(G.client) + if(G.corpse == src) + foundghost++ + break + if(!foundghost) + msg += " and [t_his] soul has departed" + msg += "...\n" /* if (src.getBruteLoss()) if (src.getBruteLoss() < 30)