From 16439fd982999d00a56007cb9c388fc4bed2a9b4 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Tue, 27 May 2014 01:45:31 -0400 Subject: [PATCH] Nations commit 4.1 forgot maybe this I have no idea if I'll need it but probably. --- code/__HELPERS/global_lists.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/__HELPERS/global_lists.dm b/code/__HELPERS/global_lists.dm index 6b2d355d765..45917bc50ba 100644 --- a/code/__HELPERS/global_lists.dm +++ b/code/__HELPERS/global_lists.dm @@ -25,6 +25,7 @@ var/global/list/flag_list = list() //list of flags during Nations gamemode //Languages/species/whitelist. var/global/list/all_species[0] var/global/list/all_languages[0] +var/global/list/all_nations[0] var/global/list/whitelisted_species = list() // Posters @@ -97,6 +98,11 @@ var/global/list/backbaglist = list("Nothing", "Backpack", "Satchel", "Satchel Al var/datum/job/J = new T joblist[J.title] = J + paths = typesof(/datum/nations)-/datum/nations + for(var/T in paths) + var/datum/nations/N = new T + all_nations[N.name] = N + //Languages and species. paths = typesof(/datum/language)-/datum/language for(var/T in paths)