We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f9b4fa commit ea16f0dCopy full SHA for ea16f0d
cstrike/addons/amxmodx/scripting/map_manager_online_checker.sma
@@ -3,7 +3,7 @@
3
#include <map_manager_scheduler>
4
5
#define PLUGIN "Map Manager: Online checker"
6
-#define VERSION "1.0.3"
+#define VERSION "1.0.4"
7
#define AUTHOR "Sergey Shorokhov"
8
9
#pragma semicolon 1
@@ -48,6 +48,9 @@ public task_check_online()
48
if(is_vote_will_in_next_round() || is_vote_started() || is_vote_finished()) {
49
return;
50
}
51
+ if(is_one_map_mode()) {
52
+ return;
53
+ }
54
if(get_num(CHECKS_COUNT) <= 0) {
55
56
0 commit comments