Increase health threshold for amulet of transience from 2 to 6, fixes #192

This commit is contained in:
Electroblob77
2019-10-05 16:43:17 +01:00
parent 071e299d48
commit b7be05669b
@@ -601,7 +601,7 @@ public class ItemArtefact extends Item {
}else if(artefact == WizardryItems.amulet_transience){
if(player.getHealth() <= 2 && player.world.rand.nextFloat() < 0.25f){
if(player.getHealth() <= 6 && player.world.rand.nextFloat() < 0.25f){
player.addPotionEffect(new PotionEffect(WizardryPotions.transience, 300));
player.addPotionEffect(new PotionEffect(MobEffects.INVISIBILITY, 300, 0, false, false));
}