Fix wrong runTaskTimer behaviour #1050

This commit is contained in:
Gabriele C 2017-01-05 01:13:30 +01:00
parent 7c6e9fb9fd
commit 979d8b98c4

View File

@ -175,7 +175,7 @@ public class BukkitService implements SettingsDependent {
* @see BukkitScheduler#runTaskTimer(Plugin, Runnable, long, long)
*/
public BukkitTask runTaskTimer(BukkitRunnable task, long delay, long period) {
return task.runTaskTimer(authMe, period, delay);
return task.runTaskTimer(authMe, delay, period);
}
/**