From 9253be07004855de02f34b89f87cd33e287f5c0d Mon Sep 17 00:00:00 2001 From: Matt Caughey Date: Wed, 20 Jan 2016 18:48:48 -0500 Subject: [PATCH] Changed the default temperature setting for BOP world type to medium zones --- .../java/biomesoplenty/common/world/BOPWorldSettings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/biomesoplenty/common/world/BOPWorldSettings.java b/src/main/java/biomesoplenty/common/world/BOPWorldSettings.java index b0c31b51d..4473622bd 100644 --- a/src/main/java/biomesoplenty/common/world/BOPWorldSettings.java +++ b/src/main/java/biomesoplenty/common/world/BOPWorldSettings.java @@ -68,7 +68,7 @@ public class BOPWorldSettings // BOP World properties public LandMassScheme landScheme = LandMassScheme.VANILLA; - public TemperatureVariationScheme tempScheme = TemperatureVariationScheme.LATITUDE; + public TemperatureVariationScheme tempScheme = TemperatureVariationScheme.MEDIUM_ZONES; public RainfallVariationScheme rainScheme = RainfallVariationScheme.MEDIUM_ZONES; public BiomeSize biomeSize = BiomeSize.MEDIUM; public float amplitude = 1.0F; @@ -138,7 +138,7 @@ public class BOPWorldSettings // BOP default values this.landScheme = LandMassScheme.VANILLA; - this.tempScheme = TemperatureVariationScheme.LATITUDE; + this.tempScheme = TemperatureVariationScheme.MEDIUM_ZONES; this.rainScheme = RainfallVariationScheme.MEDIUM_ZONES; this.biomeSize = BiomeSize.MEDIUM; this.amplitude = 1.0F;