From f165035cfabc5728f440dcfb0d1872a71bcbfca2 Mon Sep 17 00:00:00 2001 From: David Vierra Date: Wed, 17 Aug 2011 17:02:06 -1000 Subject: [PATCH] FakeChunk now inherits from EntityLevel, so it has getEntitiesInBox and other methods --- level.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level.py b/level.py index 11ed11d..5096cd3 100644 --- a/level.py +++ b/level.py @@ -147,7 +147,7 @@ class MCLevel(object): position. Subclasses override fakeBlocksForChunk and fakeDataForChunk to fill in the chunk arrays""" - class FakeChunk: + class FakeChunk(EntityLevel): def load(self):pass def compress(self):pass def __init__(self):pass