mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 12:02:31 +01:00
Adds a list of valid species per loadout item (#19580)
 
This commit is contained in:
@@ -303,6 +303,18 @@ var/list/gear_datums = list()
|
||||
break
|
||||
else
|
||||
temp_html += ", "
|
||||
|
||||
if(G.whitelisted)
|
||||
temp_html += "</font><font size = 1>(Valid species: "
|
||||
var/species_count = 0
|
||||
for(var/valid_species in G.whitelisted)
|
||||
temp_html += "[valid_species]"
|
||||
species_count++
|
||||
if(species_count == G.whitelisted.len)
|
||||
temp_html += ") "
|
||||
break
|
||||
else
|
||||
temp_html += ", "
|
||||
temp_html += "</font></td></tr>"
|
||||
|
||||
if(ticked)
|
||||
|
||||
Reference in New Issue
Block a user