74 lines
2.9 KiB
Java
74 lines
2.9 KiB
Java
package xyz.sillyangel.nugget;
|
|
|
|
import com.mojang.logging.LogUtils;
|
|
import net.minecraft.world.item.CreativeModeTabs;
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
import net.minecraftforge.common.MinecraftForge;
|
|
import net.minecraftforge.event.BuildCreativeModeTabContentsEvent;
|
|
import net.minecraftforge.event.server.ServerStartingEvent;
|
|
import net.minecraftforge.eventbus.api.IEventBus;
|
|
import net.minecraftforge.eventbus.api.SubscribeEvent;
|
|
import net.minecraftforge.fml.ModLoadingContext;
|
|
import net.minecraftforge.fml.common.Mod;
|
|
import net.minecraftforge.fml.config.ModConfig;
|
|
import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent;
|
|
import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent;
|
|
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;
|
|
import org.slf4j.Logger;
|
|
import xyz.sillyangel.nugget.item.ModItems;
|
|
import xyz.sillyangel.nugget.block.ModBlocks;
|
|
|
|
// Very important Comment
|
|
// The value here should match an entry in the META-INF/mods.toml file
|
|
@Mod(NuggetMod.MOD_ID)
|
|
public class NuggetMod {
|
|
// Define mod id in a common place for everything to reference
|
|
public static final String MOD_ID = "nuggetmod";
|
|
// Directly reference a slf4j logger
|
|
public static final Logger LOGGER = LogUtils.getLogger();
|
|
|
|
public NuggetMod() {
|
|
IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus();
|
|
modEventBus.addListener(this::commonSetup);
|
|
// Register ourselves for server and other game events we are interested in
|
|
MinecraftForge.EVENT_BUS.register(this);
|
|
|
|
ModItems.register(modEventBus);
|
|
ModBlocks.register(modEventBus);
|
|
|
|
// Register the item to a creative tab
|
|
modEventBus.addListener(this::addCreative);
|
|
// Register our mod's ForgeConfigSpec so that Forge can create and load the config file for us
|
|
ModLoadingContext.get().registerConfig(ModConfig.Type.COMMON, Config.SPEC);
|
|
}
|
|
|
|
private void commonSetup(final FMLCommonSetupEvent event) {
|
|
|
|
}
|
|
|
|
// Add the example block item to the building blocks tab
|
|
private void addCreative(BuildCreativeModeTabContentsEvent event) {
|
|
if (event.getTabKey() == CreativeModeTabs.INGREDIENTS) {
|
|
event.accept(ModItems.NUGGET);
|
|
}
|
|
if (event.getTabKey() == CreativeModeTabs.BUILDING_BLOCKS) {
|
|
event.accept(ModBlocks.NUGGET_BLOCK);
|
|
event.accept(ModBlocks.RAW_NUGGET_BLOCK);
|
|
}
|
|
}
|
|
|
|
// You can use SubscribeEvent and let the Event Bus discover methods to call
|
|
@SubscribeEvent
|
|
public void onServerStarting(ServerStartingEvent event) {
|
|
|
|
}
|
|
|
|
// You can use EventBusSubscriber to automatically register all static methods in the class annotated with @SubscribeEvent
|
|
@Mod.EventBusSubscriber(modid = MOD_ID, bus = Mod.EventBusSubscriber.Bus.MOD, value = Dist.CLIENT)
|
|
public static class ClientModEvents {
|
|
@SubscribeEvent
|
|
public static void onClientSetup(FMLClientSetupEvent event) {
|
|
|
|
}
|
|
}
|
|
} |