Skip to content

Commit bd6126d

Browse files
authored
Loadingscreen: Fixed tips translation (#1846)
This PR fixes #1844 . There were two issues in tips.lua which were fixed: - tip39 was used twice (one of them should have been tip29) which caused the param translation issue described in the above issue - tip30 was corrected because it has no duckkey param. I tested it and the tips worked fine.
1 parent 5e5c24f commit bd6126d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ All notable changes to TTT2 will be documented here. Inspired by [keep a changel
1717

1818
- Fixed markerVision null entity errors (by @mexikoedi)
1919
- Fixed missing ttt_filter_role in ttt2.fgd (by @mrxonte)
20+
- Fixed loading screen tips translation (by @mexikoedi)
2021

2122
## [v0.14.5b](https://github.com/TTT-2/TTT2/tree/v0.14.5b) (2025-08-18)
2223

lua/ttt2/libraries/tips.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ function tips.Initialize()
6767
tips.Register("tip26")
6868
tips.Register("tip27", { mutekey = Key("+gm_showteam", "F2") })
6969
tips.Register("tip28", { helpkey = Key("+gm_showhelp", "F1") })
70-
tips.Register("tip39", { zoomkey = Key("+zoom", "the 'Suit Zoom' key") })
71-
tips.Register("tip30", { duckkey = Key("+duck", "DUCK") })
70+
tips.Register("tip29", { zoomkey = Key("+zoom", "the 'Suit Zoom' key") })
71+
tips.Register("tip30")
7272
tips.Register("tip31")
7373
tips.Register("tip32")
7474
tips.Register("tip33")

0 commit comments

Comments
 (0)