Hey, This is a general question, if I use this; Code (Java): for(String effects : MyStringList) { p.removePotionEffect(PotionEffectType.getByName(MyStringList.toUpperCase())); Will this automatically add support for any version or only the version I'm coding on?
I think it should be like that Code (Java): for(String effect : MyStringList) { p.removePotionEffect(PotionEffectType.getByName(effect.toUpperCase())); } But yes it must support prety much all of the newer versions.