625 Barber St., Suite 150 Athens, GA 30601 | | Hours | Tues-Sun, 10-6 (closed Mon)
def get_block_at(self, x, y, z): """ Returns the block name at specific coordinates. Index calculation: (y * Length + z) * Width + x """ if not self.data: return "air"
if __name__ == "__main__": main()