mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-02 09:46:24 +02:00

Folia Support --------- Co-authored-by: Rockyers <ethan@yocom.org> Co-authored-by: TechnicallyCoded <technicallycoded@gmail.com> Co-authored-by: HSGamer <huynhqtienvtag@gmail.com>
24 lines
705 B
Java
24 lines
705 B
Java
//package com.gmail.nossr50.runnables;
|
|
//
|
|
//import com.gmail.nossr50.mcMMO;
|
|
//import com.gmail.nossr50.runnables.skills.AprilTask;
|
|
//import com.gmail.nossr50.util.Misc;
|
|
//import com.gmail.nossr50.util.CancellableRunnable;
|
|
//
|
|
//public class CheckDateTask extends CancellableRunnable {
|
|
//
|
|
// @Override
|
|
// public void run() {
|
|
// if (!mcMMO.getHolidayManager().isAprilFirst()) {
|
|
// return;
|
|
// }
|
|
//
|
|
// // Set up jokes
|
|
// new AprilTask().runTaskTimer(mcMMO.p, 60L * Misc.TICK_CONVERSION_FACTOR, 10L * 60L * Misc.TICK_CONVERSION_FACTOR);
|
|
// mcMMO.getHolidayManager().registerAprilCommand();
|
|
//
|
|
// // Jokes deployed.
|
|
// this.cancel();
|
|
// }
|
|
//}
|