# HG changeset patch # User Adam Kaminski # Date 1643255636 18000 # Wed Jan 26 22:53:56 2022 -0500 # Node ID 9b4137e5ae0526ab3ebf260995b5e9d5abe53ee2 # Parent 8aa7be4719790f1c082916d27a0b935123f156ea Fixed: clients didn't clear their maplist first when reconnecting to the server via the "map" CCMD. diff -r 8aa7be471979 -r 9b4137e5ae05 src/cl_main.cpp --- a/src/cl_main.cpp Wed Jan 19 18:21:15 2022 -0500 +++ b/src/cl_main.cpp Wed Jan 26 22:53:56 2022 -0500 @@ -7023,6 +7023,9 @@ if ( M_InServerSetupMenu( )) M_ClearMenus( ); + // [AK] Reset the map rotation before reconnecting to the server. + MAPROTATION_Construct( ); + // Clear out our local buffer. g_LocalBuffer.Clear();