Fix drink examine text (#24241)

This commit is contained in:
Kevin Zheng
2024-01-18 14:26:19 -08:00
committed by GitHub
parent 0d53dad58a
commit 3506e67e88
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
{