返回提交历史
Modified
src/services/missionInventoryUpdateService.ts
+4
-4
XFEstudio/XFESpaceNinjaServer
feat: dominus aureus rewards when operation eight claw is active (#2663)
Closes #2660 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2663 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
9b6abff2
代码差异
1 个文件
+4
-4
@@ -1785,20 +1785,20 @@ function getRandomMissionDrops(
1785
1785
if (mission?.Tier == 1) {
1786
1786
logger.warn(`non-steel path duviri murmur tier used on steel path?!`);
1787
1787
}
1788
/*if (operation eight claw is active) {
1788
if (config.worldState?.eightClaw) {
1789
1789
drops.push({
1790
1790
StoreItem: "/Lotus/StoreItems/Types/Gameplay/DuviriMITW/Resources/DuviriMurmurItemEvent",
1791
1791
ItemCount: 10
1792
1792
});
1793
}*/
1793
}
1794
1794
rewardManifests = ["/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriMurmurFinalChestRewards"];
1795
1795
} else if (RewardInfo.T == 19) {
1796
/*if (operation eight claw is active) {
1796
if (config.worldState?.eightClaw) {
1797
1797
drops.push({
1798
1798
StoreItem: "/Lotus/StoreItems/Types/Gameplay/DuviriMITW/Resources/DuviriMurmurItemEvent",
1799
1799
ItemCount: 15
1800
1800
});
1801
}*/
1801
}
1802
1802
rewardManifests = [
1803
1803
"/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriMurmurFinalSteelChestRewards"
1804
1804
];