From 304329864021408af65e190b0dfe4cddfdbd9ccd Mon Sep 17 00:00:00 2001 From: RoboMWM Date: Sat, 4 Feb 2017 13:13:07 -0800 Subject: [PATCH] v16.6 Compatibility with custom biomes that don't set a temperature --- pom.xml | 2 +- src/me/ryanhamshire/GriefPrevention/GriefPrevention.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f6412a9..481e6e4 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ me.ryanhamshire GriefPrevention - 16.5.1 + 16.6 1.6 1.6 diff --git a/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java b/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java index 0a9e4ff..c9ec9a8 100644 --- a/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java +++ b/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java @@ -3532,7 +3532,7 @@ public class GriefPrevention extends JavaPlugin { if(world.isChunkLoaded(chunkx, chunkz)) { - snapshots.add(world.getChunkAt(chunkx, chunkz).getChunkSnapshot(true, true, true)); + snapshots.add(world.getChunkAt(chunkx, chunkz).getChunkSnapshot(true, true, false)); } } }