diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-07-14 21:41:51 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-07-14 21:41:51 +0300 |
commit | 69709206eb0264e348694b64b5749593bf2a8b69 (patch) | |
tree | d25543502a4bc68ac0d505fd510c7c456abd24da /nodes_barrel.lua | |
parent | 96e3d6365be1bd5c8ea8a4efdd13a59f505aed80 (diff) |
cleanup
Diffstat (limited to 'nodes_barrel.lua')
-rw-r--r-- | nodes_barrel.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nodes_barrel.lua b/nodes_barrel.lua index 4c84983..4a2d096 100644 --- a/nodes_barrel.lua +++ b/nodes_barrel.lua @@ -69,7 +69,7 @@ end -- right-click to open/close barrel; punch to switch between horizontal/vertical position minetest.register_node("cottages:barrel", { - description = S("barrel (closed)"), + description = S("Barrel (closed)"), paramtype = "light", drawtype = "mesh", mesh = "cottages_barrel_closed.obj", @@ -100,7 +100,7 @@ end -- this barrel is opened at the top minetest.register_node("cottages:barrel_open", { - description = S("barrel (open)"), + description = S("Barrel (open)"), paramtype = "light", drawtype = "mesh", mesh = "cottages_barrel.obj", @@ -119,7 +119,7 @@ end -- horizontal barrel minetest.register_node("cottages:barrel_lying", { - description = S("barrel (closed), lying somewhere"), + description = S("Barrel (closed), lying somewhere"), paramtype = "light", paramtype2 = "facedir", drawtype = "mesh", @@ -143,7 +143,7 @@ end -- horizontal barrel, open minetest.register_node("cottages:barrel_lying_open", { - description = S("barrel (opened), lying somewhere"), + description = S("Barrel (opened), lying somewhere"), paramtype = "light", paramtype2 = "facedir", drawtype = "mesh", @@ -168,7 +168,7 @@ end -- let's hope "tub" is the correct english word for "bottich" minetest.register_node("cottages:tub", { - description = S("tub"), + description = S("Tub"), paramtype = "light", drawtype = "mesh", mesh = "cottages_tub.obj", |