Ignore:
Timestamp:
Aug 30, 2014, 8:08:25 PM (10 years ago)
Author:
alloc
Message:

Fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/CustomCommands/ListLandProtection.cs

    r139 r146  
    5959                                        foreach (KeyValuePair<PersistentPlayerData, List<Vector3i>> kvp in owners) {
    6060                                                if (steamIdFilter.Length == 0 || kvp.Key.PlayerId.Equals (steamIdFilter)) {
    61                                                         ClientInfo ci = CommonMappingFunctions.GetClientInfoFromEntityID (kvp.Key.EntityId);
    62                                                         string name = string.Empty;
    63                                                         if (ci != null) {
    64                                                                 name = CommonMappingFunctions.GetPlayerName (ci);
    65                                                         }
     61                                                        string name = PersistentData.PersistentContainer.Instance.Players[kvp.Key.PlayerId].Name;
    6662                                                        name += " (" + kvp.Key.PlayerId + ")";
    6763
Note: See TracChangeset for help on using the changeset viewer.