fix: Adds ISpanFormattable support to Serial (#1065)

This commit is contained in:
Kamron Batman 2022-06-14 18:39:46 -07:00 committed by GitHub
parent 4b2b7e2277
commit b779d7737f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 269 additions and 204 deletions

View file

@ -135,6 +135,6 @@ namespace Server.Guilds
return results;
}
public override string ToString() => $"0x{Serial.Value:X} \"{Name} [{Abbreviation}]\"";
public override string ToString() => $"{Serial} \"{Name} [{Abbreviation}]\"";
}
}