n00b coder repair

This commit is contained in:
Robbie Ferguson 2016-05-18 15:44:25 -04:00
parent aa537a6765
commit acf9658732

View File

@ -262,7 +262,7 @@ local function tpe(player)
local options = { 'x', 'y', 'z' }
local axis = options[math.random(3)]
for i = 1,times do
minetest.after(1, tpj(axis,distance)) -- do this every 1 second
minetest.after(1, function() tpj(axis,distance) ) -- do this every 1 second
end
end