Initial Commit
This commit is contained in:
19
src/main/java/com/fpghoti/biscuit/global/MessageQueue.java
Normal file
19
src/main/java/com/fpghoti/biscuit/global/MessageQueue.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package com.fpghoti.biscuit.global;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
|
||||
import net.dv8tion.jda.api.entities.TextChannel;
|
||||
import net.dv8tion.jda.api.entities.User;
|
||||
|
||||
public class MessageQueue {
|
||||
|
||||
public static HashMap<User, Integer> chatssent = new HashMap<>();
|
||||
public static HashMap<User, Integer> spammsgs = new HashMap<>();
|
||||
public static HashMap<User, Integer> chatssent10s = new HashMap<>();
|
||||
public static HashMap<User, Integer> chatssent2m = new HashMap<>();
|
||||
public static ConcurrentHashMap<String, TextChannel> removemessages = new ConcurrentHashMap<>();
|
||||
public static ConcurrentHashMap<String, TextChannel> fastremovemessages = new ConcurrentHashMap<>();
|
||||
public static ConcurrentHashMap<String, TextChannel> slowremovemessages = new ConcurrentHashMap<>();
|
||||
|
||||
}
|
||||
10
src/main/java/com/fpghoti/biscuit/global/Properties.java
Normal file
10
src/main/java/com/fpghoti/biscuit/global/Properties.java
Normal file
@@ -0,0 +1,10 @@
|
||||
package com.fpghoti.biscuit.global;
|
||||
|
||||
public class Properties {
|
||||
|
||||
public static String naughtyList = "piff";
|
||||
public static String twnaughtyList = "piff";
|
||||
public static boolean customdefaultrole = false;
|
||||
public static String roleName = "";
|
||||
|
||||
}
|
||||
13
src/main/java/com/fpghoti/biscuit/global/SpamRecords.java
Normal file
13
src/main/java/com/fpghoti/biscuit/global/SpamRecords.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package com.fpghoti.biscuit.global;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import net.dv8tion.jda.api.entities.User;
|
||||
|
||||
public class SpamRecords {
|
||||
public static List<User> spammers = new ArrayList<>();
|
||||
public static List<User> elist = new ArrayList<>();
|
||||
public static List<User> warnedspm = new ArrayList<>();
|
||||
public static List<User> softmute = new ArrayList<>();
|
||||
}
|
||||
Reference in New Issue
Block a user