mirror of
https://github.com/plexusorg/Plex.git
synced 2025-07-02 20:11:36 +00:00
- taah command blocker
This commit is contained in:
parent
e402cd1fe5
commit
10e63f5e86
6 changed files with 204 additions and 4 deletions
16
src/main/java/dev/plex/command/blocking/BlockedCommand.java
Normal file
16
src/main/java/dev/plex/command/blocking/BlockedCommand.java
Normal file
|
@ -0,0 +1,16 @@
|
|||
package dev.plex.command.blocking;
|
||||
|
||||
import com.google.common.collect.Lists;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class BlockedCommand
|
||||
{
|
||||
private String message;
|
||||
private String requiredLevel;
|
||||
private String regex;
|
||||
private String command;
|
||||
private List<String> commandAliases = Lists.newArrayList();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue