diff --git a/project/src/services/SeasonalEventService.ts b/project/src/services/SeasonalEventService.ts index 3bf564d2..b44eb6b0 100644 --- a/project/src/services/SeasonalEventService.ts +++ b/project/src/services/SeasonalEventService.ts @@ -756,8 +756,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; } } }