mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-11-04 02:53:43 +01:00 
			
		
		
		
	Use .equals instead of deprecated ID method.
This commit is contained in:
		@@ -56,6 +56,7 @@ import com.gmail.nossr50.util.Permissions;
 | 
			
		||||
import com.gmail.nossr50.util.player.UserManager;
 | 
			
		||||
import com.gmail.nossr50.util.skills.CombatUtils;
 | 
			
		||||
import com.gmail.nossr50.util.skills.SkillUtils;
 | 
			
		||||
import org.bukkit.potion.PotionEffectType;
 | 
			
		||||
 | 
			
		||||
public class EntityListener implements Listener {
 | 
			
		||||
    private final mcMMO plugin;
 | 
			
		||||
@@ -614,9 +615,8 @@ public class EntityListener implements Listener {
 | 
			
		||||
     */
 | 
			
		||||
    @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
 | 
			
		||||
    public void onPotionSplash(PotionSplashEvent event) {
 | 
			
		||||
        for (PotionEffect effect : ((PotionMeta) event.getEntity().getItem().getItemMeta()).getCustomEffects()) {
 | 
			
		||||
            // (effect.getType() != PotionEffectType.SATURATION) is seemingly broken, so we use deprecated method for now.
 | 
			
		||||
            if (effect.getType().getId() != 23) {
 | 
			
		||||
        for (PotionEffect effect : ((PotionMeta) event.getPotion().getItem().getItemMeta()).getCustomEffects()) {
 | 
			
		||||
            if (!effect.getType().equals(PotionEffectType.SATURATION)) {
 | 
			
		||||
                return;
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user