From ded4f19fa53f737c223c62f23f05bd1fc971d933 Mon Sep 17 00:00:00 2001 From: Tim Goll Date: Tue, 27 Feb 2024 11:33:53 +0100 Subject: [PATCH] Release: v0.13.1b (#1446) --- CHANGELOG.md | 4 ++++ .../terrortown/gamemode/client/cl_changes.lua | 17 +++++++++++++++++ .../terrortown/gamemode/shared/sh_init.lua | 2 +- 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db5cbc24b..b750a8571 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ All notable changes to TTT2 will be documented here. Inspired by [keep a changel ### Fixed +## [v0.13.1b](https://github.com/TTT-2/TTT2/tree/v0.13.1b) (2024-02-27) + +### Fixed + - Fixed rendering for weapons not based on the TTT2 base (e.g. TFA) (by @TimGoll) - Fixed bodysearch entries not having a title breaking the rendering (by @TimGoll) - Fixed `GetViewModel` error on the client when joining a server (by @TimGoll) diff --git a/gamemodes/terrortown/gamemode/client/cl_changes.lua b/gamemodes/terrortown/gamemode/client/cl_changes.lua index 6160a84ed..f3bf934ed 100644 --- a/gamemodes/terrortown/gamemode/client/cl_changes.lua +++ b/gamemodes/terrortown/gamemode/client/cl_changes.lua @@ -2007,6 +2007,23 @@ function CreateChanges() os.time({ year = 2024, month = 02, day = 23 }) ) + AddChange( + "TTT2 Base - v0.13.1", + [[ + +

Fixed

+ + ]], + os.time({ year = 2024, month = 02, day = 27 }) + ) + --- -- 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 e540174d8..a7e6aef32 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.13.0b" +GM.Version = "0.13.1b" GM.Customized = true TTT2 = true -- identifier for TTT2. Just use "if TTT2 then ... end"