2013-01-10 23:12:41 +01:00
|
|
|
package com.gmail.nossr50.runnables;
|
|
|
|
|
|
|
|
import java.lang.Runnable;
|
|
|
|
|
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.scheduler.BukkitScheduler;
|
|
|
|
|
|
|
|
import com.gmail.nossr50.mcMMO;
|
|
|
|
|
|
|
|
public class MobStoreCleaner implements Runnable
|
|
|
|
{
|
|
|
|
private int taskID;
|
|
|
|
|
|
|
|
public MobStoreCleaner()
|
|
|
|
{
|
|
|
|
taskID = -1;
|
|
|
|
start();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void start()
|
|
|
|
{
|
|
|
|
if (taskID >= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
BukkitScheduler scheduler = Bukkit.getServer().getScheduler();
|
|
|
|
taskID = scheduler.scheduleSyncRepeatingTask(mcMMO.p, this, 12000, 12000);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void stop()
|
|
|
|
{
|
|
|
|
if(taskID < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Bukkit.getServer().getScheduler().cancelTask(taskID);
|
|
|
|
taskID = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void run()
|
|
|
|
{
|
2013-01-14 06:27:30 +01:00
|
|
|
mcMMO.placeStore.cleanMobLists();
|
2013-01-10 23:12:41 +01:00
|
|
|
}
|
|
|
|
}
|