This is a fork of Zandronum used on servers hosted by The Sentinels Playground (TSPG).
Revision | 9afecc3eee654afc833414bc66bad352041844f8 (tree) |
---|---|
Time | 2021-09-29 23:15:50 |
Author | Joshua Surace <doomjoshuaboy@gmai...> |
Commiter | Joshua Surace |
Fixed Compile error again
@@ -288,17 +288,11 @@ | ||
288 | 288 | CVAR( Bool, sv_forcelogintojoin, false, CVAR_ARCHIVE|CVAR_NOSETBYACS ) |
289 | 289 | CVAR( Bool, sv_useticbuffer, true, CVAR_ARCHIVE|CVAR_NOSETBYACS|CVAR_DEBUGONLY ) |
290 | 290 | CVAR( Int, sv_showcommands, 0, CVAR_ARCHIVE|CVAR_DEBUGONLY ) |
291 | -CVAR( Bool, sv_logticbufferdebuginfo, false, CVAR_ARCHIVE|CVAR_NOSETBYACS|CVAR_DEBUGONLY ) | |
292 | 291 | |
293 | 292 | CVAR( String, tspg_branding_name, "The Sentinel's Playground", CVAR_SERVERINFO|TSPG_NOSET ); |
294 | 293 | CVAR( String, tspg_branding_short, "TSPG", CVAR_SERVERINFO|TSPG_NOSET ); |
295 | 294 | CVAR( String, tspg_branding_url, "https://allfearthesentinel.net", CVAR_SERVERINFO|TSPG_NOSET ); |
296 | 295 | |
297 | -// [TSPG] | |
298 | -#if defined( SERVER_ONLY ) && defined( SERVER_BLACKLIST ) | |
299 | -CUSTOM_CVAR( String, sv_adminlistfile, "adminlist.txt", CVAR_ARCHIVE|CVAR_NOSETBYACS|CVAR_NOSET ) | |
300 | -#else | |
301 | -#endif | |
302 | 296 | //***************************************************************************** |
303 | 297 | // [AK] Smooths the movement of lagging players using extrapolation and correction. |
304 | 298 | CUSTOM_CVAR( Bool, sv_smoothplayers, false, CVAR_ARCHIVE|CVAR_NOSETBYACS|CVAR_SERVERINFO ) |
@@ -337,7 +331,12 @@ | ||
337 | 331 | self = 0; |
338 | 332 | } |
339 | 333 | |
340 | -CUSTOM_CVAR( String, sv_adminlistfile, "adminlist.txt", CVAR_ARCHIVE|CVAR_SENSITIVESERVERSETTING|CVAR_NOSETBYACS ) | |
334 | +// [TSPG] | |
335 | +#if defined( SERVER_ONLY ) && defined( SERVER_BLACKLIST ) | |
336 | +CUSTOM_CVAR( String, sv_adminlistfile, "adminlist.txt", CVAR_ARCHIVE|CVAR_NOSETBYACS|CVAR_NOSET ) | |
337 | +#else | |
338 | +CUSTOM_CVAR( String, sv_adminlistfile, "adminlist.txt", CVAR_ARCHIVE|CVAR_SENSITIVESERVERSETTING|CVAR_NOSETBYACS) | |
339 | +#endif | |
341 | 340 | { |
342 | 341 | if ( NETWORK_GetState( ) != NETSTATE_SERVER ) |
343 | 342 | return; |