mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-29 19:43:16 +00:00
Fix for #7365.
This commit is contained in:
@@ -453,10 +453,10 @@
|
||||
for(var/datum/design/D in files.known_designs)
|
||||
if(D.build_type&16)
|
||||
if(D.category in part_sets)//Checks if it's a valid category
|
||||
if(add_part_to_set(D.category, text2path(D.build_path)))//Adds it to said category
|
||||
if(add_part_to_set(D.category, D.build_path))//Adds it to said category
|
||||
i++
|
||||
else
|
||||
if(add_part_to_set("Misc", text2path(D.build_path)))//If in doubt, chunk it into the Misc
|
||||
if(add_part_to_set("Misc", D.build_path))//If in doubt, chunk it into the Misc
|
||||
i++
|
||||
return i
|
||||
|
||||
|
||||
Reference in New Issue
Block a user