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


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