Remove cave ice from creative inventory

This commit is contained in:
Ezhh 2018-09-21 18:52:55 +01:00 committed by GitHub
parent be6fe9f592
commit e10e0f94d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -627,7 +627,8 @@ minetest.register_node("default:cave_ice", {
description = "Cave Ice",
tiles = {"default_ice.png"},
paramtype = "light",
groups = {cracky = 3, puts_out_fire = 1, cools_lava = 1, slippery = 3},
groups = {cracky = 3, puts_out_fire = 1, cools_lava = 1, slippery = 3,
not_in_creative_inventory = 1},
drop = "default:ice",
sounds = default.node_sound_glass_defaults(),
})