• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

This is a fork of Zandronum Beta for TSPG.


Commit MetaInfo

Revisionb28ddce5f1344cd176f80ad099fb3c690d33c5cc (tree)
Time2021-12-06 10:29:50
AuthorJoshua Surace <doomjoshuaboy@live...>
CommiterJoshua Surace

Log Message

Fixed Spaces for sending server info to TSPG

Change Summary

Incremental Difference

diff -r 9b7d493bffc2 -r b28ddce5f134 src/sv_main.cpp
--- a/src/sv_main.cpp Mon Dec 06 11:56:04 2021 +1100
+++ b/src/sv_main.cpp Mon Dec 06 12:29:50 2021 +1100
@@ -1457,13 +1457,13 @@
14571457 // Send welcome message.
14581458 SERVER_PrintfPlayer( g_lCurrentClient, "\n" );
14591459 SERVER_PrintfPlayer( g_lCurrentClient, TEXTCOLOR_LIGHTBLUE "Welcome to " TEXTCOLOR_WHITE "%s" TEXTCOLOR_LIGHTBLUE "! \n", brandingName );
1460- SERVER_PrintfPlayer( g_lCurrentClient, TEXTCOLOR_LIGHTBLUE "This server is running" TEXTCOLOR_WHITE "%s %s (TSPGv%s)\n", GAMENAME, GetVersionStringRev(), TSPG_VERSION_STR);
1461- SERVER_PrintfPlayer( g_lCurrentClient, TEXTCOLOR_LIGHTBLUE "Compiled on" TEXTCOLOR_WHITE "%s" TEXTCOLOR_LIGHTBLUE "at" TEXTCOLOR_WHITE "%s\n", __DATE__, __TIME__ );
1462- if (owner) SERVER_PrintfPlayer(g_lCurrentClient, TEXTCOLOR_LIGHTBLUE "This server was started by" TEXTCOLOR_WHITE "%s" TEXTCOLOR_LIGHTBLUE "at" TEXTCOLOR_WHITE "%s", owner, g_pszStartupTime);
1463- SERVER_PrintfPlayer(g_lCurrentClient, TEXTCOLOR_LIGHTBLUE "If you wish to host your own server on " TEXTCOLOR_WHITE "%s" TEXTCOLOR_LIGHTBLUE "visit" TEXTCOLOR_WHITE "%s" TEXTCOLOR_LIGHTBLUE "!\n", brandingShort, brandingUrl);
1460+ SERVER_PrintfPlayer( g_lCurrentClient, TEXTCOLOR_LIGHTBLUE "This server is running " TEXTCOLOR_WHITE "%s %s (TSPGv%s)\n", GAMENAME, GetVersionStringRev(), TSPG_VERSION_STR);
1461+ SERVER_PrintfPlayer( g_lCurrentClient, TEXTCOLOR_LIGHTBLUE "Compiled on " TEXTCOLOR_WHITE "%s " TEXTCOLOR_LIGHTBLUE "at " TEXTCOLOR_WHITE "%s\n", __DATE__, __TIME__ );
1462+ if (owner) SERVER_PrintfPlayer(g_lCurrentClient, TEXTCOLOR_LIGHTBLUE "This server was started by " TEXTCOLOR_WHITE "%s" TEXTCOLOR_LIGHTBLUE "at" TEXTCOLOR_WHITE "%s", owner, g_pszStartupTime);
1463+ SERVER_PrintfPlayer(g_lCurrentClient, TEXTCOLOR_LIGHTBLUE "If you wish to host your own server on " TEXTCOLOR_WHITE "%s " TEXTCOLOR_LIGHTBLUE "visit " TEXTCOLOR_WHITE "%s" TEXTCOLOR_LIGHTBLUE "!\n", brandingShort, brandingUrl);
14641464 SERVER_PrintfPlayer(g_lCurrentClient, "\n " TEXTCOLOR_GOLD "Server information:\n");
14651465
1466- SERVER_PrintfPlayer(PRINT_HIGH, g_lCurrentClient, TEXTCOLOR_RED "%s\n", sv_hostname.GetGenericRep(CVAR_String).String);
1466+ SERVER_PrintfPlayer(PRINT_HIGH, g_lCurrentClient, TEXTCOLOR_RED " %s\n", sv_hostname.GetGenericRep(CVAR_String).String);
14671467 SERVER_PrintfPlayer(PRINT_HIGH, g_lCurrentClient, " dmflags=%lu dmflags2=%lu dmflags3=%lu compatflags=%lu compatflags2=%lu\n", (LONG)dmflags, (LONG)dmflags2, (LONG)zadmflags, (LONG)compatflags, (LONG)compatflags2);
14681468 if (instagib)
14691469 SERVER_PrintfPlayer(PRINT_HIGH, g_lCurrentClient, " Instagib mode\n");