()
| 791 | } |
| 792 | |
| 793 | @Override |
| 794 | public PotionEffectImpl getPotionForVignette() { |
| 795 | for (rq potionEffect : getActivePlayerPotionEffects()) { |
| 796 | rp potion = getPotionByEffect(potionEffect); |
| 797 | if (potion.i()) { |
| 798 | return wrapPotionEffect(potionEffect); |
| 799 | } |
| 800 | } |
| 801 | for (rq potionEffect : getActivePlayerPotionEffects()) { |
| 802 | rp potion = getPotionByEffect(potionEffect); |
| 803 | if (!potion.i()) { |
| 804 | return wrapPotionEffect(potionEffect); |
| 805 | } |
| 806 | } |
| 807 | |
| 808 | return null; |
| 809 | } |
| 810 | |
| 811 | @Override |
| 812 | public List<PotionEffectImpl> getActivePotionEffects() { |
nothing calls this directly
no test coverage detected