19 lines
No EOL
346 B
C#
19 lines
No EOL
346 B
C#
namespace Server.Engines.PartySystem
|
|
{
|
|
public class PartyMemberInfo
|
|
{
|
|
private Mobile m_Mobile;
|
|
private bool m_CanLoot;
|
|
|
|
public Mobile Mobile => m_Mobile;
|
|
public bool CanLoot{ get => m_CanLoot;
|
|
set => m_CanLoot = value;
|
|
}
|
|
|
|
public PartyMemberInfo( Mobile m )
|
|
{
|
|
m_Mobile = m;
|
|
m_CanLoot = !Core.ML;
|
|
}
|
|
}
|
|
} |