aboutsummaryrefslogtreecommitdiff
path: root/functions.lua
blob: 83887f89fca976d8c2c81008c22d9811e660bc26 (plain) (blame)
1
2
3
4
5
6
7


function mesecons_debug.get_blockpos(pos)
	return {x = math.floor(pos.x / 16),
	        y = math.floor(pos.y / 16),
	        z = math.floor(pos.z / 16)}
end