From 589cf3c6213ef060693e00fd13052cebe9ff31f7 Mon Sep 17 00:00:00 2001 From: Tim Goll Date: Fri, 20 Sep 2024 23:21:20 +0200 Subject: [PATCH] F1 Menu: Fixed Haste Mode Setting (#1619) The haste mode convar was named wrong, therefore it was impossible to change. For some reason it changed its name somewhere in this version's dev cycle. Therefore this change was reverted. Should be merged before the 0.14.0 release. --- lua/ttt2/libraries/gameloop.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/ttt2/libraries/gameloop.lua b/lua/ttt2/libraries/gameloop.lua index 5ec3333b7..b711448d1 100644 --- a/lua/ttt2/libraries/gameloop.lua +++ b/lua/ttt2/libraries/gameloop.lua @@ -32,7 +32,7 @@ local cvDetectiveMode = CreateConVar("ttt_sherlock_mode", "1", SERVER and {FCVAR --- -- @realm server -- stylua: ignore -local cvHasteMode = CreateConVar("ttt_haste_mode", "1", SERVER and {FCVAR_NOTIFY, FCVAR_ARCHIVE, FCVAR_REPLICATED} or FCVAR_REPLICATED) +local cvHasteMode = CreateConVar("ttt_haste", "1", SERVER and {FCVAR_NOTIFY, FCVAR_ARCHIVE, FCVAR_REPLICATED} or FCVAR_REPLICATED) --- -- @realm server