diff --git a/src/com/gmail/nossr50/spout/SpoutStuff.java b/src/com/gmail/nossr50/spout/SpoutStuff.java index c6df31015..38fef3444 100644 --- a/src/com/gmail/nossr50/spout/SpoutStuff.java +++ b/src/com/gmail/nossr50/spout/SpoutStuff.java @@ -58,7 +58,7 @@ public class SpoutStuff //System.out.println(theFileName); @SuppressWarnings("static-access") JarFile jar = new JarFile(plugin.mcmmo); - JarEntry entry = jar.getJarEntry(theFileName); + JarEntry entry = jar.getJarEntry("resources/"+theFileName); InputStream is = jar.getInputStream(entry); FileOutputStream os = new FileOutputStream(currentFile); byte[] buf = new byte[(int)entry.getSize()];