Change various global species lists to GLOB versions.

This commit is contained in:
Mechoid
2019-12-05 23:55:22 -08:00
parent 777a158b00
commit 58e2ce2fb4
51 changed files with 131 additions and 121 deletions

View File

@@ -66,7 +66,7 @@ var/list/gear_datums = list()
for(var/gear_name in gear_datums)
var/datum/gear/G = gear_datums[gear_name]
if(G.whitelisted && !is_alien_whitelisted(preference_mob, all_species[G.whitelisted]))
if(G.whitelisted && !is_alien_whitelisted(preference_mob, GLOB.all_species[G.whitelisted]))
continue
if(max_cost && G.cost > max_cost)
continue