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