Rename bitcoin for April 1st event

This commit is contained in:
Dev 2024-10-29 16:04:54 +00:00
parent a429639fb8
commit 8863053786

View File

@ -376,6 +376,7 @@ export class SeasonalEventService {
this.addEventBossesToMaps(SeasonalEventType.HALLOWEEN); this.addEventBossesToMaps(SeasonalEventType.HALLOWEEN);
this.enableHalloweenSummonEvent(); this.enableHalloweenSummonEvent();
this.addPumpkinsToScavBackpacks(); this.addPumpkinsToScavBackpacks();
this.renameBitcoin();
this.enableSnow(); this.enableSnow();
break; break;
default: default:
@ -539,6 +540,12 @@ export class SeasonalEventService {
] = 400; ] = 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 * Set Khorovod(dancing tree) chance to 100% on all maps that support it
*/ */