1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-04-04 13:31:03 +02:00

Fix a typo in CraftPotionUtil

This commit is contained in:
Thinkofname 2016-03-25 21:45:42 +00:00
parent 8e5eab2655
commit 6030bc464f

View file

@ -82,7 +82,7 @@ public class CraftPotionUtil {
}
potionType = regular.inverse().get(type);
if (potionType != null) {
return new PotionData(potionType, false, true);
return new PotionData(potionType, false, false);
}
return new PotionData(PotionType.UNCRAFTABLE, false, false);
}