network_server.c
changeset 5569 e84e1f365344
parent 5568 75f13d7bfaed
--- a/network_server.c	Tue Dec 26 17:36:18 2006 +0000
+++ b/network_server.c	Tue Dec 26 18:27:40 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;