Update to 1.19.3, update DelayedExecutorService references.

This commit is contained in:
Aria 2023-05-15 22:06:21 -07:00
parent 8289bdecaf
commit b45e9c3fec
6 changed files with 23 additions and 12 deletions

View file

@ -5,6 +5,7 @@ import java.util.List;
import java.util.Map;
import java.util.TimerTask;
import dev.zontreck.ariaslib.terminal.Task;
import dev.zontreck.ariaslib.util.DelayedExecutorService;
import dev.zontreck.libzontreck.chat.ChatColor;
import dev.zontreck.libzontreck.chat.ChatColorFactory;
@ -22,9 +23,13 @@ import net.minecraft.sounds.SoundEvents;
import net.minecraft.world.entity.player.Inventory;
import net.minecraft.world.item.ItemStack;
public class CheckInventory implements Runnable {
public class CheckInventory extends Task {
private static final CheckInventory inst = new CheckInventory();
public CheckInventory() {
super("checkinv", true);
}
public static CheckInventory getInstance(){
return inst;
}