From 1fbed9f7d0dba9f2db082c8e62e0de39b8ee651f Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Sat, 13 Jul 2013 13:58:47 -0400 Subject: [PATCH] Don't load nextmap on Dota 2. --- plugins/nextmap.sp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/nextmap.sp b/plugins/nextmap.sp index 15422c81..0e9e118d 100644 --- a/plugins/nextmap.sp +++ b/plugins/nextmap.sp @@ -62,7 +62,8 @@ public APLRes:AskPluginLoad2(Handle:myself, bool:late, String:error[], err_max) || StrEqual(game, "synergy", false) || StrEqual(game, "left4dead2", false) || StrEqual(game, "garrysmod", false) - || StrEqual(game, "swarm", false)) + || StrEqual(game, "swarm", false) + || StrEqual(game, "dota", false)) { strcopy(error, err_max, "Nextmap is incompatible with this game"); return APLRes_SilentFailure;