]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - server.h
Fix nasty typo in a dpsnprintf causing truncated cmds. Memory safety? PFFT (/s)
[xonotic/darkplaces.git] / server.h
index 34aa79dfd2f349216a9ce7ebbe94cc1080258501..d83c908bf92725b67448d25ddc7676687ebfafac 100644 (file)
--- a/server.h
+++ b/server.h
@@ -611,7 +611,17 @@ void SV_StopThread(void);
 
 void VM_CustomStats_Clear(void);
 void VM_SV_UpdateCustomStats(client_t *client, prvm_edict_t *ent, sizebuf_t *msg, int *stats);
+
+void SV_InitOperatorCommands(void);
+
 void SV_Savegame_to(prvm_prog_t *prog, const char *name);
+void SV_Savegame_f(cmd_state_t *cmd);
+void SV_Loadgame_f(cmd_state_t *cmd);
+
+void SV_PreSpawn_f(cmd_state_t *cmd);
+void SV_Spawn_f(cmd_state_t *cmd);
+void SV_Begin_f(cmd_state_t *cmd);
+
 void SV_SendServerinfo(client_t *client);
 
 #endif