Skip to content

Commit

Permalink
Update asset dumper for new RARC implementation API
Browse files Browse the repository at this point in the history
  • Loading branch information
LagoLunatic committed Jul 15, 2020
1 parent 209f1b4 commit 25526cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion asset_dumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ def dump_all_textures_in_gcm(self, gcm, out_dir):
try:
if file_ext == ".arc":
out_path = os.path.join(out_dir, rel_dir, base_name)
rarc = RARC(gcm.get_changed_file_data(file_path))
rarc = RARC()
rarc.read(gcm.get_changed_file_data(file_path))
for _ in self.dump_all_textures_in_rarc(rarc, out_path, display_path_prefix=file_path):
continue
elif file_ext == ".bti":
Expand Down

0 comments on commit 25526cf

Please sign in to comment.