Zandronum Chat on our Discord Server Get the latest version: 3.1
Source Code

View Issue Details Jump to Notes ] Issue History ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0002399Zandronum[All Projects] Bugpublic2015-08-10 13:452015-08-10 16:10
Reporterunknownna 
Assigned To 
PrioritylowSeveritytextReproducibilityalways
StatusconfirmedResolutionopen 
PlatformOSOS Version
Product Version2.1 
Target VersionFixed in Version 
Summary0002399: Windows server console only displays "INVASION" in survival invasion
DescriptionSee attached screenshot.
Attached Filespng file icon screenshot.png [^] (5,537 bytes) 2015-08-10 13:45

- Relationships

-  Notes
User avatar (0013200)
Edward-san (developer)
2015-08-10 16:09
edited on: 2015-08-10 16:10

The simplest fix would be this one:


diff -r 24e58338ada5 src/win32/serverconsole/serverconsole.cpp
--- a/src/win32/serverconsole/serverconsole.cpp lun ago 10 18:00:22 2015 +0200
+++ b/src/win32/serverconsole/serverconsole.cpp lun ago 10 18:09:03 2015 +0200
@@ -1810,7 +1810,10 @@
     }
 
     FString fsMapMode = "";
- fsMapMode.Format( "%s | %s", strupr( GAMEMODE_GetName( GAMEMODE_GetCurrentMode( ))), pszString );
+ if (( GAMEMODE_GetCurrentMode() == GM_INVASION ) && ( sv_maxlives > 0 ))
+ fsMapMode.Format( "SURVIVAL INVASION | %s", pszString );
+ else
+ fsMapMode.Format( "%s | %s", strupr( GAMEMODE_GetName( GAMEMODE_GetCurrentMode( ))), pszString );
     SetDlgItemText( g_hDlg, IDC_MAPMODE, fsMapMode.GetChars( ));
 }
 


But this seems like a hack.


Issue Community Support
Only registered users can voice their support. Click here to register, or here to log in.
Supporters: No one explicitly supports this issue yet.
Opponents: No one explicitly opposes this issue yet.

- Issue History
Date Modified Username Field Change
2015-08-10 13:45 unknownna New Issue
2015-08-10 13:45 unknownna File Added: screenshot.png
2015-08-10 13:46 unknownna Status new => confirmed
2015-08-10 16:09 Edward-san Note Added: 0013200
2015-08-10 16:10 Edward-san Note View State: 0013200: private
2015-08-10 16:10 Edward-san Note View State: 0013200: public
2015-08-10 16:10 Edward-san Note Edited: 0013200 View Revisions






Questions or other issues? Contact Us.

Links


Copyright © 2000 - 2024 MantisBT Team
Powered by Mantis Bugtracker