Fixes noslip shoes not showing up in nuke ops uplink (#35621)

* Fixes noslip shoes not showing up for nuke ops

* Updates other references to GLOB.uplink_items

* Removes unnecessary SSticker checks
This commit is contained in:
YPOQ
2018-02-19 13:47:55 -07:00
committed by CitadelStationBot
parent fef23bd7cc
commit 87d8be5287
2 changed files with 25 additions and 44 deletions
+5 -5
View File
@@ -874,11 +874,11 @@
/datum/techweb_node/syndicate_basic/New() //Crappy way of making syndicate gear decon supported until there's another way.
. = ..()
boost_item_paths = list()
for(var/cat in GLOB.uplink_items)
var/list/l = cat
for(var/i in l)
var/datum/uplink_item/UI = i
boost_item_paths[UI.item] = 0 //allows deconning to unlock.
for(var/path in GLOB.uplink_items)
var/datum/uplink_item/UI = new path
if(!UI.item)
continue
boost_item_paths[UI.item] = 0 //allows deconning to unlock.
//HELPERS
/proc/total_techweb_exports()