mirror of
https://github.com/psforever/PSF-LoginServer.git
synced 2026-04-29 16:25:30 +00:00
Fix for map not updating with flag when cavern CC is hacked (resolves #448)
This commit is contained in:
parent
348fa86a40
commit
0ff24feffc
1 changed files with 1 additions and 1 deletions
|
|
@ -233,7 +233,7 @@ object Zones {
|
||||||
val structureType =
|
val structureType =
|
||||||
if (towerTypes.contains(structure.objectType) || structure.objectType == "redoubt")
|
if (towerTypes.contains(structure.objectType) || structure.objectType == "redoubt")
|
||||||
StructureType.Tower
|
StructureType.Tower
|
||||||
else if (facilityTypes.contains(structure.objectType))
|
else if (facilityTypes.contains(structure.objectType) || cavernBuildingTypes.contains(structure.objectType))
|
||||||
StructureType.Facility
|
StructureType.Facility
|
||||||
else if (bunkerTypes.contains(structure.objectType))
|
else if (bunkerTypes.contains(structure.objectType))
|
||||||
StructureType.Bunker
|
StructureType.Bunker
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue