63 lines
2.9 KiB
Java
63 lines
2.9 KiB
Java
package net.minecraft.server.commands;
|
|
|
|
import com.mojang.brigadier.CommandDispatcher;
|
|
import com.mojang.brigadier.context.CommandContext;
|
|
import com.mojang.brigadier.exceptions.CommandSyntaxException;
|
|
import com.mojang.brigadier.exceptions.SimpleCommandExceptionType;
|
|
import java.util.Collection;
|
|
import net.minecraft.commands.CommandSourceStack;
|
|
import net.minecraft.commands.Commands;
|
|
import net.minecraft.commands.arguments.EntityArgument;
|
|
import net.minecraft.commands.arguments.MessageArgument;
|
|
import net.minecraft.network.chat.Component;
|
|
import net.minecraft.server.level.ServerPlayer;
|
|
|
|
public class KickCommand {
|
|
private static final SimpleCommandExceptionType ERROR_KICKING_OWNER = new SimpleCommandExceptionType(Component.translatable("commands.kick.owner.failed"));
|
|
private static final SimpleCommandExceptionType ERROR_SINGLEPLAYER = new SimpleCommandExceptionType(Component.translatable("commands.kick.singleplayer.failed"));
|
|
|
|
public static void register(CommandDispatcher<CommandSourceStack> p_137796_) {
|
|
p_137796_.register(
|
|
Commands.literal("kick")
|
|
.requires(p_137800_ -> p_137800_.hasPermission(3))
|
|
.then(
|
|
Commands.argument("targets", EntityArgument.players())
|
|
.executes(
|
|
p_137806_ -> kickPlayers(
|
|
p_137806_.getSource(), EntityArgument.getPlayers(p_137806_, "targets"), Component.translatable("multiplayer.disconnect.kicked")
|
|
)
|
|
)
|
|
.then(
|
|
Commands.argument("reason", MessageArgument.message())
|
|
.executes(
|
|
p_137798_ -> kickPlayers(
|
|
p_137798_.getSource(), EntityArgument.getPlayers(p_137798_, "targets"), MessageArgument.getMessage(p_137798_, "reason")
|
|
)
|
|
)
|
|
)
|
|
)
|
|
);
|
|
}
|
|
|
|
private static int kickPlayers(CommandSourceStack p_137802_, Collection<ServerPlayer> p_137803_, Component p_137804_) throws CommandSyntaxException {
|
|
if (!p_137802_.getServer().isPublished()) {
|
|
throw ERROR_SINGLEPLAYER.create();
|
|
} else {
|
|
int i = 0;
|
|
|
|
for (ServerPlayer serverplayer : p_137803_) {
|
|
if (!p_137802_.getServer().isSingleplayerOwner(serverplayer.getGameProfile())) {
|
|
serverplayer.connection.disconnect(p_137804_);
|
|
p_137802_.sendSuccess(() -> Component.translatable("commands.kick.success", serverplayer.getDisplayName(), p_137804_), true);
|
|
i++;
|
|
}
|
|
}
|
|
|
|
if (i == 0) {
|
|
throw ERROR_KICKING_OWNER.create();
|
|
} else {
|
|
return i;
|
|
}
|
|
}
|
|
}
|
|
} |