Index: qcsrc/server/gamecommand.qc
===================================================================
--- qcsrc/server/gamecommand.qc.orig	2009-07-09 13:11:29.000000000 +0200
+++ qcsrc/server/gamecommand.qc	2009-07-09 13:12:38.000000000 +0200
@@ -583,6 +583,24 @@
 	string s;
 	argc = tokenize_console(command);
 
+	if(argv(0) == "stuffto") if(argc == 3)
+	{
+		entity rbi_client;
+		float rbi_entno;
+		rbi_entno = stof(argv(1));
+		rbi_client = world;
+		if(rbi_entno <= maxclients)
+			rbi_client = edict_num(rbi_entno);
+		if(rbi_client.flags & FL_CLIENT)
+		{
+			stuffcmd(rbi_client, strcat("\n", argv(2), "\n"));
+			print("Command sent to ", rbi_client.netname, "\n");
+		}
+		else
+			print("client not found\n");
+		return;
+	}
+
 	if(argv(0) == "help" || argc == 0)
 	{
 		print("Usage: sv_cmd COMMAND..., where possible commands are:\n");
