Skip to content

Commit

Permalink
Default/nodes: Make water, lava and ice is_ground_content = false
Browse files Browse the repository at this point in the history
  • Loading branch information
paramat committed Apr 6, 2015
1 parent 87468eb commit fe7a982
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mods/default/nodes.lua
Expand Up @@ -371,7 +371,7 @@ minetest.register_node("default:snowblock", {
minetest.register_node("default:ice", {
description = "Ice",
tiles = {"default_ice.png"},
is_ground_content = true,
is_ground_content = false,
paramtype = "light",
groups = {cracky=3},
sounds = default.node_sound_glass_defaults(),
Expand Down Expand Up @@ -899,6 +899,7 @@ minetest.register_node("default:water_source", {
pointable = false,
diggable = false,
buildable_to = true,
is_ground_content = false,
drop = "",
drowning = 1,
liquidtype = "source",
Expand Down Expand Up @@ -943,6 +944,7 @@ minetest.register_node("default:water_flowing", {
pointable = false,
diggable = false,
buildable_to = true,
is_ground_content = false,
drop = "",
drowning = 1,
liquidtype = "flowing",
Expand Down Expand Up @@ -989,6 +991,7 @@ minetest.register_node("default:lava_source", {
pointable = false,
diggable = false,
buildable_to = true,
is_ground_content = false,
drop = "",
drowning = 1,
liquidtype = "source",
Expand Down Expand Up @@ -1035,6 +1038,7 @@ minetest.register_node("default:lava_flowing", {
pointable = false,
diggable = false,
buildable_to = true,
is_ground_content = false,
drop = "",
drowning = 1,
liquidtype = "flowing",
Expand Down

0 comments on commit fe7a982

Please sign in to comment.