}
}
-NET_HANDLE(TE_CSQC_SERVERINFO, bool isNew)
+NET_HANDLE(TE_CSQC_SERVERWELCOME, bool isNew)
{
bool campaign = ReadByte();
if (campaign)
string msg = "";
msg = strcat(msg, ver);
- msg = strcat(msg, "^8\n\n", sprintf(_("Game type: ^1%s"), MapInfo_Type_ToText(gametype)), "^8\n");
+ msg = strcat(msg, "^8\n\n", strcat(_("Gametype:"), " ^1", MapInfo_Type_ToText(gametype)), "^8\n");
if(modifications != "")
msg = strcat(msg, "^8\n", _("Active modifications:"), " ^3", modifications, "^8\n");
if (cache_mutatormsg != "")
REGISTER_NET_TEMP(TE_CSQC_TEAMNAGGER)
REGISTER_NET_TEMP(TE_CSQC_PINGPLREPORT)
REGISTER_NET_TEMP(TE_CSQC_WEAPONCOMPLAIN)
-REGISTER_NET_TEMP(TE_CSQC_SERVERINFO)
+REGISTER_NET_TEMP(TE_CSQC_SERVERWELCOME)
REGISTER_NET_TEMP(TE_CSQC_VEHICLESETUP)
const int RACE_NET_CHECKPOINT_HIT_QUALIFYING = 0; // byte checkpoint, short time, short recordtime, string recordholder
void SendWelcomemessage(entity this, bool force_centerprint)
{
msg_entity = this;
- WriteHeader(MSG_ONE, TE_CSQC_SERVERINFO);
+ WriteHeader(MSG_ONE, TE_CSQC_SERVERWELCOME);
WriteByte(MSG_ONE, boolean(autocvar_g_campaign));
if (boolean(autocvar_g_campaign))
{