Index: binary-improvements/7dtd-server-fixes/src/CustomCommands/Kill.cs
===================================================================
--- binary-improvements/7dtd-server-fixes/src/CustomCommands/Kill.cs	(revision 202)
+++ binary-improvements/7dtd-server-fixes/src/CustomCommands/Kill.cs	(revision 203)
@@ -36,5 +36,5 @@
 
 				EntityPlayer p = CommonMappingFunctions.GetEntityPlayer (ci);
-				p.DamageEntity (new DamageSource (EnumDamageSourceType.Bullet), 9999);
+				p.DamageEntity (new DamageSource (EnumDamageSourceType.Bullet), 9999, false);
 				m_Console.SendResult ("Killed player " + _params [0]);
 			} catch (Exception e) {
Index: binary-improvements/7dtd-server-fixes/src/CustomCommands/ListPlayersExtended.cs
===================================================================
--- binary-improvements/7dtd-server-fixes/src/CustomCommands/ListPlayersExtended.cs	(revision 202)
+++ binary-improvements/7dtd-server-fixes/src/CustomCommands/ListPlayersExtended.cs	(revision 203)
@@ -36,5 +36,5 @@
 							++num,
 							". id=",
-							current.Value.fd008e,
+//							current.Value.4E2AA,
 							", ",
 							current.Value.EntityName,
@@ -44,5 +44,5 @@
 							current.Value.rotation,
 							", remote=",
-							current.Value.fd00b1,
+//							current.Value.fd00b1,
 							", health=",
 							current.Value.Health,
Index: binary-improvements/7dtd-server-fixes/src/CustomCommands/TeleportPlayer.cs
===================================================================
--- binary-improvements/7dtd-server-fixes/src/CustomCommands/TeleportPlayer.cs	(revision 202)
+++ binary-improvements/7dtd-server-fixes/src/CustomCommands/TeleportPlayer.cs	(revision 203)
@@ -2,4 +2,5 @@
 using System;
 using System.Collections.Generic;
+using System.Reflection;
 using UnityEngine;
 
@@ -8,6 +9,19 @@
 	public class TeleportPlayer : ConsoleCommand
 	{
+		private MethodInfo NetConnection_SendPackage = null;
+
 		public TeleportPlayer (ConsoleSdtd cons) : base(cons)
 		{
+			Type typeClientInfo = Assembly.GetAssembly (typeof(ClientInfo)).GetType ("ClientInfo");
+			Type typeNetConnection = typeClientInfo.GetField ("netConnection").FieldType.GetElementType ();
+			MethodInfo[] mis = typeNetConnection.GetMethods ();
+			foreach (MethodInfo mi in mis) {
+				ParameterInfo[] pis = mi.GetParameters ();
+				if (pis.Length == 1) {
+					if (typeof (Package).Equals (pis[0].ParameterType)) {
+						NetConnection_SendPackage = mi;
+					}
+				}
+			}
 		}
 
@@ -72,5 +86,7 @@
 					NetPackage_EntityPosAndRot pkg = new NetPackage_EntityPosAndRot (p1.Entity);
 
-					p1.ClientInfo.netConnection [0].Send (pkg);
+					if (NetConnection_SendPackage != null) {
+						NetConnection_SendPackage.Invoke (p1.ClientInfo.netConnection [0], new object[] {pkg});
+					}
 				}
 			} catch (Exception e) {
