MindComponent loc, kitchenspike loc fixes, climbable loc fixes (#4071)

* mindcomp loc, kitchenspike loc fixes, climbable loc fixes

* add fluent functions for words that change on pronoun, add grammarcomponent to humans

* fix the()

* cleanup

* cleanup

* reviews

* holla holla get dolla
This commit is contained in:
mirrorcult
2021-06-08 13:59:32 -07:00
committed by GitHub
parent 6870b88a56
commit 22e5ad89a5
7 changed files with 84 additions and 15 deletions

View File

@@ -4,6 +4,7 @@ using Content.Shared.Preferences;
using Content.Shared.Preferences.Appearance;
using Robust.Shared.Enums;
using Robust.Shared.GameObjects;
using Robust.Shared.GameObjects.Components.Localization;
using Robust.Shared.Players;
using Robust.Shared.Serialization;
using Robust.Shared.Serialization.Manager.Attributes;
@@ -65,6 +66,12 @@ namespace Content.Shared.GameObjects.Components.Mobs
set
{
_gender = value;
if (Owner.TryGetComponent(out GrammarComponent? g))
{
g.Gender = value;
}
Dirty();
}
}