Spaces:
Build error
Build error
File size: 2,972 Bytes
d46f4a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
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;
}
}
}
} |