From 886305378664728e62f2857a0d60dbfec1f6e905 Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 29 Oct 2024 16:04:54 +0000 Subject: [PATCH] Rename bitcoin for April 1st event --- project/src/services/SeasonalEventService.ts | 7 +++++++ 1 file changed, 7 insertions(+) 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 */