diff --git a/Content.Server/Geras/GerasComponent.cs b/Content.Server/Geras/GerasComponent.cs index eaf792502f4..df1fccd7185 100644 --- a/Content.Server/Geras/GerasComponent.cs +++ b/Content.Server/Geras/GerasComponent.cs @@ -12,7 +12,7 @@ public sealed partial class GerasComponent : Component { [DataField] public ProtoId GerasPolymorphId = "SlimeMorphGeras"; - [DataField] public ProtoId GerasAction = "ActionMorphGeras"; + [DataField] public EntProtoId GerasAction = "ActionMorphGeras"; [DataField] public EntityUid? GerasActionEntity; } diff --git a/Content.Server/Traits/Assorted/ForeignerTraitComponent.cs b/Content.Server/Traits/Assorted/ForeignerTraitComponent.cs index a35972f1c86..18d1842a87d 100644 --- a/Content.Server/Traits/Assorted/ForeignerTraitComponent.cs +++ b/Content.Server/Traits/Assorted/ForeignerTraitComponent.cs @@ -34,5 +34,5 @@ public sealed partial class ForeignerTraitComponent : Component /// The base translator prototype to use when creating a translator for the entity. /// [DataField(required: true)] - public ProtoId BaseTranslator = default!; + public EntProtoId BaseTranslator = default!; }