mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-05 23:33:51 +01:00
TNT: Only burn visually connected powder (#1857)
This commit is contained in:
parent
c81165b2c8
commit
fa4c77feba
@ -513,8 +513,8 @@ minetest.register_node("tnt:gunpowder_burning", {
|
|||||||
on_timer = function(pos, elapsed)
|
on_timer = function(pos, elapsed)
|
||||||
for dx = -1, 1 do
|
for dx = -1, 1 do
|
||||||
for dz = -1, 1 do
|
for dz = -1, 1 do
|
||||||
|
if math.abs(dx) + math.abs(dz) == 1 then
|
||||||
for dy = -1, 1 do
|
for dy = -1, 1 do
|
||||||
if not (dx == 0 and dz == 0) then
|
|
||||||
tnt.burn({
|
tnt.burn({
|
||||||
x = pos.x + dx,
|
x = pos.x + dx,
|
||||||
y = pos.y + dy,
|
y = pos.y + dy,
|
||||||
|
Loading…
Reference in New Issue
Block a user