fix https://github.com/D00Med/scifi_nodes/issues/68 and adding additional game digging support (#69)

This commit is contained in:
wsor4035
2022-03-05 10:09:17 -05:00
committed by GitHub
parent 1558b4c146
commit 32f46ebf23
4 changed files with 71 additions and 66 deletions

View File

@ -31,7 +31,7 @@ minetest.register_node("scifi_nodes:slope_"..name, {
paramtype2 = "facedir",
use_texture_alpha = "clip",
light_source = light,
groups = {cracky=1},
groups = {cracky=1, dig_generic = 3},
on_place = minetest.rotate_node
})
end
@ -164,7 +164,7 @@ if minetest.global_exists("stairsplus") then
description = row[2],
tiles = {"scifi_nodes_"..name..".png"},
use_texture_alpha = "clip",
groups = {cracky=1},
groups = {cracky=1, dig_generic = 3},
paramtype = "light",
paramtype2 = "facedir",
light_source = row[3],