()
| 793 | } |
| 794 | |
| 795 | @Override |
| 796 | public List<PotionEffectImpl> getActivePotionEffects() { |
| 797 | List<PotionEffectImpl> result = new ArrayList<PotionEffectImpl>(getActivePlayerPotionEffects().size()); |
| 798 | for (wq potionEffect : getActivePlayerPotionEffects()) { |
| 799 | result.add(wrapPotionEffect(potionEffect)); |
| 800 | } |
| 801 | Collections.sort(result); |
| 802 | return result; |
| 803 | } |
| 804 | |
| 805 | @Override |
| 806 | public List<PotionEffectImpl> getDummyPotionEffects() { |
nothing calls this directly
no test coverage detected