Giving Credit

This commit is contained in:
Driftay
2019-12-02 13:55:38 -05:00
parent 9284707db6
commit f437144fba
168 changed files with 701 additions and 0 deletions

View File

@@ -18,6 +18,11 @@ import java.text.SimpleDateFormat;
import java.util.*;
public class CheckHistoryFrame implements FactionGUI {
/**
* @author Driftay
*/
private FactionsPlugin plugin;
private Faction faction;
private Inventory inventory;

View File

@@ -16,6 +16,11 @@ import org.bukkit.inventory.meta.ItemMeta;
import java.util.Collections;
public class CheckSettingsFrame implements InventoryHolder, FactionGUI {
/**
* @author Driftay
*/
private FactionsPlugin plugin;
private FPlayer fPlayer;
private Inventory inventory;

View File

@@ -21,6 +21,11 @@ import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;
public class CheckTask implements Runnable {
/**
* @author Driftay
*/
private static List<String> wallChecks = new CopyOnWriteArrayList<>();
private static List<String> bufferChecks = new CopyOnWriteArrayList<>();
private SimpleDateFormat simpleDateFormat = new SimpleDateFormat(Conf.dateFormat);

View File

@@ -24,6 +24,11 @@ import java.util.*;
import java.util.stream.Collectors;
public class CmdCheck extends FCommand {
/**
* @author Driftay
*/
private SimpleDateFormat simpleDateFormat;
public CmdCheck() {

View File

@@ -11,6 +11,11 @@ import net.dv8tion.jda.core.entities.Channel;
import net.dv8tion.jda.core.entities.TextChannel;
public class CmdWeeWoo extends FCommand {
/**
* @author Driftay
*/
public CmdWeeWoo() {
this.aliases.add("weewoo");
this.requiredArgs.add("start/stop");

View File

@@ -12,6 +12,10 @@ import net.dv8tion.jda.core.entities.TextChannel;
public class WeeWooTask implements Runnable {
/**
* @author Driftay
*/
private FactionsPlugin plugin;
public WeeWooTask(FactionsPlugin plugin) {