[Forge] Add slash to location of defaults folder to allow locating of worldedit.properties file.

This commit is contained in:
rhylos 2014-06-27 16:15:56 -07:00 committed by Wizjany
parent d9cea950b0
commit b8bc055d21

View File

@ -242,7 +242,7 @@ public class ForgeWorldEdit {
checkNotNull(jar);
checkNotNull(name);
String path = "defaults/" + name;
String path = "/defaults/" + name;
File targetFile = new File(getWorkingDir(), name);
Closer closer = Closer.create();