v16.6 Compatibility with custom biomes that don't set a temperature

This commit is contained in:
RoboMWM 2017-02-04 13:13:07 -08:00
parent ac319f4e1c
commit 3043298640
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
<groupId>me.ryanhamshire</groupId>
<artifactId>GriefPrevention</artifactId>
<version>16.5.1</version>
<version>16.6</version>
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>

View File

@ -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));
}
}
}