Skip to content

Commit

Permalink
Changelog for v2.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rlf committed Aug 6, 2018
1 parent 94e1af0 commit 5617e54
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Change Log for v2.7.5-bukkit-1.13-pre..v2.7.6
## Change Log for v2.7.6..v2.7.6-RC1


## Translations
Expand Down
9 changes: 4 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,6 @@
</pluginManagement>
</build>
<repositories>
<repository>
<!-- Our repo is last - so we can put in fallback artifacts when the other repos are down -->
<id>rlf-mvn-repo</id>
<url>https://raw.github.com/rlf/mvn-repo/master/</url>
</repository>
<repository>
<id>AWE-mvn-repo</id>
<url>https://raw.github.com/SBPrime/AsyncWorldEdit-API/maven-artifact/</url>
Expand Down Expand Up @@ -98,6 +93,10 @@
<id>bstats-repo</id>
<url>http://repo.bstats.org/content/repositories/releases/</url>
</repository>
<repository>
<id>rlf-mvn-repo</id>
<url>https://raw.github.com/rlf/mvn-repo/master/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ public static void loadIslandSchematic(final File file, final Location origin, P
EditSession editSession = WorldEdit.getInstance().getEditSessionFactory().getEditSession(new BukkitWorld(origin.getWorld()), -1);
editSession.setFastMode(true);
ProtectedRegion region = WorldGuardHandler.getIslandRegionAt(origin);
editSession.setMask(new RegionMask(getRegion(origin.getWorld(), region)));
if (region != null) {
editSession.setMask(new RegionMask(getRegion(origin.getWorld(), region)));
}
try {
ClipboardFormat clipboardFormat = ClipboardFormats.findByFile(file);
try (InputStream in = new FileInputStream(file)) {
Expand Down

0 comments on commit 5617e54

Please sign in to comment.