Sets a default parameter for OnHit. More casting cleanup.
This commit is contained in:
parent
74f498c1c8
commit
d6c0bf2d4c
96 changed files with 350 additions and 579 deletions
|
|
@ -126,8 +126,7 @@ namespace Server.Items
|
|||
else if ( m_Duration != TimeSpan.Zero )
|
||||
m_Duration = m_End - DateTime.UtcNow;
|
||||
|
||||
if ( m_Timer != null )
|
||||
m_Timer.Stop();
|
||||
m_Timer?.Stop();
|
||||
|
||||
PlayUnlitSound();
|
||||
}
|
||||
|
|
@ -142,8 +141,7 @@ namespace Server.Items
|
|||
{
|
||||
m_Duration = delay;
|
||||
|
||||
if ( m_Timer != null )
|
||||
m_Timer.Stop();
|
||||
m_Timer?.Stop();
|
||||
|
||||
if ( delay == TimeSpan.Zero )
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue