fix: Cleans up some string allocations from trim (#1759)

This commit is contained in:
Kamron Batman 2024-05-03 22:43:11 -07:00 • committed by GitHub
parent 9d2f471e91
commit d77668d77a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 15 additions and 22 deletions

View file

@ -784,7 +784,8 @@ namespace Server.Multis
if (e.Speech.Length > 8)
{
Rename(e.Speech[8..].Trim().DefaultIfNullOrEmpty(null));
var newName = e.Speech.AsSpan(8).Trim();
Rename(newName.Length == 0 ? null : newName.ToString());
}
}