i have the stupid
This commit is contained in:
parent
326a49d554
commit
adeb7a2b4f
2 changed files with 5 additions and 0 deletions
|
|
@ -14,6 +14,7 @@ import de.lunarakai.minecleaner.commands.groups.AcceptCommand;
|
|||
import de.lunarakai.minecleaner.commands.groups.DenyCommand;
|
||||
import de.lunarakai.minecleaner.commands.groups.DismantleGroupCommand;
|
||||
import de.lunarakai.minecleaner.commands.groups.InviteCommand;
|
||||
import de.lunarakai.minecleaner.commands.groups.LeaveGroupCommand;
|
||||
import de.lunarakai.minecleaner.commands.groups.ListGroupMembersCommand;
|
||||
import net.kyori.adventure.key.Key;
|
||||
import net.kyori.adventure.translation.GlobalTranslator;
|
||||
|
|
@ -89,6 +90,7 @@ public final class MinecleanerPlugin extends JavaPlugin {
|
|||
minecleanerCommand.addCommandMapping(new DenyCommand(this), "deny");
|
||||
minecleanerCommand.addCommandMapping(new DismantleGroupCommand(this), "dismantlegroup");
|
||||
minecleanerCommand.addCommandMapping(new ListGroupMembersCommand(this), "groupmembers");
|
||||
minecleanerCommand.addCommandMapping(new LeaveGroupCommand(this), "leave");
|
||||
|
||||
if(isStatisticsEnabled()) {
|
||||
minecleanerCommand.addCommandMapping(new SettingsCommand(this), "settings");
|
||||
|
|
|
|||
|
|
@ -79,6 +79,9 @@ public class HelpCommand extends SubCommand {
|
|||
.append(Component.text(" /... accept | deny: ", NamedTextColor.BLUE))
|
||||
.append(Component.text("Nehme eine erhaltene Einladung an (accept), oder lehne sie ab (deny)", NamedTextColor.GREEN))
|
||||
.append(Component.newline())
|
||||
.append(Component.text(" /... leave ", NamedTextColor.BLUE))
|
||||
.append(Component.text("Verlasse die Gruppe in der du dich befindest", NamedTextColor.GREEN))
|
||||
.append(Component.newline())
|
||||
.append(Component.text(" /... dismantlegroup: ", NamedTextColor.BLUE))
|
||||
.append(Component.text("Löst die Gruppe, die du erstellt hast, auf", NamedTextColor.GREEN))
|
||||
.append(Component.newline())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue