diff options
author | DonBatman <serfdon@gmail.com> | 2015-10-24 08:42:19 -0700 |
---|---|---|
committer | DonBatman <serfdon@gmail.com> | 2015-10-24 08:42:19 -0700 |
commit | d2788c63bd7fae301d995a3eaef4c36fda8d0864 (patch) | |
tree | f14d2c085fa5ffeb55ed7d6ee6c0b68587e4e041 /pacmine/gamestate.lua | |
parent | 3a59f18eb196a3fddb8c67d5e5143a6e3ab0e11b (diff) |
fixed portals
made new schematic
Diffstat (limited to 'pacmine/gamestate.lua')
-rwxr-xr-x | pacmine/gamestate.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pacmine/gamestate.lua b/pacmine/gamestate.lua index 6c27d04..207435a 100755 --- a/pacmine/gamestate.lua +++ b/pacmine/gamestate.lua @@ -39,7 +39,7 @@ function pacmine.game_start(pos, player) minetest.log("action","New pacmine game started at " .. id .. " by " .. gamestate.player_name) -- place schematic - local schem = minetest.get_modpath("pacmine").."/schems/pacmine_3.mts" + local schem = minetest.get_modpath("pacmine").."/schems/pacmine.mts" minetest.place_schematic({x=pos.x,y=pos.y-1,z=pos.z-2},schem,0, "air", true) -- Set start positions @@ -138,7 +138,7 @@ function pacmine.on_player_got_pellet(player) minetest.after(3.0, function() minetest.chat_send_player(name, "Starting Level "..gamestate.level) -- place schematic - local schem = minetest.get_modpath("pacmine").."/schems/pacmine_3.mts" + local schem = minetest.get_modpath("pacmine").."/schems/pacmine.mts" minetest.place_schematic(vector.add(gamestate.pos, {x=0,y=-1,z=-2}),schem,0, "air", true) -- Set start positions |