Fixed Empty Dungeon Guide Bug and Updated Guide #30

Merged
SenseiKiwi merged 3 commits from master into master 2013-06-20 22:32:49 +00:00
Showing only changes of commit 58b72b3b5a - Show all commits

View File

@@ -12,6 +12,9 @@ public class copyfile
{
try
{
System.out.println("DIMDOORS COPYING FILE TIME");
System.out.println("src: " + ori);
System.out.println("dest: " + dest);
InputStream in = (mod_pocketDim.class.getClass().getResourceAsStream(ori));
OutputStream out = new FileOutputStream(dest);
byte[] buf = new byte[1024];
@@ -24,6 +27,7 @@ public class copyfile
}
catch(Exception e)
{
e.printStackTrace();
return false;
}
return true;