Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-12-26 02:50:06 +01:00
Don't stop edits for old clipboards, attempt to load them anyway (for now)
Dieser Commit ist enthalten in:
Ursprung
8593c2df9f
Commit
bfd9e5b347
@ -150,9 +150,15 @@ public class DiskOptimizedClipboard extends LinearClipboard implements Closeable
|
|||||||
private static BlockVector3 readSize(File file) {
|
private static BlockVector3 readSize(File file) {
|
||||||
try (DataInputStream is = new DataInputStream(new FileInputStream(file))) {
|
try (DataInputStream is = new DataInputStream(new FileInputStream(file))) {
|
||||||
int version = is.readChar();
|
int version = is.readChar();
|
||||||
if (version > VERSION) {
|
int x;
|
||||||
throw new UnsupportedOperationException("Unsupported clipboard-on-disk version: " + version);
|
if (version != 1) {
|
||||||
|
x = version;
|
||||||
|
} else {
|
||||||
|
x = is.readChar();
|
||||||
}
|
}
|
||||||
|
// if (version > VERSION) {
|
||||||
|
// throw new UnsupportedOperationException("Unsupported clipboard-on-disk version: " + version);
|
||||||
|
// }
|
||||||
return BlockVector3.at(is.readChar(), is.readChar(), is.readChar());
|
return BlockVector3.at(is.readChar(), is.readChar(), is.readChar());
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren