Skip to content

Commit

Permalink
Vessels: Fix vessels shelf infotext
Browse files Browse the repository at this point in the history
  • Loading branch information
An0n3m0us authored and SmallJoker committed Sep 21, 2019
1 parent 3f7cd06 commit b31795d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mods/vessels/init.lua
Expand Up @@ -43,9 +43,9 @@ local function update_vessels_shelf(pos)
end
meta:set_string("formspec", formspec)
if n_items == 0 then
meta:set_string("infotext", S("Empty Vessel Shelf"))
meta:set_string("infotext", S("Empty Vessels Shelf"))
else
meta:set_string("infotext", S("Vessel Shelf (@1 items)", n_items))
meta:set_string("infotext", S("Vessels Shelf (@1 items)", n_items))
end
end

Expand Down

0 comments on commit b31795d

Please sign in to comment.