mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-28 15:38:00 +01:00
24 lines
1 KiB
Java
24 lines
1 KiB
Java
package com.minelittlepony.unicopia.command;
|
|
|
|
import net.fabricmc.fabric.api.command.v1.CommandRegistrationCallback;
|
|
import net.fabricmc.loader.api.FabricLoader;
|
|
import net.minecraft.command.argument.ArgumentTypes;
|
|
import net.minecraft.server.MinecraftServer;
|
|
|
|
public class Commands {
|
|
@SuppressWarnings({ "deprecation", "unchecked", "rawtypes" })
|
|
public static void bootstrap() {
|
|
ArgumentTypes.register("unicopia:enumeration", EnumArgumentType.class, new EnumArgumentType.Serializer());
|
|
CommandRegistrationCallback.EVENT.register((dispatcher, dedicated) -> {
|
|
SpeciesCommand.register(dispatcher);
|
|
RacelistCommand.register(dispatcher);
|
|
GravityCommand.register(dispatcher);
|
|
DisguiseCommand.register(dispatcher);
|
|
TraitCommand.register(dispatcher);
|
|
});
|
|
Object game = FabricLoader.getInstance().getGameInstance();
|
|
if (game instanceof MinecraftServer) {
|
|
((MinecraftServer)game).setFlightEnabled(true);
|
|
}
|
|
}
|
|
}
|