()
| 822 | } |
| 823 | |
| 824 | @Override |
| 825 | public List<PotionEffectImpl> getActivePotionEffects() { |
| 826 | List<PotionEffectImpl> result = new ArrayList<PotionEffectImpl>(getActivePlayerPotionEffects().size()); |
| 827 | for (aeh potionEffect : getActivePlayerPotionEffects()) { |
| 828 | result.add(wrapPotionEffect(potionEffect)); |
| 829 | } |
| 830 | Collections.sort(result); |
| 831 | return result; |
| 832 | } |
| 833 | |
| 834 | @Override |
| 835 | public List<PotionEffectImpl> getDummyPotionEffects() { |
no test coverage detected