Skip to content

Commit

Permalink
Update Content.Server/Chemistry/EntitySystems/ReagentDispenserSystem.cs
Browse files Browse the repository at this point in the history
Co-authored-by: FN <[email protected]>
  • Loading branch information
Vonsant and FireNameFN authored Dec 19, 2024
1 parent ca5ee7e commit 6758674
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,7 @@ private void OnAlternateVerb(Entity<ReagentDispenserComponent> 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"),
Expand Down

0 comments on commit 6758674

Please sign in to comment.