From 716e5ace87e4c0d44015e767adfd413057f477a7 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Sun, 11 Jan 2026 21:05:32 +0100 Subject: [PATCH] Fix action tooltip warnings (#42361) fix action examine warnings --- .../UserInterface/Systems/Actions/Controls/ActionButton.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs index ec66e4a9da..b77d81dc6e 100644 --- a/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs +++ b/Content.Client/UserInterface/Systems/Actions/Controls/ActionButton.cs @@ -198,8 +198,8 @@ public sealed class ActionButton : Control, IEntityControl if (!_entities.TryGetComponent(Action, out MetaDataComponent? metadata)) return null; - var name = FormattedMessage.FromMarkupPermissive(Loc.GetString(metadata.EntityName)); - var desc = FormattedMessage.FromMarkupPermissive(Loc.GetString(metadata.EntityDescription)); + var name = FormattedMessage.FromMarkupPermissive(metadata.EntityName); + var desc = FormattedMessage.FromMarkupPermissive(metadata.EntityDescription); if (_player.LocalEntity is null) return null; -- 2.52.0