From 43acec290067f9aca534647d46ba1f13cfeb377a Mon Sep 17 00:00:00 2001
From: TechDudie <73961295+TechDudie@users.noreply.github.com>
Date: Tue, 09 Feb 2021 19:03:55 +0100
Subject: [PATCH] Add Rubber Goo as replacement for the grinder (#578)

---
 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