about summary refs log tree commit diff
path: root/src/game/server
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/server')
-rw-r--r--src/game/server/gs_server.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game/server/gs_server.cpp b/src/game/server/gs_server.cpp
index c37dac01..bb1b40bb 100644
--- a/src/game/server/gs_server.cpp
+++ b/src/game/server/gs_server.cpp
@@ -2138,6 +2138,12 @@ void mods_connected(int client_id)
 		else
 			players[client_id].team = gameobj->getteam(client_id);
 	}
+	
+	
+	msg_pack_start(MSG_MOTD, MSGFLAG_VITAL);
+	msg_pack_string(config.sv_motd, 900);
+	msg_pack_end();
+	server_send_msg(client_id);
 }
 
 void mods_client_drop(int client_id)