Reduce kit mystic mana regen to 10%

This commit is contained in:
libraryaddict 2015-01-25 18:33:22 +13:00
parent 8262eb9f48
commit c19f10aff9
2 changed files with 2 additions and 2 deletions

View File

@ -1001,7 +1001,7 @@ public class WizardBattles extends SoloGame
}
else if (kit instanceof KitMystic)
{
wizard.setManaPerTick(3F / 20F);
wizard.setManaPerTick(wizard.getManaPerTick() * 1.1F);
}
changeWandsTitles(player);

View File

@ -19,7 +19,7 @@ public class KitMystic extends Kit
{
super(manager, "Mystic", KitAvailability.Free, new String[]
{
"Mana regeneration increased by 20%"
"Mana regeneration increased by 10%"
}, new Perk[0], EntityType.WITCH, new ItemStack(Material.BLAZE_ROD));
}