diff --git a/EDPlayerJournal/Mission.cs b/EDPlayerJournal/Mission.cs index 7ee86c1..0f1f1d7 100644 --- a/EDPlayerJournal/Mission.cs +++ b/EDPlayerJournal/Mission.cs @@ -255,6 +255,18 @@ public class Mission : IComparable { /// public List FactionEffects { get; set; } = new List(); + /// + /// Returns true if the name is an on foot mission. + /// + public bool IsOnFoot { + get { + if (string.IsNullOrEmpty(Name)) { + return false; + } + + return Name.Contains("OnFoot"); + } + } public bool IsPassengerMission { get {