mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-29 02:32:55 +00:00
12 lines
308 B
Plaintext
12 lines
308 B
Plaintext
/datum/event/spontaneous_appendicitis/vorestation/start()
|
|
for(var/mob/living/carbon/human/H in shuffle(living_mob_list))
|
|
var/area/A = get_area(H)
|
|
if(!A)
|
|
continue
|
|
if(!(A.z in using_map.station_levels))
|
|
continue
|
|
if(A.flags & RAD_SHIELDED)
|
|
continue
|
|
if(H.client && H.appendicitis())
|
|
break
|