Closed fysiks1 closed 3 years ago
Creating CVAR with 2 min max brought back the Final Scores on Capture the Flag.
@djearthquake simply creating the cvar doesn't actually fix anything because the server or a plugin would need to implement the mp_chattime functionality (which I'm not sure is possible for all games).
All mods have it except base Half-Life. Final Stats from Opposing Force Capture The Flag is restored. There's no functionality to implement. There's 2 min to spare really once time shows as 0.
In amxmodx-1.8.2, the default value for
chattime
is 0.0 when the mp_chattime cvar doesn't exist. However, in 64327b8ddb8db2b2c27d52e09ce03ec0737ccf3a the default value was changed to 10.0. This breaks map change functionality in games that don't have mp_chattime because we can't know how long the built-in delay is between intermission (event 30) and the normal map change functionality. For example, in Opposing Forces, the server will change the map beforedelayedChange()
is called due to it being delayed for 10 seconds.