mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-11 01:51:51 +00:00
SSD miasma v3
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
/mob/living/carbon/human/Login()
|
||||
if(player_logged)
|
||||
overlays -= image('icons/effects/effects.dmi', icon_state = "zzz_glow")
|
||||
..()
|
||||
|
||||
if(dna.species && dna.species.ventcrawler)
|
||||
|
||||
4
code/modules/mob/living/carbon/human/logout.dm
Normal file
4
code/modules/mob/living/carbon/human/logout.dm
Normal file
@@ -0,0 +1,4 @@
|
||||
/mob/living/carbon/human/Logout()
|
||||
..()
|
||||
if(mind.active)
|
||||
overlays += image('icons/effects/effects.dmi', icon_state = "zzz_glow")
|
||||
3
code/modules/mob/living/carbon/human/logout.dm.txt
Normal file
3
code/modules/mob/living/carbon/human/logout.dm.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
/mob/living/carbon/human/Logout()
|
||||
..()
|
||||
overlays += image('icons/effects/effects.dmi', icon_state = "zzz_glow")
|
||||
@@ -6,8 +6,6 @@
|
||||
update_sight()
|
||||
|
||||
//If they're SSD, remove it so they can wake back up.
|
||||
if(player_logged && istype(src, /mob/living/carbon/human))
|
||||
overlays -= image('icons/effects/effects.dmi', icon_state = "zzz_glow")
|
||||
player_logged = 0
|
||||
//Vents
|
||||
if(ventcrawler)
|
||||
|
||||
@@ -9,6 +9,4 @@
|
||||
if(mind.active)
|
||||
Sleeping(2)
|
||||
player_logged = 1
|
||||
last_logout = world.time
|
||||
if(istype(src, /mob/living/carbon/human)) //only human carbon SSD warnings
|
||||
overlays += image('icons/effects/effects.dmi', icon_state = "zzz_glow")
|
||||
last_logout = world.time
|
||||
Reference in New Issue
Block a user