Ignore:
Timestamp:
Sep 3, 2014, 12:04:42 PM (10 years ago)
Author:
alloc
Message:

fixes

File:
1 edited

Legend:

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

    r146 r156  
    3535                }
    3636
     37                public Player GetPlayerByClientId (int _clientid)
     38                {
     39                        foreach (Player p in players.Values) {
     40                                if (p.ClientInfo.clientId == _clientid) {
     41                                        return p;
     42                                }
     43                        }
     44                        return null;
     45                }
     46
    3747                public string GetSteamID (string _nameOrId, bool _ignoreColorCodes)
    3848                {
Note: See TracChangeset for help on using the changeset viewer.