package wtf.beatrice.hubthat.utils; import org.bukkit.Material; import org.bukkit.inventory.ItemStack; import java.util.ArrayList; public class PluginCache { public static ArrayList teleporting = new ArrayList<>(); public static ArrayListcancelRunnable = new ArrayList<>(); public static Boolean updateChecker = true; public static boolean invisibilityFix = false; // sometimes, in buggy versions of Spigot, players become invisible after getting teleported. this fixes the problem. public static boolean sendJoinTpMessage = true; public static final ItemStack AIR = new ItemStack(Material.AIR, 1); public static final double minSupportedVersion = 1.7; public static final double maxSupportedVersion = 1.16; }