package com.gmail.nossr50.runnables.skills; import com.neetgames.mcmmo.player.OnlineMMOPlayer; import com.gmail.nossr50.util.experience.MMOExperienceBarManager; import com.neetgames.mcmmo.skill.RootSkill; import org.bukkit.scheduler.BukkitRunnable; public class ExperienceBarHideTask extends BukkitRunnable { public final OnlineMMOPlayer mmoPlayer; public final PrimarySkillType primarySkillType; public final MMOExperienceBarManager MMOExperienceBarManagerRef; public ExperienceBarHideTask(MMOExperienceBarManager MMOExperienceBarManagerRef, OnlineMMOPlayer mmoPlayer, PrimarySkillType primarySkillType) { this.MMOExperienceBarManagerRef = MMOExperienceBarManagerRef; this.mmoPlayer = mmoPlayer; this.primarySkillType = primarySkillType; } /** * When an object implementing interface Runnable is used * to create a thread, starting the thread causes the object's * run method to be called in that separately executing * thread. *

* The general contract of the method run is that it may * take any action whatsoever. * * @see Thread#run() */ @Override public void run() { if(MMOExperienceBarManagerRef == null || mmoPlayer == null) return; MMOExperienceBarManagerRef.hideExperienceBar(primarySkillType); MMOExperienceBarManagerRef.clearTask(primarySkillType); } }