1
0
mirror of https://github.com/Sokomine/cottages.git synced 2025-04-20 19:10:25 +02:00

tweak barrel infotext

This commit is contained in:
flux 2022-10-10 14:56:10 -07:00
parent db057f02cf
commit fa2d38b32f
No known key found for this signature in database
GPG Key ID: 9333B27816848A15

View File

@ -9,14 +9,14 @@ local barrel = cottages.barrel
function barrel.get_barrel_info(pos)
local liquid = barrel.get_barrel_liquid(pos)
if liquid then
return ("%s (%i/%i)"):format(
return ("%s Barrel (%i/%i)"):format(
barrel.name_by_liquid[liquid],
barrel.get_liquid_amount(pos),
max_liquid_amount
)
else
return S("Empty")
return S("Empty Barrel")
end
end