Schedules a sync repeating task to run later @param run The task to run @param delay The delay in ticks to wait before running the task @param period The number of ticks between executions of the task @return The Task that has been scheduled
(Runnable run, long delay, long period)
| 112 | * @return The Task that has been scheduled |
| 113 | */ |
| 114 | public static Task syncRepeating(Runnable run, long delay, long period) { |
| 115 | return syncRepeating(RedLib.getCallingPlugin(), run, delay, period); |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Schedules a sync repeating task to run later |
no test coverage detected