Fixed the JEI display for power augmented potions

This commit is contained in:
WayofTime 2016-07-26 19:56:49 -04:00
parent 494c620b0b
commit 8ada331f61

View file

@ -67,7 +67,7 @@ public class AlchemyTablePotionAugmentRecipe extends AlchemyTablePotionRecipe
List<PotionEffect> effectList = new ArrayList<PotionEffect>();
int potionLength = wantedPotion.isInstant() ? 1 : BMPotionUtils.getAugmentedLength(baseEffect.getDuration(), lengthAugment, powerAugment - baseEffect.getAmplifier());
effectList.add(new PotionEffect(wantedPotion, potionLength, baseEffect.getAmplifier()));
effectList.add(new PotionEffect(wantedPotion, potionLength, powerAugment - baseEffect.getAmplifier()));
BMPotionUtils.setEffects(outputStack, effectList);