From 8ada331f61a908c462c200032a7af3d8ef3cd824 Mon Sep 17 00:00:00 2001 From: WayofTime Date: Tue, 26 Jul 2016 19:56:49 -0400 Subject: [PATCH] Fixed the JEI display for power augmented potions --- .../recipe/alchemyTable/AlchemyTablePotionAugmentRecipe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTablePotionAugmentRecipe.java b/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTablePotionAugmentRecipe.java index bcb12fb4..bde9ecb6 100644 --- a/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTablePotionAugmentRecipe.java +++ b/src/main/java/WayofTime/bloodmagic/recipe/alchemyTable/AlchemyTablePotionAugmentRecipe.java @@ -67,7 +67,7 @@ public class AlchemyTablePotionAugmentRecipe extends AlchemyTablePotionRecipe List effectList = new ArrayList(); 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);