Both fixes and comments out WL check

This commit is contained in:
Chompstation Bot
2021-04-26 18:45:57 +00:00
parent f516265384
commit e8e635184c
@@ -66,8 +66,18 @@ var/list/gear_datums = list()
for(var/gear_name in gear_datums)
var/datum/gear/G = gear_datums[gear_name]
<<<<<<< HEAD
if(G.whitelisted && !is_alien_whitelisted(preference_mob, GLOB.all_species[G.whitelisted]))
continue
||||||| parent of a8185bde6e... Merge pull request #10213 from Heroman3003/fixforw
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
>>>>>>> a8185bde6e... Merge pull request #10213 from Heroman3003/fixforw
if(max_cost && G.cost > max_cost)
continue
//VOREStation Edit Start