- Timestamp:
- Apr 30, 2015, 1:55:16 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/AllocsCommands/Commands/ListLandProtection.cs
r230 r233 86 86 foreach (KeyValuePair<PersistentPlayerData, List<Vector3i>> kvp in owners) { 87 87 if (steamIdFilter.Length == 0 || kvp.Key.PlayerId.Equals (steamIdFilter)) { 88 string name = PersistentData.PersistentContainer.Instance.Players [kvp.Key.PlayerId].Name; 88 PersistentData.Player p = PersistentData.PersistentContainer.Instance.Players [kvp.Key.PlayerId, false]; 89 string name = string.Empty; 90 if (p != null) { 91 name = p.Name; 92 } 89 93 name += " (" + kvp.Key.PlayerId + ")"; 90 94
Note:
See TracChangeset
for help on using the changeset viewer.