diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-06-09 15:08:34 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-06-09 15:08:34 +0100 |
commit | 0b43f0428559cd477da796d7f27648814cc8cfe8 (patch) | |
tree | 633c6bd0beeb5c8caef32fdd96d19bb87d75438f /water.lua | |
parent | 306c025713487b20a20e32e33277d2f215a70832 (diff) |
Added intllib support
Diffstat (limited to 'water.lua')
-rw-r--r-- | water.lua | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,7 +1,9 @@ +local S = ethereal.intllib + -- Ice Brick minetest.register_node("ethereal:icebrick", { - description = "Ice Brick", + description = S("Ice Brick"), tiles = {"brick_ice.png"}, paramtype = "light", freezemelt = "default:water_source", @@ -20,7 +22,7 @@ minetest.register_craft({ -- Snow Brick minetest.register_node("ethereal:snowbrick", { - description = "Snow Brick", + description = S("Snow Brick"), tiles = {"brick_snow.png"}, paramtype = "light", freezemelt = "default:water_source", |