mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-02 13:32:32 +00:00
Paper shredders can now be detached from the floor with a wrench and moved about. Refactored the law process to not be a process - it didn't tick anyways.
25 lines
540 B
Plaintext
25 lines
540 B
Plaintext
/var/global/datum/controller/law/corp_regs
|
|
|
|
/datum/controller/law
|
|
var/list/laws = list() // All laws
|
|
|
|
var/list/low_severity = list()
|
|
var/list/med_severity = list()
|
|
var/list/high_severity = list()
|
|
|
|
/datum/controller/law/New()
|
|
corp_regs = src
|
|
|
|
for (var/L in subtypesof(/datum/law/low_severity))
|
|
low_severity += new L
|
|
|
|
for (var/L in subtypesof(/datum/law/med_severity))
|
|
med_severity += new L
|
|
|
|
for (var/L in subtypesof(/datum/law/high_severity))
|
|
high_severity += new L
|
|
|
|
laws = low_severity + med_severity + high_severity
|
|
|
|
..()
|