Removes implicit this.

This commit is contained in:
Kamron Batman 2018-09-14 12:56:58 -07:00
parent 04b4cfe75b
commit 83dcf536d8
533 changed files with 2804 additions and 2806 deletions

View file

@ -120,7 +120,7 @@ namespace Server.Engines.Events
public static void Bleeding( Mobile m_From )
{
if ( TrickOrTreat.CheckMobile( m_From ) )
if ( CheckMobile( m_From ) )
{
if ( m_From.Location != Point3D.Zero )
{
@ -201,7 +201,7 @@ namespace Server.Engines.Events
public static void DeleteTwin( Mobile m_Twin )
{
if ( TrickOrTreat.CheckMobile( m_Twin ) )
if ( CheckMobile( m_Twin ) )
{
m_Twin.Delete();
}

View file

@ -19,7 +19,7 @@ namespace Server.Items
public override void OnDoubleClick( Mobile from )
{
if ( !from.InRange( this.GetWorldLocation(), 2 ) )
if ( !from.InRange( GetWorldLocation(), 2 ) )
return;
bool douse = false;

View file

@ -8,8 +8,8 @@
public MrPlainsCookies( )
: base( 0x160C )
{
this.Weight = 1.0;
this.FillFactor = 4;
Weight = 1.0;
FillFactor = 4;
Hue = 0xF4;
}