XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

SpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 1 Star 0
返回提交历史

XFEstudio/SpaceNinjaServer

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
Sainan <63328889+Sainan@users.noreply.github.com>
提交于

代码差异

1 个文件 +6 -0
Modified src/services/missionInventoryUpdateService.ts +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");