diff --git a/CHANGELOG.md b/CHANGELOG.md
index a8aa34e085..4dcbe65e3e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,8 @@ All notable changes to TTT2 will be documented here. Inspired by [keep a changel
## Unreleased
+## [v0.11.4b](https://github.com/TTT-2/TTT2/tree/v0.11.4b) (2021-12-17)
+
### Changed
- Updated Japanese translation (by @westooooo)
diff --git a/gamemodes/terrortown/gamemode/client/cl_changes.lua b/gamemodes/terrortown/gamemode/client/cl_changes.lua
index aa154d7e5a..62f1a12eba 100644
--- a/gamemodes/terrortown/gamemode/client/cl_changes.lua
+++ b/gamemodes/terrortown/gamemode/client/cl_changes.lua
@@ -1112,7 +1112,7 @@ function CreateChanges()
- Fixed the hook scope in the disguiser causing an error
- Fixed the classic entity spawn mode breaking on maps without all three spawn types
- - Fixed weapons not using their average firerate with a tickrate dependent fix. Function
SWEP:SetNextPrimaryFire(nextTime)
was overwritten with our fix SWEP:SetNextPrimaryFire(nextTime, skipTickrateFix)
+ - Fixed weapons not using their average firerate with a tickrate dependent fix. Function
SWEP:SetNextPrimaryFire(nextTime)
was overwritten with our fix SWEP:SetNextPrimaryFire(nextTime, skipTickrateFix)
Changed
@@ -1222,6 +1222,14 @@ function CreateChanges()
]], os.time({ year = 2021, month = 11, day = 18 }))
+ AddChange("TTT2 Base - v0.11.4b", [[
+ Changed
+
+ - Switched from the voicerecord commands to the GMod permission system due to a recent GMod update breaking the old voice chat
+ - Updated Japanese translation (by @westooooo)
+
+ ]], os.time({ year = 2021, month = 12, day = 17 }))
+
---
-- run hook for other addons to add their changelog as well
-- @realm client
diff --git a/gamemodes/terrortown/gamemode/shared/sh_init.lua b/gamemodes/terrortown/gamemode/shared/sh_init.lua
index 5862bfcce9..143ea55147 100644
--- a/gamemodes/terrortown/gamemode/shared/sh_init.lua
+++ b/gamemodes/terrortown/gamemode/shared/sh_init.lua
@@ -5,7 +5,7 @@ GM.Name = "TTT2 (Advanced Update)"
GM.Author = "Bad King Urgrain, Alf21, saibotk, Mineotopia, LeBroomer, Histalek, ZenBre4ker"
GM.Email = "ttt2@neoxult.de"
GM.Website = "ttt.badking.net, docs.ttt2.neoxult.de"
-GM.Version = "0.11.3b"
+GM.Version = "0.11.4b"
GM.Customized = true
TTT2 = true -- identifier for TTT2. Just use "if TTT2 then ... end"