Fixes body expression style.
This commit is contained in:
parent
3f0a72a62f
commit
33f5e77a24
957 changed files with 7424 additions and 15973 deletions
|
|
@ -30,38 +30,17 @@ namespace Server.Items
|
|||
private Mobile m_Owner;
|
||||
private bool m_Open;
|
||||
|
||||
public override int DefaultMaxWeight
|
||||
{
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
public override int DefaultMaxWeight => 0;
|
||||
|
||||
public override bool IsVirtualItem
|
||||
{
|
||||
get { return true; }
|
||||
}
|
||||
public override bool IsVirtualItem => true;
|
||||
|
||||
public BankBox( Serial serial ) : base( serial )
|
||||
{
|
||||
}
|
||||
|
||||
public Mobile Owner
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_Owner;
|
||||
}
|
||||
}
|
||||
public Mobile Owner => m_Owner;
|
||||
|
||||
public bool Opened
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_Open;
|
||||
}
|
||||
}
|
||||
public bool Opened => m_Open;
|
||||
|
||||
public void Open()
|
||||
{
|
||||
|
|
@ -111,7 +90,9 @@ namespace Server.Items
|
|||
|
||||
private static bool m_SendRemovePacket;
|
||||
|
||||
public static bool SendDeleteOnClose{ get{ return m_SendRemovePacket; } set{ m_SendRemovePacket = value; } }
|
||||
public static bool SendDeleteOnClose{ get => m_SendRemovePacket;
|
||||
set => m_SendRemovePacket = value;
|
||||
}
|
||||
|
||||
public void Close()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue