Newer
Older
ultramine_AntiCheat / src / main / java / org / ultramine / mods / anticheat / UMACCommands.java
@vlad20012 vlad20012 on 13 May 2017 380 bytes Added Anti X-Ray
package org.ultramine.mods.anticheat;

import org.ultramine.commands.Command;
import org.ultramine.commands.CommandContext;

public class UMACCommands
{
	@Command(
			name = "anticheat",
			group = "anticheat",
			aliases = {"umac"},
			syntax = {"[reload]"}
	)
	public static void anticheat(CommandContext ctx)
	{
		UMAntiCheat.instance().reload();
		ctx.sendMessage("OK");
	}
}