Avoid WaterCheck crash in base builder

This commit is contained in:
dnqbob
2020-10-09 09:58:39 +08:00
committed by reaperrr
parent 815bbc6ee8
commit ca8341d432
2 changed files with 3 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ namespace OpenRA.Mods.Common
{
public enum BuildingType { Building, Defense, Refinery }
public enum WaterCheck { NotChecked, EnoughWater, NotEnoughWater }
public enum WaterCheck { NotChecked, EnoughWater, NotEnoughWater, DontCheck }
public static class AIUtils
{