ModernUO/Scripts/Engines/Party/PartyMemberInfo.cs

15 lines
No EOL
243 B
C#

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