Quickfixes.

This commit is contained in:
sigonasr2 2013-11-18 03:54:29 -07:00
parent 0b50c66934
commit 932acf87e9
2 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,6 @@
name: BankEconomy name: BankEconomy
main: me.kaZep.Base.Main main: me.kaZep.Base.Main
version: 261 version: 262
description: Bank plugin which stores money. description: Bank plugin which stores money.
commands: commands:
bankeconomy: bankeconomy:

View File

@ -40,10 +40,10 @@ public class EnchantLevelDatabase {
public List<StoreValues> iron_sword = new ArrayList<StoreValues>(); public List<StoreValues> iron_sword = new ArrayList<StoreValues>();
public List<StoreValues> gold_sword = new ArrayList<StoreValues>(); public List<StoreValues> gold_sword = new ArrayList<StoreValues>();
public List<StoreValues> diamond_sword = new ArrayList<StoreValues>(); public List<StoreValues> diamond_sword = new ArrayList<StoreValues>();
public List<StoreValues> chain_helmet = new ArrayList<StoreValues>();; public List<StoreValues> chain_helmet = new ArrayList<StoreValues>();
public List<StoreValues> chain_chestplate = new ArrayList<StoreValues>();; public List<StoreValues> chain_chestplate = new ArrayList<StoreValues>();
public List<StoreValues> chain_leggings = new ArrayList<StoreValues>();; public List<StoreValues> chain_leggings = new ArrayList<StoreValues>();
public List<StoreValues> chain_boots = new ArrayList<StoreValues>();; public List<StoreValues> chain_boots = new ArrayList<StoreValues>();
public EnchantLevelDatabase() { public EnchantLevelDatabase() {
stone_hoe.add(new StoreValues(0.359,Enchantment.DURABILITY,1,5)); stone_hoe.add(new StoreValues(0.359,Enchantment.DURABILITY,1,5));
stone_shovel.add(new StoreValues(0.636,Enchantment.DIG_SPEED,1,5)); stone_shovel.add(new StoreValues(0.636,Enchantment.DIG_SPEED,1,5));
@ -464,6 +464,5 @@ public class EnchantLevelDatabase {
chain_chestplate.add(new StoreValues(0.083,Enchantment.PROTECTION_PROJECTILE,2,10)); chain_chestplate.add(new StoreValues(0.083,Enchantment.PROTECTION_PROJECTILE,2,10));
chain_chestplate.add(new StoreValues(0.025,Enchantment.PROTECTION_FIRE,1,10)); chain_chestplate.add(new StoreValues(0.025,Enchantment.PROTECTION_FIRE,1,10));
chain_chestplate.add(new StoreValues(0.019,Enchantment.THORNS,1,10)); chain_chestplate.add(new StoreValues(0.019,Enchantment.THORNS,1,10));
} }
} }