diff --git a/project/src/services/SeasonalEventService.ts b/project/src/services/SeasonalEventService.ts index 0b1bf04e..b3c8a4b1 100644 --- a/project/src/services/SeasonalEventService.ts +++ b/project/src/services/SeasonalEventService.ts @@ -760,8 +760,8 @@ export class SeasonalEventService { } const mapData: ILocation = maps[mapName]; - if (mapData?.base?.BotLocationModifier && "KhorovodChance" in mapData.base.BotLocationModifier) { - mapData.base.BotLocationModifier.KhorovodChance = 100; + if (typeof mapData.base.Events.Khorovod?.Chance !== "undefined") { + mapData.base.Events.Khorovod.Chance = 100; } } }