Rename mod from Tutorial Mod to Nugget Mod and update related configurations
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
package xyz.sillyangel.nuggetmod;
|
||||
package xyz.sillyangel.nugget;
|
||||
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
import net.minecraft.world.item.Item;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package xyz.sillyangel.nuggetmod;
|
||||
package xyz.sillyangel.nugget;
|
||||
|
||||
import com.mojang.logging.LogUtils;
|
||||
import net.minecraft.world.item.CreativeModeTabs;
|
||||
@@ -15,11 +15,11 @@ 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.nuggetmod.item.ModItems;
|
||||
import xyz.sillyangel.nugget.item.ModItems;
|
||||
|
||||
// Very important Comment
|
||||
// The value here should match an entry in the META-INF/mods.toml file
|
||||
@Mod(xyz.sillyangel.nuggetmod.NuggetMod.MOD_ID)
|
||||
@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";
|
||||
|
||||
3
src/main/java/xyz/sillyangel/nugget/block/ModBlocks.java
Normal file
3
src/main/java/xyz/sillyangel/nugget/block/ModBlocks.java
Normal file
@@ -0,0 +1,3 @@
|
||||
public class ModBlocks {
|
||||
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
package xyz.sillyangel.nuggetmod.item;
|
||||
package xyz.sillyangel.nugget.item;
|
||||
|
||||
import xyz.sillyangel.nuggetmod.NuggetMod;
|
||||
import xyz.sillyangel.nugget.NuggetMod;
|
||||
import net.minecraft.world.item.Item;
|
||||
import net.minecraftforge.eventbus.api.IEventBus;
|
||||
import net.minecraftforge.registries.DeferredRegister;
|
||||
|
||||
Reference in New Issue
Block a user