Update 'mods/ethereal/water.lua'

This commit is contained in:
thunderdog1138 2020-07-22 22:18:45 +00:00
parent c24c40c4d1
commit 3928681dd0
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ local S = ethereal.intllib
-- Ice Brick
minetest.register_node("ethereal:ice_brick", {
description = S("Ice Brick"),
tiles = {"brick_ice.png"},
tiles = {"ice_brick.png"},
paramtype = "light",
freezemelt = "default:water_source",
is_ground_content = false,
@ -23,7 +23,7 @@ minetest.register_craft({
-- Snow Brick
minetest.register_node("ethereal:snow_brick", {
description = S("Snow Brick"),
tiles = {"brick_snow.png"},
tiles = {"snow_brick.png"},
paramtype = "light",
freezemelt = "default:water_source",
is_ground_content = false,
@ -177,4 +177,4 @@ minetest.register_abm({
end,
})
end
end