From 310a0964a595e20b8cc767048936ce82feef1d06 Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Mon, 18 Nov 2013 20:18:46 -0700 Subject: [PATCH] Recycling Center Number modification. --- BankEconomyMod/src/me/kaZep/Base/RecyclingCenterNode.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BankEconomyMod/src/me/kaZep/Base/RecyclingCenterNode.java b/BankEconomyMod/src/me/kaZep/Base/RecyclingCenterNode.java index 2303b4e..591ecc6 100644 --- a/BankEconomyMod/src/me/kaZep/Base/RecyclingCenterNode.java +++ b/BankEconomyMod/src/me/kaZep/Base/RecyclingCenterNode.java @@ -13,8 +13,8 @@ import org.bukkit.plugin.Plugin; //deposit, choosing the closest one. public class RecyclingCenterNode { - public static double chanceincrease = 1.0; //The amount of chance that each item will increase the chest as it gets placed. Increase this for less items. - public static double chestdecrease = 0.2; //The amount of chance that each item will decrease the chest. Increase this for more items. + public static double chanceincrease = 3.0; //The amount of chance that each item will increase the chest as it gets placed. Increase this for less items. + public static double chestdecrease = 0.05; //The amount of chance that each item will decrease the chest. Increase this for more items. List locations; //List of all chest locations for this Node. int itemslot; //Stores the current item we are on in that chest. From 0-26. double chance; //The chance we will let an item in. This increases over time to prevent overpopulation.