[feat] Custom name for clown, mime and borgs

This commit is contained in:
rhailrake
2023-05-04 13:44:24 +06:00
committed by Aviu00
parent f04400926e
commit 68e52f60c9
18 changed files with 3124 additions and 43 deletions

View File

@@ -213,6 +213,9 @@ namespace Content.Server.Database
return new HumanoidCharacterProfile(
profile.CharacterName,
profile.ClownName,
profile.MimeName,
profile.BorgName,
profile.FlavorText,
profile.Species,
voice,
@@ -250,6 +253,9 @@ namespace Content.Server.Database
var markings = JsonSerializer.SerializeToDocument(markingStrings);
profile.CharacterName = humanoid.Name;
profile.ClownName = humanoid.ClownName;
profile.MimeName = humanoid.MimeName;
profile.BorgName = humanoid.BorgName;
profile.FlavorText = humanoid.FlavorText;
profile.Species = humanoid.Species;
profile.Age = humanoid.Age;