mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-03 18:26:24 +02:00

vStopFire -> All changes up to 1.1 WoolPlus -> All changes up to 1.2 vPlayersOnline -> All changes up to 1.5
56 lines
2.4 KiB
Java
56 lines
2.4 KiB
Java
package com.gmail.nossr50;
|
|
|
|
import java.io.*;
|
|
import java.util.*;
|
|
import java.util.logging.Level;
|
|
import java.util.logging.Logger;
|
|
import org.bukkit.Location;
|
|
import org.bukkit.Material;
|
|
import org.bukkit.block.Block;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.inventory.ItemStack;
|
|
import java.util.Map.Entry;
|
|
|
|
public class mcConfig {
|
|
private static volatile mcConfig instance;
|
|
String location = "mcmmo.properties";
|
|
protected static final Logger log = Logger.getLogger("Minecraft");
|
|
static ArrayList<String> adminChatList = new ArrayList<String>();
|
|
static ArrayList<String> coordsWatchList = new ArrayList<String>();
|
|
static ArrayList<Block> blockWatchList = new ArrayList<Block>();
|
|
static ArrayList<String> partyChatList = new ArrayList<String>();
|
|
public boolean isBlockWatched(Block block) {return blockWatchList.contains(block);}
|
|
public boolean isCoordsWatched(String xyz) {return coordsWatchList.contains(xyz);}
|
|
public void removeBlockWatch(Block block) {blockWatchList.remove(blockWatchList.indexOf(block));}
|
|
public void removeCoordsWatch(String xyz) {coordsWatchList.remove(coordsWatchList.indexOf(xyz));}
|
|
public void addBlockWatch(Block block) {blockWatchList.add(block);}
|
|
public void addCoordsWatch(String xyz) {coordsWatchList.add(xyz);}
|
|
public boolean isAdminToggled(String playerName) {return adminChatList.contains(playerName);}
|
|
public boolean isPartyToggled(String playerName) {return partyChatList.contains(playerName);}
|
|
public void removePartyToggled(String playerName) {partyChatList.remove(partyChatList.indexOf(playerName));}
|
|
public void removeAdminToggled(String playerName) {adminChatList.remove(adminChatList.indexOf(playerName));}
|
|
public void addPartyToggled(String playerName) {partyChatList.add(playerName);}
|
|
public void addAdminToggled(String playerName) {adminChatList.add(playerName);}
|
|
|
|
public static mcConfig getInstance() {
|
|
if (instance == null) {
|
|
instance = new mcConfig();
|
|
}
|
|
return instance;
|
|
}
|
|
public void toggleAdminChat(String playerName){
|
|
if(isAdminToggled(playerName)){
|
|
removeAdminToggled(playerName);
|
|
} else {
|
|
addAdminToggled(playerName);
|
|
}
|
|
}
|
|
public void togglePartyChat(String playerName){
|
|
if(isPartyToggled(playerName)){
|
|
removePartyToggled(playerName);
|
|
} else {
|
|
addPartyToggled(playerName);
|
|
}
|
|
}
|
|
|
|
} |