From 93466cc42a41763f09aba59ac44b38f7cecaefb0 Mon Sep 17 00:00:00 2001 From: David Vierra Date: Fri, 26 Nov 2010 03:25:36 -1000 Subject: [PATCH] presentChunks is now allChunks --- mclevel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mclevel.py b/mclevel.py index 0eb0c05..cbecd34 100644 --- a/mclevel.py +++ b/mclevel.py @@ -318,7 +318,7 @@ def unpack_first(func): class MCLevel(object): """ MCLevel is an abstract class providing many routines to the different level types, including a common copyEntitiesFrom built on class-specific routines, and - a dummy getChunk/getPresentChunks for the finite levels. + a dummy getChunk/allChunks for the finite levels. MCLevel subclasses must have Width, Length, and Height attributes. The first two are always zero for infinite levels. Subclasses must also have Blocks, and optionally Data and BlockLight.