Index: binary-improvements/7dtd-server-fixes/src/CustomCommands/ListLandProtection.cs
===================================================================
--- binary-improvements/7dtd-server-fixes/src/CustomCommands/ListLandProtection.cs	(revision 145)
+++ binary-improvements/7dtd-server-fixes/src/CustomCommands/ListLandProtection.cs	(revision 146)
@@ -59,9 +59,5 @@
 					foreach (KeyValuePair<PersistentPlayerData, List<Vector3i>> kvp in owners) {
 						if (steamIdFilter.Length == 0 || kvp.Key.PlayerId.Equals (steamIdFilter)) {
-							ClientInfo ci = CommonMappingFunctions.GetClientInfoFromEntityID (kvp.Key.EntityId);
-							string name = string.Empty;
-							if (ci != null) {
-								name = CommonMappingFunctions.GetPlayerName (ci);
-							}
+							string name = PersistentData.PersistentContainer.Instance.Players[kvp.Key.PlayerId].Name;
 							name += " (" + kvp.Key.PlayerId + ")";
 
