Skip to content

Commit

Permalink
cache: fix itemdumper
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam- committed Feb 26, 2017
1 parent ea612d1 commit 73b0bea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cache/src/main/java/net/runelite/cache/ItemDumper.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ public void load() throws IOException

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);
}
}
}
Expand Down

0 comments on commit 73b0bea

Please sign in to comment.