[SPIGOT-2176] Missing potion effects after Potion.fromItemStack Created: 12/Apr/16 Updated: 13/Apr/16 Resolved: 13/Apr/16 |
|
Status: | Resolved |
Project: | Spigot |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | Priority: | Minor |
Reporter: | noX | Assignee: | Unassigned |
Resolution: | Invalid | Votes: | 0 |
Labels: | 1.9, bug, potion, potioneffect, spigot |
Description |
I have an ItemStack of a potion with some PotionEffect on it. |
Comments |
Comment by md_5 [ 13/Apr/16 ] |
/** * Potion Adapter for pre-1.9 data values * see @PotionMeta for 1.9+ */ @Deprecated public class Potion { This class is not meant to be used. |
Comment by noX [ 13/Apr/16 ] |
Here you go: // Create potion ItemStack itemstack = new ItemStack(Material.POTION, 1); PotionMeta meta = (PotionMeta) itemstack.getItemMeta(); meta.addCustomEffect(new PotionEffect(PotionEffectType.JUMP, 10, 0), true); itemstack.setItemMeta(meta); // Lookup effects Potion potion = Potion.fromItemStack(itemstack); PotionMeta meta = (PotionMeta) itemstack.getItemMeta(); System.err.println("effects of Potion: " + potion.getEffects().size()); System.err.println("effects of PotionMeta: " + meta.getCustomEffects().size()); |
Comment by md_5 [ 12/Apr/16 ] |
Please provide reproduction code for both creation of ItemStack and retrieval. |