Small cosmetics.

This commit is contained in:
Sascha L. Teichmann 2014-09-07 11:15:14 +02:00
parent f83efba3cf
commit cbc5ed0c6c

View File

@ -145,10 +145,7 @@ func InterleavedToCoord(pos int64) Coord {
}
pos >>= 1
}
x += minValue
y += minValue
z += minValue
return Coord{X: x, Y: y, Z: z}
return Coord{X: x + minValue, Y: y + minValue, Z: z + minValue}
}
func CoordToPlain(c Coord) int64 {