Fix drink examine text (#24241)

(cherry picked from commit 3506e67e88082ca22dc7b720f52748df36de4ab4)
This commit is contained in:
Kevin Zheng 2024-01-18 14:26:19 -08:00 committed by Debug
parent 1ab0ed77f6
commit 25499c5c07
No known key found for this signature in database
GPG Key ID: 271270A74EF9C350
2 changed files with 2 additions and 2 deletions

View File

@ -147,7 +147,7 @@ public sealed class DrinkSystem : EntitySystem
if (TryComp<ExaminableSolutionComponent>(entity, out var comp))
{
//provide exact measurement for beakers
args.AddMarkup(Loc.GetString("drink-component-on-examine-exact-volume", ("amount", DrinkVolume(entity, entity.Comp))));
args.PushText(Loc.GetString("drink-component-on-examine-exact-volume", ("amount", DrinkVolume(entity, entity.Comp))));
}
else
{

View File

@ -6,7 +6,7 @@ drink-component-on-examine-is-mostly-full = Mostly Full
drink-component-on-examine-is-half-full = Halfway Full
drink-component-on-examine-is-half-empty = Halfway Empty
drink-component-on-examine-is-mostly-empty = Mostly Empty
drink-component-on-examine-exact-volume = {$amount}u Full
drink-component-on-examine-exact-volume = It contains {$amount}u.
drink-component-try-use-drink-not-open = Open {$owner} first!
drink-component-try-use-drink-is-empty = {$entity} is empty!
drink-component-try-use-drink-cannot-drink = You can't drink anything!