mirror of
https://github.com/Shiewk/SModeration.git
synced 2026-04-28 05:54:16 +02:00
Unmute and unban commands
This commit is contained in:
@@ -54,5 +54,15 @@ public final class SModeration extends JavaPlugin {
|
||||
assert logs != null;
|
||||
logs.setExecutor(new ModLogsCommand());
|
||||
logs.setTabCompleter(new ModLogsCommand());
|
||||
|
||||
final PluginCommand unmute = getCommand("unmute");
|
||||
assert unmute != null;
|
||||
unmute.setExecutor(new UnmuteCommand());
|
||||
unmute.setTabCompleter(new UnmuteCommand());
|
||||
|
||||
final PluginCommand unban = getCommand("unban");
|
||||
assert unban != null;
|
||||
unban.setExecutor(new UnbanCommand());
|
||||
unban.setTabCompleter(new UnbanCommand());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user