HubThat/src/net/mindoverflow/hubthat/utils/CommonValues.java

19 lines
600 B
Java

package net.mindoverflow.hubthat.utils;
import org.bukkit.Material;
import org.bukkit.inventory.ItemStack;
import java.util.ArrayList;
public class CommonValues
{
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 final ItemStack AIR = new ItemStack(Material.AIR, 1);
}