mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-19 19:15:11 +01:00
Convert some more globals (#19231)
* move ref lists from world new to ref list creation * tg styl * . * next globals * ugh * some more * pain * . * horror * . * . * . * shoe me * ye * . * eh * . * . --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
@@ -4,8 +4,8 @@
|
||||
|
||||
/datum/lore/codex/category/auto_org/New(var/new_holder, var/new_parent)
|
||||
..(new_holder, new_parent)
|
||||
for(var/path in loremaster.organizations)
|
||||
var/datum/lore/organization/O = loremaster.organizations[path]
|
||||
for(var/path in GLOB.loremaster.organizations)
|
||||
var/datum/lore/organization/O = GLOB.loremaster.organizations[path]
|
||||
if(!(istype(O, desired_type)))
|
||||
continue
|
||||
var/datum/lore/codex/page/P = new(holder, src)
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
/datum/lore/codex/category/auto_org/New(var/new_holder, var/new_parent)
|
||||
..(new_holder, new_parent)
|
||||
keywords += auto_keywords
|
||||
for(var/path in loremaster.organizations)
|
||||
var/datum/lore/organization/O = loremaster.organizations[path]
|
||||
for(var/path in GLOB.loremaster.organizations)
|
||||
var/datum/lore/organization/O = GLOB.loremaster.organizations[path]
|
||||
if(!(istype(O, desired_type)))
|
||||
continue
|
||||
var/datum/lore/codex/page/P = new(holder, src)
|
||||
|
||||
Reference in New Issue
Block a user