Fixes casting checks

This commit is contained in:
Kamron Batman 2018-08-19 01:38:55 +08:00
parent 7ea00fbf4f
commit 03dd5f1926
431 changed files with 5616 additions and 6250 deletions

View file

@ -348,7 +348,7 @@ namespace Server.Misc
if ( (from.LastStrGain + m_PetStatGainDelay) >= DateTime.UtcNow )
return;
}
else if( (from.LastStrGain + m_StatGainDelay) >= DateTime.UtcNow )
else if ( (from.LastStrGain + m_StatGainDelay) >= DateTime.UtcNow )
return;
from.LastStrGain = DateTime.UtcNow;
@ -360,7 +360,7 @@ namespace Server.Misc
if ( (from.LastDexGain + m_PetStatGainDelay) >= DateTime.UtcNow )
return;
}
else if( (from.LastDexGain + m_StatGainDelay) >= DateTime.UtcNow )
else if ( (from.LastDexGain + m_StatGainDelay) >= DateTime.UtcNow )
return;
from.LastDexGain = DateTime.UtcNow;
@ -373,7 +373,7 @@ namespace Server.Misc
return;
}
else if( (from.LastIntGain + m_StatGainDelay) >= DateTime.UtcNow )
else if ( (from.LastIntGain + m_StatGainDelay) >= DateTime.UtcNow )
return;
from.LastIntGain = DateTime.UtcNow;
@ -386,4 +386,4 @@ namespace Server.Misc
IncreaseStat( from, stat, atrophy );
}
}
}
}