From f806ed9eee8c13eb0b4868641311d25257c63f46 Mon Sep 17 00:00:00 2001 From: orwell96 Date: Tue, 20 Dec 2016 14:17:39 +0100 Subject: Turning mod into a modpack and separating the trains from the core mod --- debugitems.lua | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 debugitems.lua (limited to 'debugitems.lua') diff --git a/debugitems.lua b/debugitems.lua deleted file mode 100644 index b3164ff..0000000 --- a/debugitems.lua +++ /dev/null @@ -1,36 +0,0 @@ -minetest.register_tool("advtrains:tunnelborer", -{ - description = "tunnelborer", - groups = {cracky=1}, -- key=name, value=rating; rating=1..3. - inventory_image = "drwho_screwdriver.png", - wield_image = "drwho_screwdriver.png", - stack_max = 1, - range = 7.0, - - on_place = function(itemstack, placer, pointed_thing) - - end, - --[[ - ^ Shall place item and return the leftover itemstack - ^ default: minetest.item_place ]] - on_use = function(itemstack, user, pointed_thing) - if pointed_thing.type=="node" then - for x=-1,1 do - for y=-1,1 do - for z=-1,1 do - minetest.remove_node(vector.add(pointed_thing.under, {x=x, y=y, z=z})) - end - end - end - end - end, ---[[ -^ default: nil -^ Function must return either nil if no item shall be removed from -inventory, or an itemstack to replace the original itemstack. -e.g. itemstack:take_item(); return itemstack -^ Otherwise, the function is free to do what it wants. -^ The default functions handle regular use cases. -]] -} -) -- cgit v1.2.3