mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-05 19:26:23 +02:00
39 lines
1.4 KiB
Java
39 lines
1.4 KiB
Java
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 <code>Runnable</code> is used
|
|
* to create a thread, starting the thread causes the object's
|
|
* <code>run</code> method to be called in that separately executing
|
|
* thread.
|
|
* <p>
|
|
* The general contract of the method <code>run</code> 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);
|
|
}
|
|
}
|