diff --git a/project/src/controllers/BotController.ts b/project/src/controllers/BotController.ts index e8acd4b8..87e0ebee 100644 --- a/project/src/controllers/BotController.ts +++ b/project/src/controllers/BotController.ts @@ -453,7 +453,7 @@ export class BotController { protected getPmcConversionMinMaxForLocation(requestedBotRole: string, location: string) { const mapSpecificConversionValues = this.pmcConfig.convertIntoPmcChance[location?.toLowerCase()]; if (!mapSpecificConversionValues) { - return mapSpecificConversionValues.default; + return this.pmcConfig.convertIntoPmcChance.default; } return mapSpecificConversionValues[requestedBotRole?.toLowerCase()];