-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Server map rotation fails after a while #262
Comments
Did it stay on a map for multiple days? Without change? You might also not have sv_levelTimeReset set. I am not entirely sure if it is the best idea to preserve the value of Related: https://github.com/ec-/Quake3e/blob/master/code/server/sv_main.c#L1249-L1274 |
The server can stay up without a map change for multiple days, though not typically 23 as mentioned in the first link. However, I've observed the problem even with clients on the server reaching I'll try setting |
Have you considered using the ec-/baseq3a mod? It has fixes plus also a replacement system for map rotation iirc. |
Oh nice, I will look into it. Thanks. |
I wouldn't bother supporting vanilla q3 qvms for anything other than 'authenticity' as it has a LOT of bugs and unpatched vulnerabilities, consider using baseq3a mod with dedicated rotation system |
To be clear, isn't vanilla qvm support important for mod compatibility? Mods based on the vanilla game may not implement every patch but it's still useful for the engine to support them as well as possible. |
From what I can tell, this looks like a valid engine bug. In quake3e, SV_Restart is invoked automatically due to time overflow conditions, which calls the map console command, which calls SV_SpawnServer, which resets the nextmap cvar and breaks the rotation. In vanilla q3, it looks like the reset is done via vstr nextmap instead which allows the rotation to update nextmap and preserve itself. I'd suggest that SV_Restart should not alter the nextmap cvar. Additionally, if there is any compatibility reason to keep the nextmap reset in SV_SpawnServer at all, it would probably be good if there was at least a cvar option to disable it to allow a setup where a standard rcon map command doesn't automatically break the rotation. |
For reference, it looks like cnq3 does not reset or touch nextmap at all. |
I'm running a server with
quake3e.ded
. I have a map rotation set up. After some period of time,nextmap
becomes set tomap_restart 0
and the maps stop rotating. This is similar to #203, but I'm running vanilla Quake 3.Here's my
maps.cfg
which I load from the command line with+exec maps.cfg
:At server launch,
nextmap
is correctly set tovstr d2
. Here'snextmap
after the server has been running for some long period of time (not sure how long precisely):The text was updated successfully, but these errors were encountered: