style(format): apply csharpier and markdownlint reflow
Security / scan (push) Successful in 23s
Build / Build (Release) (push) Successful in 31s
Forge Announce / Post changelog to Hellion Forge (push) Successful in 6s
Release / Build and attach release ZIP (push) Successful in 41s

This commit is contained in:
2026-05-23 09:02:30 +02:00
parent c640a05a8a
commit 1d3b429f1b
13 changed files with 176 additions and 81 deletions
+3 -4
View File
@@ -14,7 +14,8 @@ public static class SenderNameFormatter
string worldName,
bool isHomeWorld,
NameFormMode formMode,
WorldSuffixMode suffixMode)
WorldSuffixMode suffixMode
)
{
var name = FormatName(fullName, formMode);
@@ -26,9 +27,7 @@ public static class SenderNameFormatter
_ => !isHomeWorld,
};
return showWorld && !string.IsNullOrEmpty(worldName)
? $"{name}@{worldName}"
: name;
return showWorld && !string.IsNullOrEmpty(worldName) ? $"{name}@{worldName}" : name;
}
private static string FormatName(string fullName, NameFormMode mode)