network_server.c
branch0.5
changeset 5370 fb39e4250252
parent 5296 6a4aaa66eed3
child 5421 96c2e24bfe30
--- a/network_server.c	Sat Dec 30 23:14:39 2006 +0000
+++ b/network_server.c	Sat Dec 30 23:20:00 2006 +0000
@@ -862,7 +862,7 @@
 	// Queue the command for the clients (are send at the end of the frame
 	//   if they can handle it ;))
 	FOR_ALL_CLIENTS(new_cs) {
-		if (new_cs->status > STATUS_AUTH) {
+		if (new_cs->status >= STATUS_MAP) {
 			// Callbacks are only send back to the client who sent them in the
 			//  first place. This filters that out.
 			cp->callback = (new_cs != cs) ? 0 : callback;