Food system locale fix (#14365)

This commit is contained in:
Mr0maks
2023-03-03 12:19:55 +05:00
committed by GitHub
parent bf76afdcd6
commit 1d0e5cca3a

View File

@@ -201,7 +201,7 @@ namespace Content.Server.Nutrition.EntitySystems
}
else
{
_popupSystem.PopupEntity(Loc.GetString(component.EatMessage, ("foodComp", uid), ("flavors", flavors)), args.Args.User, args.Args.User);
_popupSystem.PopupEntity(Loc.GetString(component.EatMessage, ("food", uid), ("flavors", flavors)), args.Args.User, args.Args.User);
// log successful voluntary eating
_adminLogger.Add(LogType.Ingestion, LogImpact.Low, $"{ToPrettyString(args.Args.User):target} ate {ToPrettyString(uid):food}");