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 /pong/init.lua | |
parent | 4a9d35295a47539ebf9a525f14702f8f73f0776d (diff) |
alligned score board
added pacmini board
Diffstat (limited to 'pong/init.lua')
-rw-r--r-- | pong/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pong/init.lua b/pong/init.lua index be72843..8c277df 100644 --- a/pong/init.lua +++ b/pong/init.lua @@ -121,6 +121,6 @@ minetest.register_node("pong:block",{ groups = {cracky = 1}, on_rightclick = function(pos, node, player, itemstack, pointed_thing) local schem = minetest.get_modpath("pong").."/schems/pong.mts" - minetest.place_schematic(pos,schem,0, "air", true) + minetest.place_schematic({x=pos.x,y=pos.y-1,z=pos.z},schem,0, "air", true) end, }) |