mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-22 19:47:47 +01:00
14 lines
345 B
Plaintext
14 lines
345 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.flag_check(RAD_SHIELDED))
|
|
continue
|
|
if(isbelly(H.loc))
|
|
continue
|
|
if(H.client && H.appendicitis())
|
|
break
|