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: handle new T value for orowyrm chest (#2527)

Closes #2526 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2527 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>

ddf3cd49
Sainan <63328889+Sainan@users.noreply.github.com>
提交于

代码差异

1 个文件 +4 -1
Modified src/services/missionInventoryUpdateService.ts +4 -1
@@ -1635,7 +1635,10 @@ function getRandomMissionDrops(
1635 1635 rewardManifests = [
1636 1636 "/Lotus/Types/Game/MissionDecks/DuviriEncounterRewards/DuviriMurmurFinalSteelChestRewards"
1637 1637 ];
1638 } else if (RewardInfo.T == 70) {
1638 } else if (
1639 RewardInfo.T == 70 ||
1640 RewardInfo.T == 6 // https://onlyg.it/OpenWF/SpaceNinjaServer/issues/2526
1641 ) {
1639 1642 // Orowyrm chest, gives 10 Pathos Clamps, or 15 on Steel Path.
1640 1643 drops.push({
1641 1644 StoreItem: "/Lotus/StoreItems/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem",