ModernUO/Projects/Scripts/Engines/Party/PartyMemberInfo.cs
2020-04-26 00:16:02 -07:00

15 lines
No EOL
260 B
C#

namespace Server.Engines.PartySystem
{
public class PartyMemberInfo
{
public PartyMemberInfo(Mobile m)
{
Mobile = m;
CanLoot = !Core.ML;
}
public Mobile Mobile { get; }
public bool CanLoot { get; set; }
}
}