Removed unnecessary SNOW seasonal event, handled by seasons instead
This commit is contained in:
parent
e728c04865
commit
5a6dd6f5df
@ -714,15 +714,6 @@
|
||||
"startMonth": "1",
|
||||
"endDay": "7",
|
||||
"endMonth": "1"
|
||||
},
|
||||
{
|
||||
"enabled": true,
|
||||
"name": "snow",
|
||||
"type": "SNOW",
|
||||
"startDay": "8",
|
||||
"startMonth": "1",
|
||||
"endDay": "12",
|
||||
"endMonth": "2"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -4,5 +4,4 @@ export enum SeasonalEventType {
|
||||
HALLOWEEN = "Halloween",
|
||||
NEW_YEARS = "NewYears",
|
||||
PROMO = "Promo",
|
||||
SNOW = "Snow",
|
||||
}
|
||||
|
@ -360,13 +360,8 @@ export class SeasonalEventService {
|
||||
this.addGifterBotToMaps();
|
||||
this.addLootItemsToGifterDropItemsList();
|
||||
this.enableDancingTree();
|
||||
this.enableSnow();
|
||||
break;
|
||||
case SeasonalEventType.NEW_YEARS.toLowerCase():
|
||||
this.enableSnow();
|
||||
break;
|
||||
case SeasonalEventType.SNOW.toLowerCase():
|
||||
this.enableSnow();
|
||||
break;
|
||||
default:
|
||||
// Likely a mod event
|
||||
|
Loading…
Reference in New Issue
Block a user