From 7d39136764c894cb4adc3f0726f1df5eb6a4926b Mon Sep 17 00:00:00 2001
From: SmallJoker <SmallJoker@users.noreply.github.com>
Date: Tue, 25 Oct 2022 18:03:51 +0200
Subject: [PATCH] Chainsaw: Partial rewrite, various improvements (#607)

---
 technic/machines/register/grindings.lua |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/technic/machines/register/grindings.lua b/technic/machines/register/grindings.lua
index 38d5ce9..3238725 100644
--- a/technic/machines/register/grindings.lua
+++ b/technic/machines/register/grindings.lua
@@ -1,6 +1,5 @@
 local S = technic.getter
 local moretrees = minetest.get_modpath("moretrees")
-local mesecons_materials = minetest.get_modpath("mesecons_materials")
 local dye = minetest.get_modpath("dye")
 
 -- sawdust, the finest wood/tree grinding
@@ -8,7 +7,6 @@
 minetest.register_craftitem(sawdust, {
 	description = S("Sawdust"),
 	inventory_image = "technic_sawdust.png",
-	on_place_on_ground = minetest.craftitem_place_item,
 })
 minetest.register_craft({ type = "fuel", recipe = sawdust, burntime = 6 })
 technic.register_compressor_recipe({ input = {sawdust .. " 4"}, output = "default:wood" })
@@ -25,7 +23,6 @@
 	minetest.register_craftitem(grindings_name, {
 		description = S("%s Grinding"):format(S(name)),
 		inventory_image = inventory_image,
-		on_place_on_ground = minetest.craftitem_place_item,
 	})
 	minetest.register_craft({
 		type = "fuel",

--
Gitblit v1.8.0