From 5988942f2608e445eb518f84bd97df8eff708915 Mon Sep 17 00:00:00 2001 From: Tim Goll Date: Wed, 20 Dec 2023 17:00:40 +0100 Subject: [PATCH] Release/v0.12.2b (#1238) --- CHANGELOG.md | 2 + .../terrortown/gamemode/client/cl_changes.lua | 52 +++++++++++++++++++ .../terrortown/gamemode/shared/sh_init.lua | 2 +- 3 files changed, 55 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c181ee2f6..5ad5786b27 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.12.2b](https://github.com/TTT-2/TTT2/tree/v0.12.2b) (2023-12-20) + ### Added - Added the beacon back into TTT2, an equipment that was disabled long ago in base TTT diff --git a/gamemodes/terrortown/gamemode/client/cl_changes.lua b/gamemodes/terrortown/gamemode/client/cl_changes.lua index 42e5bd251e..c8a21bb446 100644 --- a/gamemodes/terrortown/gamemode/client/cl_changes.lua +++ b/gamemodes/terrortown/gamemode/client/cl_changes.lua @@ -1751,6 +1751,58 @@ function CreateChanges() ]], os.time({ year = 2023, month = 12, day = 12}) ) + + AddChange( + "TTT2 Base - v0.12.2b", + [[ +

Added

+ + +

Changed

+ + +

Fixed

+ + ]], + os.time({ year = 2023, month = 12, day = 20}) + ) --- -- 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 6cb04196ce..20a4f245e9 100644 --- a/gamemodes/terrortown/gamemode/shared/sh_init.lua +++ b/gamemodes/terrortown/gamemode/shared/sh_init.lua @@ -5,7 +5,7 @@ GM.Name = "TTT2" 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.12.1b" +GM.Version = "0.12.2b" GM.Customized = true TTT2 = true -- identifier for TTT2. Just use "if TTT2 then ... end"