From 7537d6cd7a5c3efd40e2ab90da70715a15b28f78 Mon Sep 17 00:00:00 2001 From: SenseiKiwi Date: Thu, 15 Aug 2013 05:35:03 -0400 Subject: [PATCH] Decreased Default Gateway Generation Chance Decreased the default chance of a gateway generating. This won't affect users unless they clear their config files. The decision is based on user feedback and recent experiments on how common gateways could be. --- StevenDimDoors/mod_pocketDim/DDProperties.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/StevenDimDoors/mod_pocketDim/DDProperties.java b/StevenDimDoors/mod_pocketDim/DDProperties.java index 243be959..a10cb31a 100644 --- a/StevenDimDoors/mod_pocketDim/DDProperties.java +++ b/StevenDimDoors/mod_pocketDim/DDProperties.java @@ -214,9 +214,9 @@ public class DDProperties "Sets the chance (out of " + RiftGenerator.MAX_CLUSTER_GENERATION_CHANCE + ") that a cluster of rifts will " + "generate in a given chunk. The default chance is 3.").getInt(); - GatewayGenerationChance = config.get(Configuration.CATEGORY_GENERAL, "Gateway Generation Chance", 40, + GatewayGenerationChance = config.get(Configuration.CATEGORY_GENERAL, "Gateway Generation Chance", 10, "Sets the chance (out of " + RiftGenerator.MAX_GATEWAY_GENERATION_CHANCE + ") that a Rift Gateway will " + - "generate in a given chunk. The default chance is 40.").getInt(); + "generate in a given chunk. The default chance is 10.").getInt(); RiftSpreadModifier = config.get(Configuration.CATEGORY_GENERAL, "Rift Spread Modifier", 3, "Sets the number of times a rift can spread. 0 prevents rifts from spreading at all. " +