HubThat/src/main/java/wtf/beatrice/hubthat/utils/PluginCache.java

21 lines
767 B
Java
Raw Normal View History

2022-05-31 20:09:36 +02:00
package wtf.beatrice.hubthat.utils;
2020-04-09 16:31:14 +02:00
import org.bukkit.Material;
import org.bukkit.inventory.ItemStack;
2020-04-09 16:31:14 +02:00
import java.util.ArrayList;
public class PluginCache
2020-04-09 16:31:14 +02:00
{
public static ArrayList<String> teleporting = new ArrayList<>();
public static ArrayList<String>cancelRunnable = 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);
2023-02-11 20:55:53 +01:00
public static final String minSupportedVersion = "1.7";
public static final String maxSupportedVersion = "1.20";
2020-04-09 16:31:14 +02:00
}