Removes implicit this.
This commit is contained in:
parent
04b4cfe75b
commit
83dcf536d8
533 changed files with 2804 additions and 2806 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@
|
|||
public MrPlainsCookies( )
|
||||
: base( 0x160C )
|
||||
{
|
||||
this.Weight = 1.0;
|
||||
this.FillFactor = 4;
|
||||
Weight = 1.0;
|
||||
FillFactor = 4;
|
||||
Hue = 0xF4;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue