Skip to content

Commit

Permalink
Translation: Fixed missing translation for None role error (#1637)
Browse files Browse the repository at this point in the history
This PR fixes #1631 . 
I tested it and the missing translation error for the None role doesn't
appear anymore.
  • Loading branch information
mexikoedi authored Sep 27, 2024
1 parent 4e9ffc5 commit be78811
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to TTT2 will be documented here. Inspired by [keep a changel

## Unreleased

### Fixed

- Fixed missing translation for None role error by removing it (by @mexikoedi)

## [v0.14.0b](https://github.com/TTT-2/TTT2/tree/v0.14.0b) (2024-09-20)

### Added
Expand Down
2 changes: 1 addition & 1 deletion gamemodes/terrortown/gamemode/client/cl_popups.lua
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ local function RoundStartPopup()
end

local client = LocalPlayer()
if not client then
if not client or client:GetRole() == ROLE_NONE then
return
end

Expand Down

0 comments on commit be78811

Please sign in to comment.