blob: 40db245ac8f89bea0a23546bdbd93b447ae6209a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package io.github.moulberry.notenoughupdates.commands.dev;
import io.github.moulberry.notenoughupdates.NotEnoughUpdates;
import io.github.moulberry.notenoughupdates.commands.ClientCommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.util.ChatComponentText;
public class ReloadRepoCommand extends ClientCommandBase {
public ReloadRepoCommand() {
super("neureloadrepo");
}
@Override
public void processCommand(ICommandSender sender, String[] args) throws CommandException {
NotEnoughUpdates.INSTANCE.manager.reloadRepository();
sender.addChatMessage(new ChatComponentText("§e[NEU] Reloaded repository."));
}
}
|