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

@ -57,7 +57,7 @@ namespace Server.Items
{
get
{
switch ( this.ItemID )
switch ( ItemID )
{
case 0xDE3:
return CampfireStatus.Burning;
@ -71,24 +71,24 @@ namespace Server.Items
}
set
{
if ( this.Status == value )
if ( Status == value )
return;
switch ( value )
{
case CampfireStatus.Burning:
this.ItemID = 0xDE3;
this.Light = LightType.Circle300;
ItemID = 0xDE3;
Light = LightType.Circle300;
break;
case CampfireStatus.Extinguishing:
this.ItemID = 0xDE9;
this.Light = LightType.Circle150;
ItemID = 0xDE9;
Light = LightType.Circle150;
break;
default:
this.ItemID = 0xDEA;
this.Light = LightType.ArchedWindowEast;
ItemID = 0xDEA;
Light = LightType.ArchedWindowEast;
ClearEntries();
break;
}
@ -98,16 +98,16 @@ namespace Server.Items
private void OnTick()
{
DateTime now = DateTime.UtcNow;
TimeSpan age = now - this.Created;
TimeSpan age = now - Created;
if ( age >= TimeSpan.FromSeconds( 100.0 ) )
this.Delete();
Delete();
else if ( age >= TimeSpan.FromSeconds( 90.0 ) )
this.Status = CampfireStatus.Off;
Status = CampfireStatus.Off;
else if ( age >= TimeSpan.FromSeconds( 60.0 ) )
this.Status = CampfireStatus.Extinguishing;
Status = CampfireStatus.Extinguishing;
if ( this.Status == CampfireStatus.Off || this.Deleted )
if ( Status == CampfireStatus.Off || Deleted )
return;
foreach ( CampfireEntry entry in new ArrayList( m_Entries ) )
@ -123,7 +123,7 @@ namespace Server.Items
}
}
IPooledEnumerable<NetState> eable = this.GetClientsInRange( SecureRange );
IPooledEnumerable<NetState> eable = GetClientsInRange( SecureRange );
foreach ( NetState state in eable )
{
@ -172,7 +172,7 @@ namespace Server.Items
int version = reader.ReadInt();
this.Delete();
Delete();
}
}