feat(webui): guild view #2752

Merged
Sainan merged 18 commits from AMelonInsideLemon/SpaceNinjaServer:webui-guildView into main 2025-09-09 23:55:11 -07:00
Showing only changes of commit f5dd56b49b - Show all commits

View File

@ -10,6 +10,7 @@ import {
ExportCustoms, ExportCustoms,
ExportDojoRecipes, ExportDojoRecipes,
ExportDrones, ExportDrones,
ExportFactions,
ExportGear, ExportGear,
ExportKeys, ExportKeys,
ExportMisc, ExportMisc,
@ -424,7 +425,7 @@ const getItemListsController: RequestHandler = (req, response) => {
let name = getString(getItemName(uniqueName) || uniqueName, lang); let name = getString(getItemName(uniqueName) || uniqueName, lang);
if (uniqueName.startsWith("/Lotus/Levels/ClanDojo/ComponentPropRecipes/GradivusDilemma")) { if (uniqueName.startsWith("/Lotus/Levels/ClanDojo/ComponentPropRecipes/GradivusDilemma")) {
const factionTag = uniqueName.includes("Corpus") ? "FC_CORPUS" : "FC_GRINEER"; const factionTag = uniqueName.includes("Corpus") ? "FC_CORPUS" : "FC_GRINEER";
const faction = eFaction.find(f => f.tag === factionTag)?.name || factionTag; const faction = ExportFactions[factionTag].name;
name += ` [${getString(faction, lang)}]`; name += ` [${getString(faction, lang)}]`;
} }
res.VaultDecoRecipes.push({ res.VaultDecoRecipes.push({