mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-15 09:03:53 +01:00
14 lines
339 B
Plaintext
14 lines
339 B
Plaintext
/datum/event/spontaneous_appendicitis/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(AREA_FORBID_EVENTS))
|
|
continue
|
|
if(isbelly(H.loc))
|
|
continue
|
|
if(H.client && H.appendicitis())
|
|
break
|