-
Methods Method Description com.cryptomorin.xseries.NMSExtras.sendBlockChange(Player, Chunk, Map<NMSExtras.WorldlessBlockWrapper, Object>) com.cryptomorin.xseries.XBlock.getType(Block) Not stable, useXBlock.isType(Block, XMaterial)orXBlock.isSimilar(Block, XMaterial)instead. If you want to save a block material somewhere, you need to useXMaterial.matchXMaterial(Material)com.cryptomorin.xseries.XMaterial.isNewVersion() UseXMaterial.supports(13)instead. This method name can be confusing.com.cryptomorin.xseries.XMaterial.isOneEight() Use!XMaterial.supports(9)instead.com.cryptomorin.xseries.XMaterial.matchXMaterial(int, byte) this method loops through all the available materials and matches their ID usingXMaterial.getId()which takes a really long time. Plugins should no longer support IDs. If you want, you can make aMapcache yourself. This method obviously doesn't work for 1.13+ and will not be supported. This is only here for debugging purposes.com.cryptomorin.xseries.XPotion.getPotionType() not for removal, but usePotionEffectTypeinstead.