Code cleanup (#195)

This commit is contained in:
Kamron Batman 2020-08-16 21:46:54 -07:00 committed by GitHub
parent b476bcfd24
commit 0926b5abaa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
86 changed files with 740 additions and 1635 deletions

View file

@ -601,10 +601,7 @@ namespace Server
}
}
if (highest == null && m_Skills.Length > 0)
highest = this[0];
m_Highest = highest;
m_Highest = highest == null && m_Skills.Length > 0 ? this[0] : highest;
}
return m_Highest;