From 6758674059bc59f6f40f5883d89ad6a9747ec7e3 Mon Sep 17 00:00:00 2001 From: Kill_Me_I_Noobs <118206719+Vonsant@users.noreply.github.com> Date: Thu, 19 Dec 2024 16:51:55 +0300 Subject: [PATCH] Update Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs Co-authored-by: FN <37689533+FireNameFN@users.noreply.github.com> --- .../Chemistry/EntitySystems/ReagentDispenserSystem.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs b/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs index a78baeac8a5..1065daa5bd9 100644 --- a/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs @@ -92,10 +92,7 @@ private void OnAlternateVerb(Entity ent, ref GetVerbs args.Verbs.Add(new AlternativeVerb() { - Act = () => - { - SetAutoLabel(ent, !ent.Comp.AutoLabel); - }, + Act = () => SetAutoLabel(ent, !ent.Comp.AutoLabel), Text = ent.Comp.AutoLabel ? Loc.GetString("reagent-dispenser-component-set-auto-label-off-verb") : Loc.GetString("reagent-dispenser-component-set-auto-label-on-verb"),