mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2024-12-22 16:10:18 +01:00
more set_int fixes
This commit is contained in:
parent
54ce73b616
commit
9e69a6db73
@ -16,8 +16,8 @@ local function start_smoke(pos, node, clicker, chimney)
|
|||||||
end, s_handle)
|
end, s_handle)
|
||||||
end
|
end
|
||||||
minetest.delete_particlespawner(id)
|
minetest.delete_particlespawner(id)
|
||||||
this_spawner_meta:set_int("smoky", nil)
|
this_spawner_meta:set_int("smoky", 0)
|
||||||
this_spawner_meta:set_int("sound", nil)
|
this_spawner_meta:set_int("sound", 0)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -34,7 +34,7 @@ local function start_smoke(pos, node, clicker, chimney)
|
|||||||
})
|
})
|
||||||
if chimney == 1 then
|
if chimney == 1 then
|
||||||
this_spawner_meta:set_int("smoky", id)
|
this_spawner_meta:set_int("smoky", id)
|
||||||
this_spawner_meta:set_int("sound", nil)
|
this_spawner_meta:set_int("sound", 0)
|
||||||
else
|
else
|
||||||
s_handle = minetest.sound_play("fire_small", {
|
s_handle = minetest.sound_play("fire_small", {
|
||||||
pos = pos,
|
pos = pos,
|
||||||
@ -62,8 +62,8 @@ local function stop_smoke(pos)
|
|||||||
end, s_handle)
|
end, s_handle)
|
||||||
end
|
end
|
||||||
|
|
||||||
this_spawner_meta:set_int("smoky", nil)
|
this_spawner_meta:set_int("smoky", 0)
|
||||||
this_spawner_meta:set_int("sound", nil)
|
this_spawner_meta:set_int("sound", 0)
|
||||||
end
|
end
|
||||||
|
|
||||||
minetest.register_node("fake_fire:ice_fire", {
|
minetest.register_node("fake_fire:ice_fire", {
|
||||||
|
Loading…
Reference in New Issue
Block a user