Skip to content

Commit ded4f19

Browse files
authored
Release: v0.13.1b (#1446)
1 parent 01b8bfa commit ded4f19

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ All notable changes to TTT2 will be documented here. Inspired by [keep a changel
1010

1111
### Fixed
1212

13+
## [v0.13.1b](https://github.com/TTT-2/TTT2/tree/v0.13.1b) (2024-02-27)
14+
15+
### Fixed
16+
1317
- Fixed rendering for weapons not based on the TTT2 base (e.g. TFA) (by @TimGoll)
1418
- Fixed bodysearch entries not having a title breaking the rendering (by @TimGoll)
1519
- Fixed `GetViewModel` error on the client when joining a server (by @TimGoll)

gamemodes/terrortown/gamemode/client/cl_changes.lua

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2007,6 +2007,23 @@ function CreateChanges()
20072007
os.time({ year = 2024, month = 02, day = 23 })
20082008
)
20092009

2010+
AddChange(
2011+
"TTT2 Base - v0.13.1",
2012+
[[
2013+
2014+
<h2>Fixed</h2>
2015+
<ul>
2016+
<li>Fixed rendering for weapons not based on the TTT2 base (e.g. TFA) (by @TimGoll)</li>
2017+
<li>Fixed bodysearch entries not having a title breaking the rendering (by @TimGoll)</li>
2018+
<li>Fixed <code>GetViewModel</code> error on the client when joining a server (by @TimGoll)</li>
2019+
<li>Fixed the new view changes preventing weapons from modifying the playerview (by @TimGoll)</li>
2020+
<li>Fixed the new view changes affecting non-player entities (by @TimGoll)</li>
2021+
<li>Fixed an error in an error message (by @mexikoedi)</li>
2022+
</ul>
2023+
]],
2024+
os.time({ year = 2024, month = 02, day = 27 })
2025+
)
2026+
20102027
---
20112028
-- run hook for other addons to add their changelog as well
20122029
-- @realm client

gamemodes/terrortown/gamemode/shared/sh_init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ GM.Name = "TTT2"
55
GM.Author = "Bad King Urgrain, Alf21, saibotk, Mineotopia, LeBroomer, Histalek, ZenBre4ker"
66
GM.Email = "[email protected]"
77
GM.Website = "ttt.badking.net, docs.ttt2.neoxult.de"
8-
GM.Version = "0.13.0b"
8+
GM.Version = "0.13.1b"
99
GM.Customized = true
1010

1111
TTT2 = true -- identifier for TTT2. Just use "if TTT2 then ... end"

0 commit comments

Comments
 (0)