mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-31 09:00:25 +01:00
Dead mobs can no longer emote. (except for *deathgasp) Changed the path of /obj/effect/securearea to /obj/effect/sign/securearea for consistency. Slight map updates to the kitchen and brig. Prisoner closets only have one set of clothing in them. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2403 316c924e-a436-60f5-8080-3fe189b3f50e
38 lines
506 B
Plaintext
38 lines
506 B
Plaintext
/obj/effect/sign/securearea/ex_act(severity)
|
|
switch(severity)
|
|
if(1.0)
|
|
del(src)
|
|
return
|
|
if(2.0)
|
|
del(src)
|
|
return
|
|
if(3.0)
|
|
return
|
|
else
|
|
return
|
|
|
|
/obj/effect/sign/securearea/blob_act()
|
|
if (prob(75))
|
|
del(src)
|
|
return
|
|
return
|
|
|
|
|
|
/obj/effect/sign/ex_act(severity)
|
|
switch(severity)
|
|
if(1.0)
|
|
del(src)
|
|
return
|
|
if(2.0)
|
|
del(src)
|
|
return
|
|
if(3.0)
|
|
return
|
|
else
|
|
return
|
|
|
|
/obj/effect/sign/blob_act()
|
|
if (prob(75))
|
|
del(src)
|
|
return
|
|
return |