返回提交历史
Modified
src/services/missionInventoryUpdateService.ts
+6
-0
XFEstudio/XFESpaceNinjaServer
chore: rewrite gruzzling droptable to scathing/mocking whispers (#1712)
Closes #1708 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/1712 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
a6d4fab5
代码差异
1 个文件
+6
-0
@@ -700,6 +700,12 @@ export const addMissionRewards = async (
700
700
701
701
if (strippedItems) {
702
702
for (const si of strippedItems) {
703
if (si.DropTable == "/Lotus/Types/DropTables/ManInTheWall/MITWGruzzlingArcanesDropTable") {
704
logger.debug(
705
`rewriting ${si.DropTable} to /Lotus/Types/DropTables/EntratiLabDropTables/DoppelgangerDropTable`
706
);
707
si.DropTable = "/Lotus/Types/DropTables/EntratiLabDropTables/DoppelgangerDropTable";
708
}
703
709
const droptables = ExportEnemies.droptables[si.DropTable] ?? [];
704
710
if (si.DROP_MOD) {
705
711
const modDroptable = droptables.find(x => x.type == "mod");