Skip to content

Commit

Permalink
updated camoflages path
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryQuan committed Jul 15, 2022
1 parent 0c77429 commit dd6d08e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions unpack/unpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,23 +165,23 @@ def packAppAssets(self, output_path='../app/assets'):

# CAMOUFLAGES
self._resetDir(output_path + '/camouflages')
for camouflage in os.listdir(gui_path + '/camouflages'):
for camouflage in os.listdir(gui_path + '/exteriors/camouflages'):
if not camouflage.startswith('PCEC'):
continue
if '_des.png' in camouflage:
continue
shutil.copy(
gui_path + '/camouflages/' + camouflage,
gui_path + '/exteriors/camouflages/' + camouflage,
output_path + '/camouflages/' + camouflage,
)

# PERMOFLAGES
self._resetDir(output_path + '/permoflages')
for permoflage in os.listdir(gui_path + '/permoflages'):
for permoflage in os.listdir(gui_path + '/exteriors/permoflages'):
if '_des.png' in permoflage:
continue
shutil.copy(
gui_path + '/permoflages/' + permoflage,
gui_path + '/exteriors/permoflages/' + permoflage,
output_path + '/permoflages/' + permoflage,
)

Expand Down

0 comments on commit dd6d08e

Please sign in to comment.