@@ -1,5 +1,4 @@
|
|||||||
using Content.Server.Actions;
|
using Content.Server.Actions;
|
||||||
using Content.Server.Chat.Systems;
|
|
||||||
using Content.Server.Humanoid;
|
using Content.Server.Humanoid;
|
||||||
using Content.Shared.Humanoid;
|
using Content.Shared.Humanoid;
|
||||||
using Content.Shared.Humanoid.Markings;
|
using Content.Shared.Humanoid.Markings;
|
||||||
@@ -16,7 +15,6 @@ namespace Content.Server.Wagging;
|
|||||||
public sealed class WaggingSystem : EntitySystem
|
public sealed class WaggingSystem : EntitySystem
|
||||||
{
|
{
|
||||||
[Dependency] private readonly ActionsSystem _actions = default!;
|
[Dependency] private readonly ActionsSystem _actions = default!;
|
||||||
[Dependency] private readonly ChatSystem _chat = default!;
|
|
||||||
[Dependency] private readonly HumanoidAppearanceSystem _humanoidAppearance = default!;
|
[Dependency] private readonly HumanoidAppearanceSystem _humanoidAppearance = default!;
|
||||||
[Dependency] private readonly IPrototypeManager _prototype = default!;
|
[Dependency] private readonly IPrototypeManager _prototype = default!;
|
||||||
|
|
||||||
@@ -102,9 +100,6 @@ public sealed class WaggingSystem : EntitySystem
|
|||||||
humanoid: humanoid);
|
humanoid: humanoid);
|
||||||
}
|
}
|
||||||
|
|
||||||
var emoteText = Loc.GetString(wagging.Wagging ? "wagging-emote-start" : "wagging-emote-stop", ("ent", uid));
|
|
||||||
_chat.TrySendInGameICMessage(uid, emoteText, InGameICChatType.Emote, ChatTransmitRange.Normal); // Ok while emotes dont have radial menu
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,2 @@
|
|||||||
action-name-toggle-wagging = Wagging Tail
|
action-name-toggle-wagging = Wagging Tail
|
||||||
action-description-toggle-wagging = Start or stop wagging tail.
|
action-description-toggle-wagging = Start or stop wagging tail.
|
||||||
|
|
||||||
wagging-emote-start = starts wagging {POSS-ADJ($ent)} tail.
|
|
||||||
wagging-emote-stop = stops wagging {POSS-ADJ($ent)} tail.
|
|
||||||
Reference in New Issue
Block a user