From 2bee350ae3eafd03eb0888748368bf238424345f Mon Sep 17 00:00:00 2001 From: Heroman Date: Tue, 27 Apr 2021 04:36:32 +1000 Subject: [PATCH] Both fixes and comments out WL check --- code/modules/client/preference_setup/loadout/loadout.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/client/preference_setup/loadout/loadout.dm b/code/modules/client/preference_setup/loadout/loadout.dm index 82675ef9035..48a28a97005 100644 --- a/code/modules/client/preference_setup/loadout/loadout.dm +++ b/code/modules/client/preference_setup/loadout/loadout.dm @@ -66,8 +66,10 @@ var/list/gear_datums = list() for(var/gear_name in gear_datums) var/datum/gear/G = gear_datums[gear_name] - if(G.whitelisted != pref.species) - continue + //VOREStation Removal Start - No need for species-based whitelists for species clothes + //if(G.whitelisted && G.whitelisted != pref.species) + // continue + //VOREStation Removal End if(max_cost && G.cost > max_cost) continue //VOREStation Edit Start