0

some config file clarifications

This commit is contained in:
Aaron Griffith
2011-04-30 23:06:44 -04:00
parent d163e7c527
commit 9a537e76e2
2 changed files with 4 additions and 3 deletions

View File

@@ -91,7 +91,7 @@ class QuadtreeGen(object):
yradius >= worldobj.maxrow and -yradius <= worldobj.minrow: yradius >= worldobj.maxrow and -yradius <= worldobj.minrow:
break break
else: else:
raise ValueError("Your map is waaaay too big! Use the '-z' or '--zoom' options.") raise ValueError("Your map is waaaay too big! Use the 'zoom' option in 'settings.py'.")
self.p = p self.p = p
else: else:

View File

@@ -2,8 +2,9 @@
# Please see the README or https://github.com/brownan/Minecraft-Overviewer/wiki/DTT-Upgrade-Guide # Please see the README or https://github.com/brownan/Minecraft-Overviewer/wiki/DTT-Upgrade-Guide
# for more details. # for more details.
# To use this file, simply copy it to settings.py and make any necessary changes # This file is not meant to be used directly, but instead it is supposed to
# to suite your needs. # provide examples of interesting things you can do with the settings file. Most
# of the time, a simple 'setting_name = value' will work.
# This file is a python script, so you can import and python module you wish or # This file is a python script, so you can import and python module you wish or
# use any built-in python function, though this is not normally necessary # use any built-in python function, though this is not normally necessary