diff --git a/MapCellOccupant.cs b/MapCellOccupant.cs index 4cdbac0..7b44cc0 100644 --- a/MapCellOccupant.cs +++ b/MapCellOccupant.cs @@ -8,9 +8,9 @@ public partial class MapCellOccupant : HoverableNode public Disposition _disposition = Disposition.NONE; public enum Disposition { - NONE = -99, + NONE = 0, FRIENDLY = 1, - NEUTRAL = 0, - HOSTILE = -1 + HOSTILE = -1, + NEUTRAL = -2 } }