()
| 809 | } |
| 810 | |
| 811 | @Override |
| 812 | public List<PotionEffectImpl> getActivePotionEffects() { |
| 813 | List<PotionEffectImpl> result = new ArrayList<PotionEffectImpl>(getActivePlayerPotionEffects().size()); |
| 814 | for (rq potionEffect : getActivePlayerPotionEffects()) { |
| 815 | result.add(wrapPotionEffect(potionEffect)); |
| 816 | } |
| 817 | Collections.sort(result); |
| 818 | return result; |
| 819 | } |
| 820 | |
| 821 | @Override |
| 822 | public List<PotionEffectImpl> getDummyPotionEffects() { |
no test coverage detected