Make water not drop when blown up by TNT

This commit is contained in:
KaadmY 2016-11-13 17:22:44 -08:00 committed by GitHub
parent 7f6b73246d
commit 498e4426ea

View File

@ -1,6 +1,6 @@
--
-- Node definitions
--
--wate
minetest.register_node(
"default:stone",
@ -860,6 +860,7 @@ minetest.register_node(
animation={type = "vertical_frames", aspect_w= 16, aspect_h = 16, length = 0.8}
},
},
drop= "",
alpha = default.WATER_ALPHA,
paramtype = "light",
walkable = false,
@ -889,6 +890,7 @@ minetest.register_node(
backface_culling=false,
},
},
drop= "",
alpha = default.WATER_ALPHA,
paramtype = "light",
walkable = false,
@ -924,6 +926,7 @@ minetest.register_node(
animation={type = "vertical_frames", aspect_w= 16, aspect_h = 16, length = 0.8}
},
},
drop= "",
alpha = default.RIVER_WATER_ALPHA,
paramtype = "light",
walkable = false,
@ -955,6 +958,7 @@ minetest.register_node(
backface_culling=false,
},
},
drop= "",
alpha = default.RIVER_WATER_ALPHA,
paramtype = "light",
walkable = false,
@ -992,6 +996,7 @@ minetest.register_node(
animation={type = "vertical_frames", aspect_w= 16, aspect_h = 16, length = 1.8}
},
},
drop= "",
alpha = default.SWAMP_WATER_ALPHA,
paramtype = "light",
walkable = false,
@ -1023,6 +1028,7 @@ minetest.register_node(
backface_culling=false,
},
},
drop= "",
alpha = default.SWAMP_WATER_ALPHA,
paramtype = "light",
walkable = false,
@ -1488,4 +1494,4 @@ form_chest = form_chest .. default.ui.get_hotbar_itemslot_bg(0.25, 4.75, 8, 1)
form_chest = form_chest .. default.ui.get_itemslot_bg(0.25, 5.75, 8, 3)
default.ui.register_page("default_chest", form_chest)
default.log("nodes", "loaded")
default.log("nodes", "loaded")