mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-01-20 02:24:45 +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
|
|
@ -233,7 +233,7 @@ object Zones {
|
|||
val structureType =
|
||||
if (towerTypes.contains(structure.objectType) || structure.objectType == "redoubt")
|
||||
StructureType.Tower
|
||||
else if (facilityTypes.contains(structure.objectType))
|
||||
else if (facilityTypes.contains(structure.objectType) || cavernBuildingTypes.contains(structure.objectType))
|
||||
StructureType.Facility
|
||||
else if (bunkerTypes.contains(structure.objectType))
|
||||
StructureType.Bunker
|
||||
|
|
|
|||
Loading…
Reference in a new issue