From 86ddb6e2d44dffc8656991d0dcd43229b727a821 Mon Sep 17 00:00:00 2001 From: Morbo <14136326+Morb0@users.noreply.github.com> Date: Thu, 28 Apr 2022 17:24:59 +0300 Subject: [PATCH] Fix plant holder messages (#7834) --- Content.Server/Botany/Systems/PlantHolderSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index ac99986fac..7abb800bf5 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -240,10 +240,10 @@ namespace Content.Server.Botany.Systems { _popupSystem.PopupCursor(Loc.GetString("plant-holder-component-compost-message", ("owner", uid), - ("args.Used", args.Used)), Filter.Entities(args.User)); + ("usingItem", args.Used)), Filter.Entities(args.User)); _popupSystem.PopupEntity(Loc.GetString("plant-holder-component-compost-others-message", ("user", args.User), - ("args.Used", args.Used), + ("usingItem", args.Used), ("owner", uid)), uid, Filter.Pvs(args.User).RemoveWhereAttachedEntity(puid => puid == args.User)); if (_solutionSystem.TryGetSolution(args.Used, produce.SolutionName, out var solution2))