From cb94946e1e596b42b21d7e73213f59feb8e76f92 Mon Sep 17 00:00:00 2001 From: DonBatman Date: Sat, 24 Oct 2015 21:34:06 -0700 Subject: alligned score board added pacmini board --- pacmine/fruit.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'pacmine/fruit.lua') diff --git a/pacmine/fruit.lua b/pacmine/fruit.lua index 2969ecc..4c21ccc 100644 --- a/pacmine/fruit.lua +++ b/pacmine/fruit.lua @@ -2,7 +2,11 @@ local cbox = { type = "fixed", fixed = {{-0.875, 0.125, -0.0625, -0.125, 0.875, 0.0625}} } - +local sbox = { + type = "fixed", + fixed = {{0, 0, 0, 0, 0, 0}} + } + local pelletitems = { {"cherrys", "Cherrys","2"}, {"apple", "Apple","3"}, @@ -26,10 +30,9 @@ minetest.register_node("pacmine:"..itm,{ light_source = 14, groups = {immortal=1,not_in_creative_inventory = 0}, --node_box = cbox, - selection_box = cbox, + selection_box = sbox, collision_box = cbox, on_timer = function(pos, dtime) - print("DELETEEE??") minetest.remove_node(pos) end }) -- cgit v1.2.3