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

@ -125,7 +125,7 @@ namespace Server.Engines.Quests
public virtual void BaseDeserialize( GenericReader reader )
{
Type[] referenceTable = this.TypeReferenceTable;
Type[] referenceTable = TypeReferenceTable;
int version = reader.ReadEncodedInt();
@ -177,7 +177,7 @@ namespace Server.Engines.Quests
public virtual void BaseSerialize( GenericWriter writer )
{
Type[] referenceTable = this.TypeReferenceTable;
Type[] referenceTable = TypeReferenceTable;
writer.WriteEncodedInt( (int) 0 ); // version
@ -315,7 +315,7 @@ namespace Server.Engines.Quests
{
m_From.Quest = null;
TimeSpan restartDelay = this.RestartDelay;
TimeSpan restartDelay = RestartDelay;
if ( ( completed && restartDelay > TimeSpan.Zero ) || ( !completed && restartDelay == TimeSpan.MaxValue ) )
{
@ -326,7 +326,7 @@ namespace Server.Engines.Quests
bool found = false;
Type ourQuestType = this.GetType();
Type ourQuestType = GetType();
for ( int i = 0; i < doneQuests.Count; ++i )
{