2.1.13 Release

This commit is contained in:
nossr50
2019-03-08 15:34:35 -08:00
parent ba88831c88
commit 6f15cd4005
5 changed files with 9 additions and 4 deletions

View File

@ -48,11 +48,13 @@ public class HashChunkManager implements ChunkManager {
throw new RuntimeException("Wrong class type read for chunk meta data for " + x + ", " + z);
}
catch (IOException e) {
e.printStackTrace();
// Assume the format changed
return null;
//throw new RuntimeException("Unable to process chunk meta data for " + x + ", " + z, e);
}
catch (ClassNotFoundException e) {
e.printStackTrace();
// Assume the format changed
//System.out.println("[SpoutPlugin] is Unable to find serialized class for " + x + ", " + z + ", " + e.getMessage());
return null;