We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7dcf7a commit fba4e46Copy full SHA for fba4e46
src/main/java/com/simibubi/create/content/fluids/potion/PotionFluidHandler.java
@@ -61,8 +61,6 @@ public static FluidStack getFluidFromPotionItem(ItemStack stack) {
61
Potion potion = PotionUtils.getPotion(stack);
62
List<MobEffectInstance> list = PotionUtils.getCustomEffects(stack);
63
BottleType bottleTypeFromItem = bottleTypeFromItem(stack.getItem());
64
- if (potion == Potions.EMPTY)
65
- return FluidStack.EMPTY;
66
if (potion == Potions.WATER && list.isEmpty() && bottleTypeFromItem == BottleType.REGULAR)
67
return new FluidStack(Fluids.WATER, FluidConstants.BOTTLE);
68
FluidStack fluid = PotionFluid.withEffects(FluidConstants.BOTTLE, potion, list);
0 commit comments