Missed setting task reference

This commit is contained in:
Olof Larsson 2016-02-25 23:31:12 +01:00
parent 7710d69383
commit cf85faf47e

View File

@ -114,11 +114,11 @@ public abstract class Engine implements Active, Listener, Runnable
{
if (this.isSync())
{
Bukkit.getScheduler().runTaskTimer(this.getPlugin(), this, this.getDelay(), this.getPeriod());
this.task = Bukkit.getScheduler().runTaskTimer(this.getPlugin(), this, this.getDelay(), this.getPeriod());
}
else
{
Bukkit.getScheduler().runTaskTimerAsynchronously(this.getPlugin(), this, this.getDelay(), this.getPeriod());
this.task = Bukkit.getScheduler().runTaskTimerAsynchronously(this.getPlugin(), this, this.getDelay(), this.getPeriod());
}
}
}