This commit is contained in:
Jesse Boyd 2017-04-20 16:35:49 +10:00
parent 39f1a75517
commit f0e310da6d
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F
2 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,7 @@ ext {
date = git.head().date.format("yy.MM.dd")
revision = "-${git.head().abbreviatedId}"
parents = git.head().parentIds;
index = -88; // Offset to mach CI
index = -90; // Offset to mach CI
int major, minor, patch;
major = minor = patch = 0;
for (;parents != null && !parents.isEmpty();index++) {

View File

@ -79,6 +79,7 @@ public class FloodFillTool implements BlockTool {
} catch (WorldEditException e) {
throw new RuntimeException(e);
}
editSession.flushQueue();
return true;
}