3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-11-05 11:00:05 +01:00

Fixed config generation for Windows users

Dieser Commit ist enthalten in:
zml2008 2011-10-02 01:27:52 -07:00
Ursprung b17fb7eaa3
Commit 24056df78a

Datei anzeigen

@ -178,7 +178,7 @@ public class WorldEditPlugin extends JavaPlugin {
null; null;
try { try {
JarFile file = new JarFile(getFile()); JarFile file = new JarFile(getFile());
ZipEntry copy = file.getEntry("defaults" + File.separator + name); ZipEntry copy = file.getEntry("defaults/" + name);
if (copy == null) throw new FileNotFoundException(); if (copy == null) throw new FileNotFoundException();
input = file.getInputStream(copy); input = file.getInputStream(copy);
} catch (IOException e) { } catch (IOException e) {