diff options
author | DonBatman <serfdon@gmail.com> | 2015-10-22 09:25:40 -0700 |
---|---|---|
committer | DonBatman <serfdon@gmail.com> | 2015-10-22 09:25:40 -0700 |
commit | f8e75176876652333b376398d982ad06ac26b66f (patch) | |
tree | 5dc85a8e0640c685507e7ff761a5132029f1c2d9 /blocks.lua | |
parent | 834797777bbd6c2510742885a192987fdbfb3d79 (diff) |
Added score to table. Changed craft items to nodes. Changed sounds. Changed blocks to immortal
Diffstat (limited to 'blocks.lua')
-rw-r--r-- | blocks.lua | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,7 +1,7 @@ local sbox = { type = "fixed", fixed = { - {0, 0, 0, 0, 0, 0} + {-0.5, -0.5, -0.0625, 0.5, 0.5, 0.0625} } } local cbox = { @@ -40,7 +40,7 @@ minetest.register_node("mypacman:"..itm, { paramtype2 = "facedir", light_source = lit, walkable = tf, - groups = {disable_jump = 1, not_in_creative_inventory = 1}, + groups = {disable_jump = 1, immortal=1, not_in_creative_inventory = 1}, selection_box = sbox, collision_box = cbox, @@ -53,7 +53,7 @@ minetest.register_node("mypacman:glass", { drawtype = "glasslike", paramtype = "light", paramtype2 = "facedir", - groups = {cracky=3,not_in_creative_inventory = 1}, + groups = {immortal=1,not_in_creative_inventory = 1}, selection_box = cbox, collision_box = cbox, @@ -65,7 +65,7 @@ minetest.register_node("mypacman:glassw", { paramtype = "light", paramtype2 = "facedir", walkable = false, - groups = {cracky=3,not_in_creative_inventory = 1}, + groups = {immortal=1,not_in_creative_inventory = 1}, selection_box = cbox, colision_box = cbox, |