From 9e69a6db739622d4eccb103dfd8403898301041e Mon Sep 17 00:00:00 2001
From: Vanessa Dannenberg <vanessa.e.dannenberg@gmail.com>
Date: Mon, 11 Jun 2018 14:06:37 -0400
Subject: [PATCH] more set_int fixes

---
 fake_fire/init.lua | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/fake_fire/init.lua b/fake_fire/init.lua
index c7408b47..55099768 100644
--- a/fake_fire/init.lua
+++ b/fake_fire/init.lua
@@ -16,8 +16,8 @@ local function start_smoke(pos, node, clicker, chimney)
 			end, s_handle)
 		end
 		minetest.delete_particlespawner(id)
-		this_spawner_meta:set_int("smoky", nil)
-		this_spawner_meta:set_int("sound", nil)
+		this_spawner_meta:set_int("smoky", 0)
+		this_spawner_meta:set_int("sound", 0)
 		return
 	end
 
@@ -34,7 +34,7 @@ local function start_smoke(pos, node, clicker, chimney)
 		})
 		if chimney == 1 then
 			this_spawner_meta:set_int("smoky", id)
-			this_spawner_meta:set_int("sound", nil)
+			this_spawner_meta:set_int("sound", 0)
 		else
 			s_handle = minetest.sound_play("fire_small", {
 				pos = pos,
@@ -62,8 +62,8 @@ local function stop_smoke(pos)
 		end, s_handle)
 	end
 
-	this_spawner_meta:set_int("smoky", nil)
-	this_spawner_meta:set_int("sound", nil)
+	this_spawner_meta:set_int("smoky", 0)
+	this_spawner_meta:set_int("sound", 0)
 end
 
 minetest.register_node("fake_fire:ice_fire", {
-- 
GitLab