Remove tail wag emote text (#25054)

Removed emote text
This commit is contained in:
Krunklehorn
2024-02-08 18:08:06 -05:00
committed by GitHub
parent 5380f64cca
commit af21657cc3
2 changed files with 0 additions and 8 deletions

View File

@@ -1,5 +1,4 @@
using Content.Server.Actions;
using Content.Server.Chat.Systems;
using Content.Server.Humanoid;
using Content.Shared.Humanoid;
using Content.Shared.Humanoid.Markings;
@@ -16,7 +15,6 @@ namespace Content.Server.Wagging;
public sealed class WaggingSystem : EntitySystem
{
[Dependency] private readonly ActionsSystem _actions = default!;
[Dependency] private readonly ChatSystem _chat = default!;
[Dependency] private readonly HumanoidAppearanceSystem _humanoidAppearance = default!;
[Dependency] private readonly IPrototypeManager _prototype = default!;
@@ -102,9 +100,6 @@ public sealed class WaggingSystem : EntitySystem
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;
}
}