Fixed casing issue with getLocationFromInfectedLocation()
This commit is contained in:
parent
5851b5fc19
commit
75caa6d989
@ -484,7 +484,7 @@ export class SeasonalEventService {
|
|||||||
infectionHalloween.Enabled = true;
|
infectionHalloween.Enabled = true;
|
||||||
|
|
||||||
for (const infectedLocationKey in zombieSettings.mapInfectionAmount) {
|
for (const infectedLocationKey in zombieSettings.mapInfectionAmount) {
|
||||||
const mappedLocations = this.getLocationFromInfectedLocation(infectedLocationKey.toLowerCase());
|
const mappedLocations = this.getLocationFromInfectedLocation(infectedLocationKey);
|
||||||
|
|
||||||
for (const locationKey of mappedLocations) {
|
for (const locationKey of mappedLocations) {
|
||||||
this.databaseService.getLocation(
|
this.databaseService.getLocation(
|
||||||
@ -521,7 +521,7 @@ export class SeasonalEventService {
|
|||||||
return ["factory4_day", "factory4_night"];
|
return ["factory4_day", "factory4_night"];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (infectedLocationKey === "sandbox") {
|
if (infectedLocationKey === "Sandbox") {
|
||||||
return ["sandbox", "sandbox_high"];
|
return ["sandbox", "sandbox_high"];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user