From 98a079fa4c0fc74aa1a9d76efebae4aaa76bd21f Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 27 Sep 2024 08:45:26 +0100 Subject: [PATCH] Set `IStartLocalRaidResponseData` `transition` data correctly --- project/src/services/LocationLifecycleService.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/project/src/services/LocationLifecycleService.ts b/project/src/services/LocationLifecycleService.ts index cab5153a..f07d6e3b 100644 --- a/project/src/services/LocationLifecycleService.ts +++ b/project/src/services/LocationLifecycleService.ts @@ -105,6 +105,11 @@ export class LocationLifecycleService { }, }; + // Only has value when transitioning into map from previous one + if (request.transition) { + result.transition = request.transition; + } + // Apply changes from pmcConfig to bot hostility values this.adjustBotHostilitySettings(result.locationLoot);