From 0f6a3761cc5c77f49872237c7cf2c91720c46f68 Mon Sep 17 00:00:00 2001 From: Resxt <55228336+Resxt@users.noreply.github.com> Date: Sat, 14 Dec 2024 16:18:14 +0100 Subject: [PATCH] mapvote 2.1.5 Fixed an issue introduced by a recent Plutonium update (changes to recipes) where modes wouldn't be loaded properly anymore because sv_maprotation wasn't using exec anymore (now using execgts) --- mapvote/mapvote.gsc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mapvote/mapvote.gsc b/mapvote/mapvote.gsc index 1ba40a0..31067bd 100644 --- a/mapvote/mapvote.gsc +++ b/mapvote/mapvote.gsc @@ -707,8 +707,8 @@ RotateDefault() DoRotation(modeCfg, mapName) { - SetDvar("sv_maprotationcurrent", "exec " + modeCfg + ".cfg map " + mapName); - SetDvar("sv_maprotation", "exec " + modeCfg + ".cfg map " + mapName); + SetDvar("sv_maprotationcurrent", "execgts " + modeCfg + ".cfg map " + mapName); + SetDvar("sv_maprotation", "execgts " + modeCfg + ".cfg map " + mapName); } StartRotation() @@ -1151,4 +1151,4 @@ GetChatColor(colorName) case "black": return "^0"; } -} \ No newline at end of file +}