diff --git a/Application/Misc/ClientNoticeMessageFormatter.cs b/Application/Misc/ClientNoticeMessageFormatter.cs index 3ab5c120..fc58eb16 100644 --- a/Application/Misc/ClientNoticeMessageFormatter.cs +++ b/Application/Misc/ClientNoticeMessageFormatter.cs @@ -33,7 +33,7 @@ namespace IW4MAdmin.Application.Misc builder.Append(header); builder.Append(config.NoticeLineSeparator); // build the reason - var reason = _transLookup["GAME_MESSAGE_PENALTY_REASON"].FormatExt(penalty.Offense); + var reason = _transLookup["GAME_MESSAGE_PENALTY_REASON"].FormatExt(penalty.Offense.FormatMessageForEngine(config)); if (isNewLineSeparator) { @@ -117,4 +117,4 @@ namespace IW4MAdmin.Application.Misc return segments; } } -} \ No newline at end of file +}