Ignore:
Timestamp:
Sep 5, 2018, 11:12:14 PM (6 years ago)
Author:
alloc
Message:

Fixed serialization of Player data

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/PersistentData/Players.cs

    r326 r327  
    66        [Serializable]
    77        public class Players {
    8                 private readonly Dictionary<string, Player> players = new CaseInsensitiveStringDictionary<Player> ();
     8                private readonly Dictionary<string, Player> players = new Dictionary<string, Player> (StringComparer.OrdinalIgnoreCase);
    99
    1010                public Player this [string steamId, bool create] {
Note: See TracChangeset for help on using the changeset viewer.