Skip to content

Commit

Permalink
online_checker: ignore in one map mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Mistrick committed Apr 18, 2024
1 parent 6f9b4fa commit ea16f0d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <map_manager_scheduler>

#define PLUGIN "Map Manager: Online checker"
#define VERSION "1.0.3"
#define VERSION "1.0.4"
#define AUTHOR "Sergey Shorokhov"

#pragma semicolon 1
Expand Down Expand Up @@ -48,6 +48,9 @@ public task_check_online()
if(is_vote_will_in_next_round() || is_vote_started() || is_vote_finished()) {
return;
}
if(is_one_map_mode()) {
return;
}
if(get_num(CHECKS_COUNT) <= 0) {
return;
}
Expand Down

0 comments on commit ea16f0d

Please sign in to comment.