From 0c54c064eb1dd8ee26a0eea685f5d0613089400c Mon Sep 17 00:00:00 2001 From: AlexisinGit Date: Fri, 29 Aug 2025 17:36:42 -0700 Subject: [PATCH] fix: Pathos Clamps Upon Isleweave Clearing (#2718) https://wiki.warframe.com/w/Isleweaver#Normal ![image.png](/attachments/ad46e7d2-e28c-47cf-8b13-237a29bc7cc6) Co-authored-by: AlexisinGit <136088944+AlexisinGit@users.noreply.github.com> Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2718 Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com> Co-authored-by: AlexisinGit Co-committed-by: AlexisinGit --- src/services/missionInventoryUpdateService.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/services/missionInventoryUpdateService.ts b/src/services/missionInventoryUpdateService.ts index 7419fcaf..3f3b643c 100644 --- a/src/services/missionInventoryUpdateService.ts +++ b/src/services/missionInventoryUpdateService.ts @@ -1837,6 +1837,10 @@ function getRandomMissionDrops( ItemCount: 10 }); } + drops.push({ + StoreItem: "/Lotus/StoreItems/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem", + ItemCount: 10 + }); rewardManifests = ["/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriMurmurFinalChestRewards"]; } else if (RewardInfo.T == 19) { if (config.worldState?.eightClaw) { @@ -1845,6 +1849,10 @@ function getRandomMissionDrops( ItemCount: 15 }); } + drops.push({ + StoreItem: "/Lotus/StoreItems/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem", + ItemCount: 15 + }); rewardManifests = [ "/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriMurmurFinalSteelChestRewards" ];