0

clarified texture issue in readme. Misc changes

Added check for python >=2.6
Added current directory and program directory to paths to search for
minecraft.jar
This commit is contained in:
Andrew Brown
2010-09-26 23:04:12 -04:00
parent f5f572a92b
commit a957d0b097
3 changed files with 27 additions and 2 deletions

View File

@@ -59,6 +59,8 @@ def _find_file(filename, mode="rb"):
"Application Support", "minecraft","bin","minecraft.jar"))
jarpaths.append(os.path.join(os.environ['HOME'], ".minecraft", "bin",
"minecraft.jar"))
jarpaths.append(programdir)
jarpaths.append(os.getcwd())
for jarpath in jarpaths:
if os.path.exists(jarpath):