From b281d958b71c83230d8f849ebb105404129e1d7a Mon Sep 17 00:00:00 2001 From: 0x6273 <0x40@keemail.me> Date: Sun, 6 Nov 2022 08:50:19 +0100 Subject: [PATCH] Fix machine upgrade examine missing loc (#12410) --- Content.Server/Construction/ConstructionSystem.Machine.cs | 4 ++-- Resources/Locale/en-US/machine/machine.ftl | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Content.Server/Construction/ConstructionSystem.Machine.cs b/Content.Server/Construction/ConstructionSystem.Machine.cs index aa0c33a465..17b61c6d1e 100644 --- a/Content.Server/Construction/ConstructionSystem.Machine.cs +++ b/Content.Server/Construction/ConstructionSystem.Machine.cs @@ -49,8 +49,8 @@ public sealed partial class ConstructionSystem { _examineSystem.SendExamineTooltip(args.User, uid, markup, getVerbs: false, centerAtCursor: false); }, - Text = Loc.GetString("machine-examinable-verb-text"), - Message = Loc.GetString("machine-examinable-verb-message"), + Text = Loc.GetString("machine-upgrade-examinable-verb-text"), + Message = Loc.GetString("machine-upgrade-examinable-verb-message"), Category = VerbCategory.Examine, IconTexture = "/Textures/Interface/VerbIcons/pickup.svg.192dpi.png" }; diff --git a/Resources/Locale/en-US/machine/machine.ftl b/Resources/Locale/en-US/machine/machine.ftl index 8f9887d49c..8b76e68f14 100644 --- a/Resources/Locale/en-US/machine/machine.ftl +++ b/Resources/Locale/en-US/machine/machine.ftl @@ -1,5 +1,7 @@ machine-insert-item = {THE($user)} inserted {THE($item)} into {THE($machine)}. +machine-upgrade-examinable-verb-text = Upgrades +machine-upgrade-examinable-verb-message = Examine the machine upgrades. machine-upgrade-increased-by-percentage = [color=yellow]{CAPITALIZE($upgraded)}[/color] increased by {$percent}%. machine-upgrade-decreased-by-percentage = [color=yellow]{CAPITALIZE($upgraded)}[/color] decreased by {$percent}%. machine-upgrade-increased-by-amount = [color=yellow]{CAPITALIZE($upgraded)}[/color] increased by {$difference}.