This commit is contained in:
mark 2009-08-23 05:36:40 +00:00
parent 4933751ac4
commit 4ee6ca5951
3 changed files with 8 additions and 5 deletions

View file

@ -249,7 +249,7 @@ namespace Server.Factions
public int CompareTo( object obj )
{
return m_KillPoints - ((PlayerState)obj).m_KillPoints;
return ((PlayerState)obj).m_KillPoints - m_KillPoints;
}
}
}