]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - server.h
-Removed Sys_Quit and added Sys_Shutdown which will be called by Host_Shutdown.
[xonotic/darkplaces.git] / server.h
index 90c42bbc518f2b8d9191d5aeec5ca9f6df2d0e4c..d7cfd72751feaafd981d85f74b80824312d5119a 100644 (file)
--- a/server.h
+++ b/server.h
@@ -149,6 +149,10 @@ typedef struct client_s
 
        // visibility state
        float visibletime[MAX_EDICTS];
+
+       // prevent animated names
+       float nametime;
+
 #ifdef QUAKEENTITIES
        // delta compression state
        float nextfullupdate[MAX_EDICTS];
@@ -253,6 +257,11 @@ extern cvar_t sv_aim;
 extern cvar_t sv_stepheight;
 extern cvar_t sv_jumpstep;
 
+extern cvar_t sv_gameplayfix_grenadebouncedownslopes;
+extern cvar_t sv_gameplayfix_noairborncorpse;
+extern cvar_t sv_gameplayfix_stepwhilejumping;
+extern cvar_t sv_gameplayfix_swiminbmodels;
+
 extern mempool_t *sv_clients_mempool;
 extern mempool_t *sv_edicts_mempool;
 
@@ -290,8 +299,10 @@ void SV_AddUpdates (void);
 
 void SV_ClientThink (void);
 
-void SV_ClientPrintf (const char *fmt, ...);
-void SV_BroadcastPrintf (const char *fmt, ...);
+void SV_ClientPrint(const char *msg);
+void SV_ClientPrintf(const char *fmt, ...);
+void SV_BroadcastPrint(const char *msg);
+void SV_BroadcastPrintf(const char *fmt, ...);
 
 void SV_Physics (void);