mirror of
https://github.com/minetest-mods/stained_glass.git
synced 2024-11-14 05:50:20 +01:00
is ground content revision (#12)
This commit is contained in:
parent
aa9e57ebc3
commit
e7988d5867
4
init.lua
4
init.lua
|
@ -54,7 +54,7 @@ minetest.register_node("stained_glass:stained_glass", {
|
|||
sunlight_propagates = true,
|
||||
use_texture_alpha = "blend",
|
||||
light_source = myglow,
|
||||
is_ground_content = true,
|
||||
is_ground_content = false,
|
||||
walkable = true,
|
||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3, not_in_creative_inventory=1, ud_param2_colorable = 1},
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
|
@ -80,7 +80,7 @@ minetest.register_node("stained_glass:stained_trap_glass", {
|
|||
sunlight_propagates = true,
|
||||
use_texture_alpha = "blend",
|
||||
light_source = myglow,
|
||||
is_ground_content = true,
|
||||
is_ground_content = false,
|
||||
walkable = false,
|
||||
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3, not_in_creative_inventory=1, ud_param2_colorable = 1},
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
|
|
Loading…
Reference in New Issue
Block a user