• 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

Commit MetaInfo

Revisión29ca4865441a155d227faf5f85938d87874552fd (tree)
Tiempo2021-10-27 23:10:41
AutorAdam Kaminski <kaminskiadam9@gmai...>
CommiterAdam Kaminski

Log Message

Fixed the wiki links under the help tab in the server console window.

Cambiar Resumen

Diferencia incremental

diff -r b2481d649f59 -r 29ca4865441a src/version.h
--- a/src/version.h Wed Oct 27 10:09:49 2021 -0400
+++ b/src/version.h Wed Oct 27 10:10:41 2021 -0400
@@ -126,6 +126,7 @@
126126 #define DOMAIN_NAME "zandronum.com"
127127 #define FORUM_URL "https://" DOMAIN_NAME "/forum/"
128128 #define BUGS_FORUM_URL "https://" DOMAIN_NAME "/tracker/"
129+#define WIKI_URL "https://wiki." DOMAIN_NAME "/"
129130
130131 // [BC] This is what's displayed as the title for server windows.
131132 #define SERVERCONSOLE_TITLESTRING GAMENAME " v" DOTVERSIONSTR " Server"
diff -r b2481d649f59 -r 29ca4865441a src/win32/serverconsole/serverconsole.cpp
--- a/src/win32/serverconsole/serverconsole.cpp Wed Oct 27 10:09:49 2021 -0400
+++ b/src/win32/serverconsole/serverconsole.cpp Wed Oct 27 10:10:41 2021 -0400
@@ -455,23 +455,23 @@
455455 break;
456456 case IDM_HOW_TO_USE1:
457457
458- I_RunProgram( "http://" DOMAIN_NAME "/wiki/How_to_use_the_Skulltag_Server" );
458+ I_RunProgram( WIKI_URL "Moderating_Game_Servers" );
459459 break;
460460 case IDM_COMMAND_REFERENCE1:
461461
462- I_RunProgram( "http://" DOMAIN_NAME "/wiki/Commands" );
462+ I_RunProgram( WIKI_URL "Console_Commands" );
463463 break;
464464 case IDM_DMFLAGS1:
465465
466- I_RunProgram( "http://" DOMAIN_NAME "/wiki/DMFlags" );
466+ I_RunProgram( WIKI_URL "DMFlags" );
467467 break;
468468 case IDM_GAME_MODES1:
469469
470- I_RunProgram( "http://" DOMAIN_NAME "/wiki/Game_Modes" );
470+ I_RunProgram( WIKI_URL "Game_Modes" );
471471 break;
472472 case IDM_NOBODY_CAN_SEE_MY_SERVER_1:
473473
474- I_RunProgram( "http://" DOMAIN_NAME "/wiki/Port_Forwarding" );
474+ I_RunProgram( WIKI_URL "Port_Forwarding" );
475475 break;
476476 case IDR_JOIN_SERVER:
477477