cache: fix itemdumper

This commit is contained in:
Adam
2017-02-26 17:49:03 -05:00
parent ea612d1879
commit 73b0beaea8

View File

@@ -88,7 +88,8 @@ public class ItemDumper
for (net.runelite.cache.fs.File f : archive.getFiles())
{
loader.load(f.getFileId(), new InputStream(f.getContents()));
ItemDefinition def = loader.load(f.getFileId(), new InputStream(f.getContents()));
items.add(def);
}
}
}