(int slot)
| 901 | } |
| 902 | |
| 903 | @Override |
| 904 | public ItemStack getItemInArmorSlot(int slot) { |
| 905 | if (getArmorItemBySlot(slot) == null) { |
| 906 | return null; |
| 907 | } |
| 908 | WrappedItemStack wrappedItemStack = new WrappedItemStack(getArmorItemBySlot(slot)); |
| 909 | return "minecraft:air".equals(wrappedItemStack.getKey()) ? null : wrappedItemStack; |
| 910 | } |
| 911 | |
| 912 | public Collection<aeh> getActivePlayerPotionEffects() { |
| 913 | return getPlayer().cn(); |
nothing calls this directly
no test coverage detected