using ACE.Entity.Enum.Properties; namespace ACE.Server.WorldObjects { /// /// Monster-specific properties /// partial class Creature { public int AiOptions { get => GetProperty(PropertyInt.AiOptions) ?? 0; set { if (value == 0) RemoveProperty(PropertyInt.AiOptions); else SetProperty(PropertyInt.AiOptions, value); } } } }