Fix force-feeding Loc strings not using target's gender (#34276)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -14,11 +14,11 @@ food-system-remove-mask = You need to take off the {$entity} first.
|
||||
## System
|
||||
|
||||
food-system-you-cannot-eat-any-more = You can't eat any more!
|
||||
food-system-you-cannot-eat-any-more-other = They can't eat any more!
|
||||
food-system-you-cannot-eat-any-more-other = {CAPITALIZE(SUBJECT($target))} can't eat any more!
|
||||
food-system-try-use-food-is-empty = {CAPITALIZE(THE($entity))} is empty!
|
||||
food-system-wrong-utensil = You can't eat {THE($food)} with {INDEFINITE($utensil)} {$utensil}.
|
||||
food-system-cant-digest = You can't digest {THE($entity)}!
|
||||
food-system-cant-digest-other = They can't digest {THE($entity)}!
|
||||
food-system-cant-digest-other = {CAPITALIZE(SUBJECT($target))} can't digest {THE($entity)}!
|
||||
|
||||
food-system-verb-eat = Eat
|
||||
|
||||
|
||||
Reference in New Issue
Block a user