- Timestamp:
- Aug 30, 2014, 8:08:25 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/CustomCommands/ListLandProtection.cs
r139 r146 59 59 foreach (KeyValuePair<PersistentPlayerData, List<Vector3i>> kvp in owners) { 60 60 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; 66 62 name += " (" + kvp.Key.PlayerId + ")"; 67 63
Note:
See TracChangeset
for help on using the changeset viewer.