TFGuilds/src/main/java/me/totalfreedom/tfguilds/Common.java
FTTT 196689db62 Require confirmation for significant actions
- Users will now be required to repeat the command when disbanding, leaving, kicking a player from, or transferring ownership within a guild.
2021-11-07 01:50:13 -07:00

25 lines
1.1 KiB
Java

package me.totalfreedom.tfguilds;
import java.util.ArrayList;
import java.util.List;
import org.bukkit.ChatColor;
import org.bukkit.entity.Player;
public class Common
{
public static final String PREFIX = ChatColor.AQUA + "TFGuilds " + ChatColor.DARK_GRAY + "\u00BB " + ChatColor.GRAY;
public static final String NOT_IN_GUILD = PREFIX + "You are not in a guild.";
public static final String IN_GUILD = PREFIX + "You are already in a guild.";
public static final String PLAYER_NOT_FOUND = PREFIX + "That player is not online.";
public static final String PLAYER_NOT_IN_GUILD = PREFIX + "That player is not in your guild.";
public static final String IN_GAME_ONLY = PREFIX + "You must be in-game to interact with guilds.";
public static final String USAGE = PREFIX + "Usage: " + ChatColor.GOLD;
public static final String WARN = PREFIX + ChatColor.RED + "Warning: " + ChatColor.GRAY;
public static final TFMBridge tfmBridge = TFGuilds.getPlugin().getTfmBridge();
public static List<Player> GUILD_CHAT = new ArrayList<>();
public static List<Player> GUILD_CHAT_SPY = new ArrayList<>();
}