|
| 1 | +/* |
| 2 | + * This file is part of the Meteor Client distribution (https://github.com/MeteorDevelopment/meteor-client). |
| 3 | + * Copyright (c) Meteor Development. |
| 4 | + */ |
| 5 | + |
| 6 | +package meteordevelopment.meteorclient.commands.commands; |
| 7 | + |
| 8 | +import com.mojang.blaze3d.systems.RenderSystem; |
| 9 | +import com.mojang.brigadier.arguments.ArgumentType; |
| 10 | +import com.mojang.brigadier.arguments.StringArgumentType; |
| 11 | +import com.mojang.brigadier.builder.LiteralArgumentBuilder; |
| 12 | +import meteordevelopment.meteorclient.commands.Command; |
| 13 | +import net.minecraft.client.gui.screen.DisconnectedScreen; |
| 14 | +import net.minecraft.command.CommandSource; |
| 15 | +import net.minecraft.network.packet.s2c.common.DisconnectS2CPacket; |
| 16 | +import net.minecraft.text.Text; |
| 17 | +import net.minecraft.util.Formatting; |
| 18 | + |
| 19 | +import static com.mojang.brigadier.Command.SINGLE_SUCCESS; |
| 20 | +import static meteordevelopment.meteorclient.MeteorClient.mc; |
| 21 | + |
| 22 | +public class DisconnectCommand extends Command { |
| 23 | + public DisconnectCommand() { |
| 24 | + super("disconnect", "Disconnect from the server", "dc"); |
| 25 | + } |
| 26 | + |
| 27 | + @Override |
| 28 | + public void build(LiteralArgumentBuilder<CommandSource> builder) { |
| 29 | + builder.executes(context -> { |
| 30 | + mc.player.networkHandler.onDisconnect(new DisconnectS2CPacket(Text.literal("%s[%sDisconnectCommand%s] Disconnected by user.".formatted(Formatting.GRAY, Formatting.BLUE, Formatting.GRAY)))); |
| 31 | + return SINGLE_SUCCESS; |
| 32 | + }); |
| 33 | + |
| 34 | + builder.then(argument("reason", StringArgumentType.greedyString()).executes(context -> { |
| 35 | + mc.player.networkHandler.onDisconnect(new DisconnectS2CPacket(Text.literal(StringArgumentType.getString(context, "reason")))); |
| 36 | + return SINGLE_SUCCESS; |
| 37 | + })); |
| 38 | + } |
| 39 | +} |
0 commit comments