feat: send jordas precept email when completing pluto to eris junction
All checks were successful
Build / build (pull_request) Successful in 44s
Build / build (push) Successful in 1m23s

This commit is contained in:
Sainan 2025-04-15 23:52:03 +02:00
parent 3165d9f459
commit dc3f246167

View File

@ -629,6 +629,19 @@ export const addMissionRewards = async (
if (node.missionReward) { if (node.missionReward) {
missionCompletionCredits += addFixedLevelRewards(node.missionReward, inventory, MissionRewards); missionCompletionCredits += addFixedLevelRewards(node.missionReward, inventory, MissionRewards);
} }
if (missions.Tag == "PlutoToErisJunction") {
await createMessage(inventory.accountOwnerId, [
{
sndr: "/Lotus/Language/G1Quests/GolemQuestJordasName",
msg: "/Lotus/Language/G1Quests/GolemQuestIntroBody",
att: ["/Lotus/Types/Keys/GolemQuest/GolemQuestKeyChainItem"],
sub: "/Lotus/Language/G1Quests/GolemQuestIntroTitle",
icon: "/Lotus/Interface/Icons/Npcs/JordasPortrait.png",
highPriority: true
}
]);
}
} }
if (rewardInfo.useVaultManifest) { if (rewardInfo.useVaultManifest) {