0

Merge branch 'master' of github.com:overviewer/Minecraft-Overviewer

Conflicts:
	overviewer_core/world.py
This commit is contained in:
Andrew Brown
2012-03-02 19:19:27 -05:00
2 changed files with 5 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ def findGitHash():
def findGitVersion():
try:
p = Popen(['git', 'describe', '--tags'], stdout=PIPE, stderr=PIPE, shell=True)
p = Popen('git describe --tags', stdout=PIPE, stderr=PIPE, shell=True)
p.stderr.close()
line = p.stdout.readlines()[0]
if line.startswith('release-'):

View File

@@ -79,7 +79,10 @@ class World(object):
# if not mcregion, error out early
data = nbt.load(os.path.join(self.worlddir, "level.dat"))[1]['Data']
if not ('version' in data and data['version'] == 19132):
logging.error("Sorry, This version of Minecraft-Overviewer only works with the old McRegion format. You will need to upgrade to render Minecraft 1.2 ('Anvil') worlds")
logging.error("Sorry, This version of Minecraft-Overviewer only works with McRegion format")
if ('version' in data and data['version'] == 19133):
logging.error("You will need to upgrade to render Minecraft 1.2 ('Anvil') worlds")
logging.error("Please see http://overviewer.org/blog/2012/03/01/anvil-support/")
sys.exit(1)
if 'LevelName' in data:
# level.dat should have the LevelName attribute so we'll use that