Fix force-feeding Loc strings not using target's gender (#34276)

This commit is contained in:
Tayrtahn
2025-01-12 09:33:53 -05:00
committed by GitHub
parent d9e4ed2056
commit 924f64e979
2 changed files with 3 additions and 3 deletions

View File

@@ -268,7 +268,7 @@ public sealed class FoodSystem : EntitySystem
if (stomachToUse == null)
{
_solutionContainer.TryAddSolution(soln.Value, split);
_popup.PopupEntity(forceFeed ? Loc.GetString("food-system-you-cannot-eat-any-more-other") : Loc.GetString("food-system-you-cannot-eat-any-more"), args.Target.Value, args.User);
_popup.PopupEntity(forceFeed ? Loc.GetString("food-system-you-cannot-eat-any-more-other", ("target", args.Target.Value)) : Loc.GetString("food-system-you-cannot-eat-any-more"), args.Target.Value, args.User);
return;
}