mirror of
https://github.com/quotefox/Hyper-Station-13.git
synced 2026-07-13 00:32:48 +01:00
d6dc425a0b
- - - Simply does as it implies on the tin. Ports the 'Busy Space' modules and reworks them slightly to function on TG. It does not broadcast to Common as it does on Virgo/Polaris. Instead, it functions similar to announcements, near identically in fact, having its own little broadcast. I'll be posting examples alongside this. If it's a necessity to be broadcasting over Common, I'd have to fight with it a bit, but can probably do so without issue. - - -
11 lines
340 B
Plaintext
11 lines
340 B
Plaintext
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 |