mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-30 23:49:21 +01:00
Merge pull request #6881 from Meghan-Rossi/mirrorfix
Adds ckey whitelist check for mirrors
This commit is contained in:
@@ -179,6 +179,10 @@
|
||||
|
||||
if(!(use_species in S.species_allowed))
|
||||
continue
|
||||
|
||||
if(S.ckeys_allowed && !(ckey in S.ckeys_allowed)) //VOREStation add - ckey whitelist check
|
||||
continue //VOREStation add - ckey whitelist check
|
||||
|
||||
valid_hairstyles += hairstyle
|
||||
|
||||
return valid_hairstyles
|
||||
@@ -202,6 +206,9 @@
|
||||
if(!(use_species in S.species_allowed))
|
||||
continue
|
||||
|
||||
if(S.ckeys_allowed && !(ckey in S.ckeys_allowed)) //VOREStation add - ckey whitelist check
|
||||
continue //VOREStation add - ckey whitelist check
|
||||
|
||||
valid_facial_hairstyles += facialhairstyle
|
||||
|
||||
return valid_facial_hairstyles
|
||||
|
||||
Reference in New Issue
Block a user