Code cleanup (#195)
This commit is contained in:
parent
b476bcfd24
commit
0926b5abaa
86 changed files with 740 additions and 1635 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue