From d4bfd1fc3c2a31611fac5dddefbf8de67b5e3ea8 Mon Sep 17 00:00:00 2001 From: TheRandomLegoBrick Date: Fri, 12 Aug 2022 13:36:02 -0700 Subject: [PATCH] Remove debug tests --- mods/ITEMS/mcl_farming/wheat.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/mods/ITEMS/mcl_farming/wheat.lua b/mods/ITEMS/mcl_farming/wheat.lua index 429cbed1d..4a58f8df6 100644 --- a/mods/ITEMS/mcl_farming/wheat.lua +++ b/mods/ITEMS/mcl_farming/wheat.lua @@ -152,10 +152,8 @@ local function update_campfires(pos) local pos_above = {x = pos.x, y = pos.y + 1, z = pos.z} local node_above = minetest.get_node(pos_above) - minetest.chat_send_all(node_above.name) if node_above.name == "mcl_campfires:campfire_lit" or node_above.name == "mcl_campfires:soul_campfire_lit" then mcl_campfires.register_smoke(pos_above) - minetest.chat_send_all("success") end end