mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 21:40:46 +00:00
Opening ABCs in ZIP files
This commit is contained in:
@@ -73,7 +73,8 @@ public class ZippedBundle implements Bundle {
|
||||
|
||||
while ((entry = zip.getNextEntry()) != null) {
|
||||
if (entry.getName().toLowerCase().endsWith(".swf")
|
||||
|| entry.getName().toLowerCase().endsWith(".gfx")) {
|
||||
|| entry.getName().toLowerCase().endsWith(".gfx")
|
||||
|| entry.getName().toLowerCase().endsWith(".abc")) {
|
||||
keySet.add(entry.getName());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -511,7 +511,7 @@ public class ABC implements Openable {
|
||||
this.parentTag = tag;
|
||||
this.file = file;
|
||||
this.fileTitle = fileTitle;
|
||||
if (file != null) {
|
||||
if (file != null || fileTitle != null) {
|
||||
isOpenable = true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user