mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-29 18:16:27 -04:00
Apply new connect_to_raillike value for gunpowder
For gunpowder, it's 3.
This commit is contained in:
parent
d7bf0cf7ce
commit
5115d9ada9
1 changed files with 2 additions and 2 deletions
|
@ -277,7 +277,7 @@ minetest.register_node("tnt:gunpowder", {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2},
|
fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2},
|
||||||
},
|
},
|
||||||
groups = {dig_immediate=2,attached_node=1,connect_to_raillike=1},
|
groups = {dig_immediate=2,attached_node=1,connect_to_raillike=3},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
|
||||||
on_punch = function(pos, node, puncher)
|
on_punch = function(pos, node, puncher)
|
||||||
|
@ -334,7 +334,7 @@ minetest.register_node("tnt:gunpowder_burning", {
|
||||||
fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2},
|
fixed = {-1/2, -1/2, -1/2, 1/2, -1/2+1/16, 1/2},
|
||||||
},
|
},
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {dig_immediate=2,attached_node=1,connect_to_raillike=1},
|
groups = {dig_immediate=2,attached_node=1,connect_to_raillike=3},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
on_timer = function(pos, elapsed)
|
on_timer = function(pos, elapsed)
|
||||||
for dx = -1, 1 do
|
for dx = -1, 1 do
|
||||||
|
|
Loading…
Add table
Reference in a new issue