Skip to content

Commit

Permalink
Release: v0.13.1b (#1446)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimGoll authored Feb 27, 2024
1 parent 01b8bfa commit ded4f19
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
17 changes: 17 additions & 0 deletions gamemodes/terrortown/gamemode/client/cl_changes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2007,6 +2007,23 @@ function CreateChanges()
os.time({ year = 2024, month = 02, day = 23 })
)

AddChange(
"TTT2 Base - v0.13.1",
[[
<h2>Fixed</h2>
<ul>
<li>Fixed rendering for weapons not based on the TTT2 base (e.g. TFA) (by @TimGoll)</li>
<li>Fixed bodysearch entries not having a title breaking the rendering (by @TimGoll)</li>
<li>Fixed <code>GetViewModel</code> error on the client when joining a server (by @TimGoll)</li>
<li>Fixed the new view changes preventing weapons from modifying the playerview (by @TimGoll)</li>
<li>Fixed the new view changes affecting non-player entities (by @TimGoll)</li>
<li>Fixed an error in an error message (by @mexikoedi)</li>
</ul>
]],
os.time({ year = 2024, month = 02, day = 27 })
)

---
-- run hook for other addons to add their changelog as well
-- @realm client
Expand Down
2 changes: 1 addition & 1 deletion gamemodes/terrortown/gamemode/shared/sh_init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ GM.Name = "TTT2"
GM.Author = "Bad King Urgrain, Alf21, saibotk, Mineotopia, LeBroomer, Histalek, ZenBre4ker"
GM.Email = "[email protected]"
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"
Expand Down

0 comments on commit ded4f19

Please sign in to comment.