From ab268b6e7793d881ffb089f4aafe5cff81fd4220 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 30 Jun 2024 23:47:22 +1000 Subject: [PATCH] Make accentless cost 2 points (#29603) Not an easy way to do this so if someone wants the default to be better be my guest. --- Content.Shared/Preferences/HumanoidCharacterProfile.cs | 4 ++-- Resources/Prototypes/Traits/speech.yml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index a823035cd3..c3ebe0d1a3 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -587,11 +587,11 @@ namespace Content.Shared.Preferences } var antags = AntagPreferences - .Where(id => prototypeManager.TryIndex(id, out var antag) && antag.SetPreference) + .Where(id => prototypeManager.TryIndex(id, out var antag) && antag.SetPreference) .ToList(); var traits = TraitPreferences - .Where(prototypeManager.HasIndex) + .Where(prototypeManager.HasIndex) .ToList(); Name = name; diff --git a/Resources/Prototypes/Traits/speech.yml b/Resources/Prototypes/Traits/speech.yml index 9448e160b5..961a53023b 100644 --- a/Resources/Prototypes/Traits/speech.yml +++ b/Resources/Prototypes/Traits/speech.yml @@ -5,6 +5,7 @@ name: trait-accentless-name description: trait-accentless-desc category: SpeechTraits + cost: 2 components: - type: Accentless removes: -- 2.51.2