Skip to content

Commit

Permalink
fix missing ',' in tr translation
Browse files Browse the repository at this point in the history
  • Loading branch information
destoer committed May 1, 2024
1 parent 14ae0b8 commit 3c55faa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lang/tr.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,6 @@

"lr.cancel_lr_cmd": "lriptal",
"lr.start_lr_cmd": "lr",
"lr.stats_cmd": "lr_istatistik"
"lr.stats_cmd": "lr_istatistik",
"lr.lr_prefix": "{green}[LR]: {white}"
}
2 changes: 1 addition & 1 deletion src/Jail.cs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ public static void KillCmd(CCSPlayerController? invoke, CommandInfo command)
void RegisterCommands()
{
AddCommand("kill","kill self",KillCmd);

// reg warden comamnds
AddLocalizedCmd("warden.take_warden_cmd", "take warden", warden.TakeWardenCmd);
AddLocalizedCmd("warden.leave_warden_cmd", "leave warden", warden.LeaveWardenCmd);
Expand Down
1 change: 0 additions & 1 deletion src/Warden/JailPlayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ public void Reset()
{
PurgeRound();

// TODO: reset client specific settings
laserColour = Lib.CYAN;
markerColour = Lib.CYAN;
ctGun = "M4";
Expand Down

0 comments on commit 3c55faa

Please sign in to comment.