Skip to content

Commit

Permalink
F1 Menu: Fixed Haste Mode Setting (#1619)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
TimGoll authored Sep 20, 2024
1 parent c471173 commit 589cf3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/ttt2/libraries/gameloop.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 589cf3c

Please sign in to comment.