Skip to content

Commit 3e4abd9

Browse files
committed
Corrected bug on unpacker
1 parent 134264d commit 3e4abd9

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

tools/jpaktool.pyc

2.88 KB
Binary file not shown.

tools/unpacker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
mkdir(os.path.splitext(os.path.basename(packfile))[0] + "/")
2222
volume = open(packfile, "rb")
2323
filetable = GetFileTable(volume)
24-
ProcessFolder(filetable, volume, root)
24+
ProcessFolder(filetable, volume, "")
2525
volume.close()
2626
else:
2727
print '''This python script will take a jpak as argument, and generates a folder with same name of the file, with contents extracted.

0 commit comments

Comments
 (0)