Allow portals to break only in creative and to be pointed.

This commit is contained in:
iliekprogrammar 2021-03-14 20:10:12 +08:00 committed by Nils Dagsson Moskopp
parent a9d4a85e9a
commit 7a7c4215d8
No known key found for this signature in database
GPG Key ID: A3BC671C35191080
1 changed files with 1 additions and 4 deletions

View File

@ -138,8 +138,6 @@ minetest.register_node("mcl_portals:portal", {
sunlight_propagates = true,
use_texture_alpha = minetest.features.use_texture_alpha_string_modes and "blend" or true,
walkable = false,
diggable = false,
pointable = false,
buildable_to = false,
is_ground_content = false,
drop = "",
@ -152,7 +150,7 @@ minetest.register_node("mcl_portals:portal", {
{-0.5, -0.5, -0.1, 0.5, 0.5, 0.1},
},
},
groups = {portal=1, not_in_creative_inventory = 1},
groups = { creative_breakable = 1, portal = 1, not_in_creative_inventory = 1 },
on_destruct = destroy_nether_portal,
_mcl_hardness = -1,
@ -863,4 +861,3 @@ minetest.override_item("mcl_core:obsidian", {
end
end,
})