13
0
geforkt von Mirrors/Paper

SPIGOT-1899: Fix inverted potion arguments.

By: md_5 <git@md-5.net>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2016-03-12 20:45:04 +11:00
Ursprung 46b34edb29
Commit 2fe89bac6f

Datei anzeigen

@ -143,7 +143,7 @@ public class Potion {
Validate.isTrue(to.hasItemMeta(), "given itemstack is not a potion");
Validate.isTrue(to.getItemMeta() instanceof PotionMeta, "given itemstack is not a potion");
PotionMeta meta = (PotionMeta) to.getItemMeta();
meta.setBasePotionData(new PotionData(type, level == 2, extended));
meta.setBasePotionData(new PotionData(type, extended, level == 2));
to.setItemMeta(meta);
}