Skip to content

Commit

Permalink
add unblock command
Browse files Browse the repository at this point in the history
  • Loading branch information
MicrocontrollersDev committed Jan 27, 2023
1 parent 4d34ded commit 8ede298
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/cc/woverflow/hytils/HytilsReborn.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ public void init(FMLInitializationEvent event) {
CommandManager.INSTANCE.registerCommand(new LimboCommand());
CommandManager.INSTANCE.registerCommand(new SilentRemoveCommand());
CommandManager.INSTANCE.registerCommand(new SkyblockVisitCommand());
CommandManager.INSTANCE.registerCommand(new UnblockCommand());

// We initialize it a different way because it requires the
// GameNameParser to be initialized, and that depends on networking.
Expand Down
44 changes: 44 additions & 0 deletions src/main/java/cc/woverflow/hytils/command/UnblockCommand.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
* Hytils Reborn - Hypixel focused Quality of Life mod.
* Copyright (C) 2020, 2021, 2022, 2023 Polyfrost, Sk1er LLC and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

package cc.woverflow.hytils.command;

import cc.polyfrost.oneconfig.libs.universal.ChatColor;
import cc.polyfrost.oneconfig.libs.universal.UChat;
import cc.polyfrost.oneconfig.utils.commands.annotations.Command;
import cc.polyfrost.oneconfig.utils.commands.annotations.Main;
import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils;
import cc.woverflow.hytils.HytilsReborn;
import com.mojang.authlib.GameProfile;

@Command("unblock")
public class UnblockCommand {

@Main
public void handle() {
UChat.chat(ChatColor.RED + "Usage: /unblock <player>");
}

@Main(description = "Remove a player from the ignore list.")
private void main(GameProfile player) {
if (HypixelUtils.INSTANCE.isHypixel()) {
String name = player.getName();
HytilsReborn.INSTANCE.getCommandQueue().queue("/ignore remove " + name);
}
}
}

0 comments on commit 8ede298

Please sign in to comment.