From 93aa48dfe6cf4237e991aa285999f8afbc52f9b2 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 11 Nov 2024 18:26:58 +0000 Subject: [PATCH] Generated new mongoId for transitionRaidId --- project/src/services/LocationLifecycleService.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/src/services/LocationLifecycleService.ts b/project/src/services/LocationLifecycleService.ts index f5e52c19..98e37bd8 100644 --- a/project/src/services/LocationLifecycleService.ts +++ b/project/src/services/LocationLifecycleService.ts @@ -106,7 +106,7 @@ export class LocationLifecycleService { locationLoot: this.generateLocationAndLoot(request.location, !request.sptSkipLootGeneration), transition: { isLocationTransition: false, - transitionRaidId: "66f5750951530ca5ae09876d", + transitionRaidId: this.hashUtil.generate(), transitionCount: 0, visitedLocations: [], }, @@ -114,7 +114,7 @@ export class LocationLifecycleService { // Only has value when transitioning into map from previous one if (request.transition) { - // TODO - why doesnt the second raid after transit have any transition data? + // TODO - why doesnt the raid after transit have any transition data? result.transition = request.transition; }