mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
13 lines
388 B
Plaintext
13 lines
388 B
Plaintext
//I AM THE LOREMASTER, ARE YOU THE GATEKEEPER?
|
|
|
|
var/datum/lore/loremaster/loremaster = new/datum/lore/loremaster
|
|
|
|
/datum/lore/loremaster
|
|
var/list/organizations = list()
|
|
|
|
/datum/lore/loremaster/New()
|
|
|
|
var/list/paths = typesof(/datum/lore/organization) - /datum/lore/organization
|
|
for(var/path in paths)
|
|
var/datum/lore/organization/instance = new path()
|
|
organizations[path] = instance |