Recycling Center Number modification.

master_event
sigonasr2 11 years ago
parent 8014931d6d
commit 310a0964a5
  1. 4
      BankEconomyMod/src/me/kaZep/Base/RecyclingCenterNode.java

@ -13,8 +13,8 @@ import org.bukkit.plugin.Plugin;
//deposit, choosing the closest one. //deposit, choosing the closest one.
public class RecyclingCenterNode { 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 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.2; //The amount of chance that each item will decrease the chest. Increase this for more items. public static double chestdecrease = 0.05; //The amount of chance that each item will decrease the chest. Increase this for more items.
List<Location> locations; //List of all chest locations for this Node. List<Location> locations; //List of all chest locations for this Node.
int itemslot; //Stores the current item we are on in that chest. From 0-26. 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. double chance; //The chance we will let an item in. This increases over time to prevent overpopulation.

Loading…
Cancel
Save