Disable fast mode usage for snapshot restore.

This commit is contained in:
sk89q 2012-07-10 00:23:32 -07:00
parent 97380f28de
commit b6fd8af242

View File

@ -156,9 +156,6 @@ public class SnapshotRestore {
BlockVector2D chunkPos = entry.getKey();
Chunk chunk;
boolean hasFastMode = editSession.hasFastMode();
editSession.setFastMode(true);
try {
chunk = chunkStore.getChunk(chunkPos, editSession.getWorld());
// Good, the chunk could be at least loaded
@ -179,8 +176,6 @@ public class SnapshotRestore {
} catch (IOException ioe) {
errorChunks.add(chunkPos);
lastErrorMessage = ioe.getMessage();
} finally {
editSession.setFastMode(hasFastMode);
}
}
}