diff --git a/project/src/services/SeasonalEventService.ts b/project/src/services/SeasonalEventService.ts index 8f08e173..cc945a1e 100644 --- a/project/src/services/SeasonalEventService.ts +++ b/project/src/services/SeasonalEventService.ts @@ -376,6 +376,7 @@ export class SeasonalEventService { this.addEventBossesToMaps(SeasonalEventType.HALLOWEEN); this.enableHalloweenSummonEvent(); this.addPumpkinsToScavBackpacks(); + this.renameBitcoin(); this.enableSnow(); break; default: @@ -539,6 +540,12 @@ export class SeasonalEventService { ] = 400; } + protected renameBitcoin(): void { + const enLocale = this.databaseService.getLocales().global.en; + enLocale[`${ItemTpl.BARTER_PHYSICAL_BITCOIN} Name`] = "Physical SPT Coin"; + enLocale[`${ItemTpl.BARTER_PHYSICAL_BITCOIN} ShortName`] = "0.2SPT"; + } + /** * Set Khorovod(dancing tree) chance to 100% on all maps that support it */