mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-07 15:32:47 +00:00
23 lines
365 B
Plaintext
23 lines
365 B
Plaintext
var/datum/subsystem/mobs/SSmob
|
|
|
|
/datum/subsystem/mobs
|
|
name = "Mobs"
|
|
priority = 4
|
|
display = 4
|
|
|
|
|
|
/datum/subsystem/mobs/New()
|
|
NEW_SS_GLOBAL(SSmob)
|
|
|
|
|
|
/datum/subsystem/mobs/stat_entry()
|
|
..("P:[mob_list.len]")
|
|
|
|
|
|
/datum/subsystem/mobs/fire()
|
|
var/seconds = wait * 0.1
|
|
for(var/thing in mob_list)
|
|
if(thing)
|
|
thing:Life(seconds)
|
|
continue
|
|
mob_list.Remove(thing) |