We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba9a847 commit 226ffc3Copy full SHA for 226ffc3
1 file changed
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.0"
+#define VERSION "1.0.1"
7
#define AUTHOR "Sergey Shorokhov"
8
9
#pragma semicolon 1
@@ -33,11 +33,12 @@ public plugin_init() {
33
g_pCvars[CHECK_INTERVAL] = register_cvar("mapm_online_check_interval", "30");
34
g_pCvars[CHECKS_COUNT] = register_cvar("mapm_online_check_count", "3");
35
g_pCvars[CHECK_TIMEOUT] = register_cvar("mapm_online_check_timeout", "120");
36
+
37
+ get_mapname(g_CurrentMap[Map], charsmax(g_CurrentMap[Map]));
38
}
39
40
public plugin_cfg() {
41
mapm_get_prefix(g_sPrefix, charsmax(g_sPrefix));
- get_mapname(g_CurrentMap[Map], charsmax(g_CurrentMap[Map]));
42
43
44
public task_check_online() {
0 commit comments