diff --git a/.thunderstore/zipfiles.py b/.thunderstore/zipfiles.py index bc67cac..ab372ef 100644 --- a/.thunderstore/zipfiles.py +++ b/.thunderstore/zipfiles.py @@ -4,7 +4,7 @@ import zipfile def zipfiles(z_obj, dir): for root, dirs, files in os.walk(dir): for file in files: - file_loc = file if not file.endswith('.dll') else f'plugins/{file}' + file_loc = file if not file.endswith('.dll') else f'plugins/Chev/{file}' z_obj.write(os.path.join(root, file), arcname=file_loc) for folder in next(os.walk('.'))[1]: