diff options
author | DonBatman <serfdon@gmail.com> | 2015-10-24 21:34:06 -0700 |
---|---|---|
committer | DonBatman <serfdon@gmail.com> | 2015-10-24 21:34:06 -0700 |
commit | cb94946e1e596b42b21d7e73213f59feb8e76f92 (patch) | |
tree | 3b850035aab669fb1dfda692f5c5f711c72efacb /pacmine/fruit.lua | |
parent | 4a9d35295a47539ebf9a525f14702f8f73f0776d (diff) |
alligned score board
added pacmini board
Diffstat (limited to 'pacmine/fruit.lua')
-rw-r--r-- | pacmine/fruit.lua | 9 |
1 files changed, 6 insertions, 3 deletions
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 }) |