bool world_already_spawned;
spawnfunc(worldspawn)
{
+#ifdef WATERMARK
+ string watermark_start = cvar_string("sv_watermark_start");
+ if (watermark_start == "") // always true on Xonotic (re)start
+ cvar_set("sv_watermark_start", WATERMARK);
+ else if (watermark_start != WATERMARK) // true when qc code has been recompiled on a different git commit
+ {
+ LOG_INFOF(
+ "\n^1 Warning: ^3the server QC program was updated without a full restart."
+ "\n^3 Please restart the Xonotic executable otherwise you may get random bugs."
+ "\n\n");
+ }
+#endif
+
CheckEngineExtensions();
cvar_set("_endmatch", "0");
set minplayers 0 "fill server with bots to reach this number of players in teamless games (if bot_number is not enough)"
set minplayers_per_team 0 "fill server with bots to reach this number of players per team (if bot_number is not enough)"
+set sv_watermark_start ""
+
// executed when the first player joins or the last player leaves
alias sv_hook_firstjoin
alias sv_hook_lastleave