Skip to content

Commit fba4e46

Browse files
committed
Fix #1580
1 parent e7dcf7a commit fba4e46

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/com/simibubi/create/content/fluids/potion/PotionFluidHandler.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@ public static FluidStack getFluidFromPotionItem(ItemStack stack) {
6161
Potion potion = PotionUtils.getPotion(stack);
6262
List<MobEffectInstance> list = PotionUtils.getCustomEffects(stack);
6363
BottleType bottleTypeFromItem = bottleTypeFromItem(stack.getItem());
64-
if (potion == Potions.EMPTY)
65-
return FluidStack.EMPTY;
6664
if (potion == Potions.WATER && list.isEmpty() && bottleTypeFromItem == BottleType.REGULAR)
6765
return new FluidStack(Fluids.WATER, FluidConstants.BOTTLE);
6866
FluidStack fluid = PotionFluid.withEffects(FluidConstants.BOTTLE, potion, list);

0 commit comments

Comments
 (0)