Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rhailrake committed Oct 22, 2024
1 parent fe9e685 commit 6b96bc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Radio/EntitySystems/RadioSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann
private string GetIdCardName(EntityUid senderUid)
{
var idCardTitle = Loc.GetString("chat-radio-no-id");
idCardTitle = GetIdCard(senderUid)?.JobTitle ?? idCardTitle;
idCardTitle = GetIdCard(senderUid)?.LocalizedJobTitle ?? idCardTitle;

var textInfo = CultureInfo.CurrentCulture.TextInfo;
idCardTitle = textInfo.ToTitleCase(idCardTitle);
Expand Down

0 comments on commit 6b96bc5

Please sign in to comment.