Ignore:
Timestamp:
May 18, 2016, 4:56:14 PM (8 years ago)
Author:
alloc
Message:

fixes 8_11_13_1

File:
1 edited

Legend:

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

    r253 r276  
    1212                public Player this [string steamId, bool create] {
    1313                        get {
    14                                 if (players.ContainsKey (steamId)) {
     14                                if (string.IsNullOrEmpty (steamId)) {
     15                                        return null;
     16                                } else if (players.ContainsKey (steamId)) {
    1517                                        return players [steamId];
    1618                                } else {
Note: See TracChangeset for help on using the changeset viewer.