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

@ -19,7 +19,7 @@ namespace Server.Items
public virtual int GetEffectHue()
{
int hue = this.Hue & 0x3FFF;
int hue = Hue & 0x3FFF;
if ( hue < 2 )
return 0;
@ -34,7 +34,7 @@ namespace Server.Items
public bool CheckRange( Point3D loc, int range )
{
return ( (this.Z + 8) >= loc.Z && (loc.Z + 16) > this.Z )
return ( (Z + 8) >= loc.Z && (loc.Z + 16) > Z )
&& Utility.InRange( GetWorldLocation(), loc, range );
}