26 lines
1019 B
Java
26 lines
1019 B
Java
package vip.fubuki.playersync;
|
|
|
|
import com.mojang.brigadier.CommandDispatcher;
|
|
import net.minecraft.commands.CommandSourceStack;
|
|
import net.neoforged.bus.api.SubscribeEvent;
|
|
import net.neoforged.fml.common.EventBusSubscriber;
|
|
import net.neoforged.neoforge.event.RegisterCommandsEvent;
|
|
|
|
@EventBusSubscriber()
|
|
public class CommandInit {
|
|
|
|
@SubscribeEvent
|
|
public static void registerCommand(RegisterCommandsEvent event){
|
|
CommandDispatcher<CommandSourceStack> dispatcher=event.getDispatcher();
|
|
// dispatcher.register(Commands.literal("playersync")
|
|
// .requires(cs->cs.hasPermission(2))
|
|
// .then(Commands.literal("reconnect")
|
|
// .executes(context -> {
|
|
//// context.getSource().sendSuccess(()->MutableComponent.create(new TranslatableContents("playersync.command.reconnect")),true);
|
|
// return 0;
|
|
// }
|
|
// ))
|
|
// );
|
|
}
|
|
}
|