Jump to content

[1.12.2]NPE when registering blocks


darthvader45

Recommended Posts

Much like the poster here:

I am having trouble registering blocks, as I've hit a wall with this NPE:Can't use a null-name for the registry, object Block{null}.  However, unlike him, I have done debugging and found nothing with Block{null}.

 

Full crash report: https://pastebin.com/juwDijLt

 

My code:

package gruntpie224.wintercraft.init;

import java.util.ArrayList;

import gruntpie224.wintercraft.WintercraftReference;
import gruntpie224.wintercraft.blocks.BlockBasic;
import gruntpie224.wintercraft.blocks.BlockCandle;
import gruntpie224.wintercraft.blocks.BlockCandyCane;
import gruntpie224.wintercraft.blocks.BlockDecorDoor;
import gruntpie224.wintercraft.blocks.BlockFirePlace;
import gruntpie224.wintercraft.blocks.BlockFreezer;
import gruntpie224.wintercraft.blocks.BlockFruitCake;
import gruntpie224.wintercraft.blocks.BlockGift;
import gruntpie224.wintercraft.blocks.BlockLightsBlock;
import gruntpie224.wintercraft.blocks.BlockOrnament;
import gruntpie224.wintercraft.blocks.BlockOrnamentRare;
import gruntpie224.wintercraft.blocks.BlockPresent;
import gruntpie224.wintercraft.blocks.BlockSnowGlobeBlock;
import gruntpie224.wintercraft.blocks.BlockSnowSlab;
import gruntpie224.wintercraft.blocks.BlockSnowStairs;
import gruntpie224.wintercraft.blocks.BlockStar;
import gruntpie224.wintercraft.blocks.BlockWallBlock;
import gruntpie224.wintercraft.blocks.BlockWinterSpawner;
import gruntpie224.wintercraft.items.ItemCandle;
import gruntpie224.wintercraft.items.ItemOrnamentRare;
import gruntpie224.wintercraft.items.ItemStar;
import net.minecraft.block.Block;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.init.Blocks;
import net.minecraft.item.Item;
import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemSlab;
import net.minecraftforge.client.model.ModelLoader;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.fml.common.registry.GameRegistry;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

public class WinterBlocks {
	private static ArrayList<Block> all_blocks = new ArrayList<Block>();
	
	@GameRegistry.ObjectHolder("wc:decor_door")
	public static Block decor_door;
	
	@GameRegistry.ObjectHolder("wc:calendar_advent")
	public static Block calendar_advent;
	
	@GameRegistry.ObjectHolder("wc:iced_cobble")
	public static Block iced_cobble;
	
	@GameRegistry.ObjectHolder("wc:iced_stone")
	public static Block iced_stone;
	
	@GameRegistry.ObjectHolder("wc:snow_bricks")
	public static Block snow_bricks;
	
	@GameRegistry.ObjectHolder("wc:fruit_cake_bricks")
	public static Block fruit_cake_bricks;
	
	@GameRegistry.ObjectHolder("wc:snow_stairs")
	public static Block snow_stairs;
	
	@GameRegistry.ObjectHolder("wc:snow_slab_single")
	public static BlockSnowSlab snow_slab_single;
	
	@GameRegistry.ObjectHolder("wc:snow_slab_double")
	public static BlockSnowSlab snow_slab_double;
	
	@GameRegistry.ObjectHolder("wc:freezer")
	public static Block freezer;
	
	@GameRegistry.ObjectHolder("wc:freezer_active")
	public static Block freezer_active;
	
	@GameRegistry.ObjectHolder("wc:fireplace")
	public static Block fireplace;
	@GameRegistry.ObjectHolder("wc:fireplace_active")
	public static Block fireplace_active;
	
	@GameRegistry.ObjectHolder("wc:fruit_cake")
	public static Block fruit_cake;
	
	@GameRegistry.ObjectHolder("wc:candle")
	public static Block candle;
	
	@GameRegistry.ObjectHolder("wc:star")
	public static Block star;
	
	@GameRegistry.ObjectHolder("wc:ornament")
	public static Block ornament;
	
	@GameRegistry.ObjectHolder("wc:lights")
	public static Block lights;
	
	@GameRegistry.ObjectHolder("wc:ornament_rare")
	public static Block ornament_rare;
	
	@GameRegistry.ObjectHolder("wc:gift")
	public static Block gift;
	
	@GameRegistry.ObjectHolder("wc:wreath")
	public static Block wreath;
	
	@GameRegistry.ObjectHolder("wc:stocking")
	public static Block stocking;
	
	@GameRegistry.ObjectHolder("wc:stocking_full")
	public static Block stocking_full;
	
	@GameRegistry.ObjectHolder("wc:candy_cane_block")
	public static Block candy_cane_block;
	
	@GameRegistry.ObjectHolder("wc:present")
	public static Block present;
	
	@GameRegistry.ObjectHolder("wc:winter_present")
	public static Block winter_present;
	
	@GameRegistry.ObjectHolder("wc:dark_present")
	public static Block dark_present;
	
	@GameRegistry.ObjectHolder("wc:snow_globe")
	public static Block snow_globe;
	
	@GameRegistry.ObjectHolder("wc:snow_globe_corrupt")
	public static Block snow_globe_corrupt;
	
	@GameRegistry.ObjectHolder("wc:miniGolemSpawner")
	public static Block miniGolemSpawner;
	
	public static void initBlocks()
	{
		decor_door = new BlockDecorDoor(Material.WOOD).setHardness(3.0F).setUnlocalizedName("decor_door");
		all_blocks.add(decor_door);
		
		iced_cobble = new BlockBasic("iced_cobble", Material.ROCK, SoundType.STONE).setHardness(2.0f).setResistance(10.0F);
		all_blocks.add(iced_cobble);
		
		iced_stone = new BlockBasic("iced_stone", Material.ROCK, SoundType.STONE).setHardness(1.5f).setResistance(10.0F);
		all_blocks.add(iced_stone);
		
		snow_bricks = new BlockBasic("snow_bricks", Material.ROCK, SoundType.SNOW).setHardness(1.5f).setResistance(8.0F);
		all_blocks.add(snow_bricks);
		
		fruit_cake_bricks = new BlockBasic("fruit_cake_bricks", Material.ROCK, SoundType.STONE).setHardness(1.5f).setResistance(10.0F);
		all_blocks.add(fruit_cake_bricks);
		
		snow_stairs = new BlockSnowStairs("snow_stairs", Blocks.SNOW.getBlockState().getBaseState());
		all_blocks.add(snow_stairs);
		
		snow_slab_single = new BlockSnowSlab.Half("snow_slab_single", Material.SNOW);
		
		snow_slab_double = new BlockSnowSlab.Double("snow_slab_double", Material.SNOW);
		
		freezer = new BlockFreezer("freezer", false).setHardness(2.5F);
		all_blocks.add(freezer);
		
		freezer_active = new BlockFreezer("freezer_active", true).setHardness(2.5F);
		all_blocks.add(freezer_active);
		
		fireplace = new BlockFirePlace(Material.ROCK, false).setHardness(2.5F);
		all_blocks.add(fireplace);
		
		fireplace_active = new BlockFirePlace(Material.ROCK, true).setHardness(2.5F);
		all_blocks.add(fireplace_active);
		
		fruit_cake = new BlockFruitCake("fruit_cake").setHardness(0.5F);
		all_blocks.add(fruit_cake);
		
		candle = new BlockCandle("candle").setHardness(0.4f);
		//all_blocks.add(candle);
		
		star = new BlockStar("star", Material.GLASS).setHardness(0.2f);
		
		ornament = new BlockOrnament("ornament").setHardness(0.3f);
		lights = new BlockLightsBlock(Material.GLASS).setHardness(0.3f);
		
		ornament_rare = new BlockOrnamentRare("ornament_rare").setHardness(0.3f);
		
		gift = new BlockGift("gift", Material.CLOTH).setHardness(0.2F);
		all_blocks.add(gift);
		
		wreath = new BlockWallBlock("wreath", SoundType.PLANT).setHardness(0.3F);
		all_blocks.add(wreath);
		
		stocking = new BlockWallBlock("stocking", SoundType.CLOTH).setHardness(0.2F);
		all_blocks.add(stocking);
		
		stocking_full = new BlockWallBlock("stocking_full", SoundType.CLOTH).setHardness(0.2F);
		all_blocks.add(stocking_full);
		
		calendar_advent = new BlockWallBlock("calendar_advent", SoundType.STONE).setHardness(0.2F);
		all_blocks.add(calendar_advent);
		
		candy_cane_block = new BlockCandyCane("candy_cane_block", Material.WOOD).setHardness(1.5F);
		all_blocks.add(candy_cane_block);
		
		present = new BlockPresent("present", Material.CLOTH).setHardness(0.2F);
		all_blocks.add(present);
		
		winter_present = new BlockPresent("winter_present", Material.CLOTH).setHardness(0.2F);
		all_blocks.add(winter_present);
		
		dark_present = new BlockPresent("dark_present", Material.CLOTH).setHardness(0.3F);
		all_blocks.add(dark_present);
		
		snow_globe = new BlockSnowGlobeBlock(Material.GLASS, false).setHardness(0.2F);
		all_blocks.add(snow_globe);
		snow_globe_corrupt = new BlockSnowGlobeBlock(Material.GLASS, false).setHardness(0.2F);
		all_blocks.add(snow_globe_corrupt);
		miniGolemSpawner = new BlockWinterSpawner("TinySnowman").setHardness(0.3F);
		all_blocks.add(miniGolemSpawner);
	}
	
	public static void registerBlocks(RegistryEvent.Register<Block> event)
	{
		for(Block block : all_blocks)
			event.getRegistry().register(block);
		
		event.getRegistry().register(snow_slab_single);
		event.getRegistry().register(snow_slab_double);
		event.getRegistry().register(candle);
		event.getRegistry().register(star);
		event.getRegistry().register(ornament);
		event.getRegistry().register(ornament_rare);
		
	}
	
	public static void registerBlockItems(RegistryEvent.Register<Item> event)
	{
		for(Block block : all_blocks)
			
			event.getRegistry().registerAll(new ItemBlock(block).setRegistryName(block.getRegistryName()));
		
		event.getRegistry().register(new ItemSlab(snow_slab_single, snow_slab_single, snow_slab_double).setRegistryName(snow_slab_single.getRegistryName()));
		event.getRegistry().register(new ItemCandle("candle", candle).setRegistryName(candle.getRegistryName()));
		event.getRegistry().register(new ItemCandle("ornament", ornament).setRegistryName(ornament.getRegistryName()));
		event.getRegistry().register(new ItemOrnamentRare("ornament_rare", ornament_rare).setRegistryName(ornament_rare.getRegistryName()));
		event.getRegistry().register(new ItemStar("star", star).setRegistryName(star.getRegistryName()));
	}
	
	@SideOnly(Side.CLIENT)
	public static void initModels()
	{
		for(Block block : all_blocks)
			registerRender(Item.getItemFromBlock(block));
		
		registerRender(Item.getItemFromBlock(snow_slab_single));
		registerRender(Item.getItemFromBlock(snow_slab_double));
		registerRender(Item.getItemFromBlock(star));
		
		for(int i = 0; i < 16; i++)
		{
			registerRender(Item.getItemFromBlock(candle), i, "candle" + ItemCandle.names[i]);
			registerRender(Item.getItemFromBlock(ornament), i, "ornament" + ItemCandle.names[i]);
		}
		
		for(int i = 0; i < ItemOrnamentRare.names.length; i++)
		{
			registerRender(Item.getItemFromBlock(ornament_rare), i, "ornament_rare" + ItemOrnamentRare.names[i]);
		}
	}
	
	public static void registerRender(Item item) {
		ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
	}
	
	public static void registerRender(Item item, int meta, String name) {
		ModelLoader.setCustomModelResourceLocation(item, meta, new ModelResourceLocation(WintercraftReference.MOD_ID + ":" + name, "inventory"));
	}
}

 

 

Link to comment
Share on other sites

Thank you, I'll make those fixes and report back.  I'm helping gruntpie224 with the 1.12.2 update of Wintercraft. 

 

Edit: I just noticed after doing what you said that it started yelling at me about my items not having registry names.  I fixed that and the crash changed to this:

https://pastebin.com/qK6dKVdn

Edited by darthvader45
Link to comment
Share on other sites

1 hour ago, diesieben07 said:

There is no way for me to help you with a crash report if I cannot see your code with line numbers.

Here's my WinterItems.java:

package gruntpie224.wintercraft.init;

import java.util.ArrayList;

import gruntpie224.wintercraft.helper.WCSounds;
import gruntpie224.wintercraft.items.ArmorAntlers;
import gruntpie224.wintercraft.items.ArmorIceSkates;
import gruntpie224.wintercraft.items.ArmorSanta;
import gruntpie224.wintercraft.items.ItemBasic;
import gruntpie224.wintercraft.items.ItemBasicSword;
import gruntpie224.wintercraft.items.ItemCandle;
import gruntpie224.wintercraft.items.ItemCandyCaneAxe;
import gruntpie224.wintercraft.items.ItemCandyCaneSword;
import gruntpie224.wintercraft.items.ItemChristmasDisk;
import gruntpie224.wintercraft.items.ItemDecorDoorItem;
import gruntpie224.wintercraft.items.ItemFruitCake;
import gruntpie224.wintercraft.items.ItemLights;
import gruntpie224.wintercraft.items.ItemOrnamentRare;
import gruntpie224.wintercraft.items.ItemRockySnowball;
import gruntpie224.wintercraft.items.ItemWinterFood;
import gruntpie224.wintercraft.items.MagicSaddle;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.init.SoundEvents;
import net.minecraft.inventory.EntityEquipmentSlot;
import net.minecraft.item.Item;
import net.minecraft.item.Item.ToolMaterial;
import net.minecraft.item.ItemArmor.ArmorMaterial;
import net.minecraftforge.client.model.ModelLoader;
import net.minecraftforge.common.util.EnumHelper;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.fml.common.registry.GameRegistry;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

public class WinterItems {
	private static ArrayList<Item> all_items = new ArrayList<Item>();
	
	@GameRegistry.ObjectHolder("wc:ice_shard")
	public static Item ice_shard;
	
	@GameRegistry.ObjectHolder("wc:ice_chunk")
	public static Item ice_chunk;
	
	@GameRegistry.ObjectHolder("wc:ice_gem")
	public static Item ice_gem;
	
	@GameRegistry.ObjectHolder("wc:ice_staff")
	public static Item ice_staff;
	
	@GameRegistry.ObjectHolder("wc:ice_skates")
	public static Item ice_skates;
	
	@GameRegistry.ObjectHolder("wc:iceball")
	public static Item iceball;
	
	@GameRegistry.ObjectHolder("wc:empty_mug")
	public static Item empty_mug;
	
	@GameRegistry.ObjectHolder("wc:polarbear_fur")
	public static Item polarbear_fur;
	
	@GameRegistry.ObjectHolder("wc:polarbear_fur_red")
	public static Item polarbear_fur_red;
	
	@GameRegistry.ObjectHolder("wc:fruit_cake_item")
	public static Item fruit_cake_item;
	
	@GameRegistry.ObjectHolder("wc:candle_item")
	public static Item candle_item;
	
	@GameRegistry.ObjectHolder("wc:ornament_item")
	public static Item ornament_item;
	
	@GameRegistry.ObjectHolder("wc:ornament_rare_item")
	public static Item ornament_rare_item;
	
	@GameRegistry.ObjectHolder("wc:candy_cane")
	public static Item candy_cane;
	
	@GameRegistry.ObjectHolder("wc:marshmallow")
	public static Item marshmallow;
	
	@GameRegistry.ObjectHolder("wc:gingerbread_man")
	public static Item gingerbread_man;
	
	@GameRegistry.ObjectHolder("wc:venison")
	public static Item venison;
	
	@GameRegistry.ObjectHolder("wc:venison_cooked")
	public static Item venison_cooked;
	
	@GameRegistry.ObjectHolder("wc:christmas_cookie")
	public static Item christmas_cookie;
	
	@GameRegistry.ObjectHolder("wc:egg_nog")
	public static Item egg_nog;
	
	@GameRegistry.ObjectHolder("wc:choc_milk")
	public static Item choc_milk;
	
	@GameRegistry.ObjectHolder("wc:hot_choc")
	public static Item hot_choc;
	
	@GameRegistry.ObjectHolder("wc:antlers")
	public static Item antlers;
	
	@GameRegistry.ObjectHolder("wc:reindeer_saddle")
	public static Item reindeer_saddle;
	
	@GameRegistry.ObjectHolder("wc:waffle_cone")
	public static Item waffle_cone;

	@GameRegistry.ObjectHolder("wc:icecream_vanilla")
	public static Item icecream_vanilla;
	
	@GameRegistry.ObjectHolder("wc:icecream_chocolate")
	public static Item icecream_chocolate;
	
	@GameRegistry.ObjectHolder("wc:icecream_strawberry")
	public static Item icecream_strawberry;
	
	@GameRegistry.ObjectHolder("wc:icecream_cookie_dough")
	public static Item icecream_cookie_dough;
	
	@GameRegistry.ObjectHolder("wc:icecream_magma_cream")
	public static Item icecream_magma_cream;
	
	@GameRegistry.ObjectHolder("wc:cone_vanilla")
	public static Item cone_vanilla;
	
	@GameRegistry.ObjectHolder("wc:cone_chocolate")
	public static Item cone_chocolate;
	
	@GameRegistry.ObjectHolder("wc:cone_strawberry")
	public static Item cone_strawberry;
	
	@GameRegistry.ObjectHolder("wc:cone_cookie_dough")
	public static Item cone_cookie_dough;
	
	@GameRegistry.ObjectHolder("wc:cone_magma_cream")
	public static Item cone_magma_cream;
	
	@GameRegistry.ObjectHolder("wc:santa_helmet")
	public static Item santa_helmet;
	
	@GameRegistry.ObjectHolder("wc:santa_plate")
	public static Item santa_plate;
	
	@GameRegistry.ObjectHolder("wc:santa_legs")
	public static Item santa_legs;
	
	@GameRegistry.ObjectHolder("wc:santa_boots")
	public static Item santa_boots;
	
	@GameRegistry.ObjectHolder("wc:music_disk_jingle")
	public static Item music_disk_jingle;
	
	@GameRegistry.ObjectHolder("wc:music_disk_halls")
	public static Item music_disk_halls;
	
	@GameRegistry.ObjectHolder("wc:candy_cane_sword")
	public static Item candy_cane_sword;
	
	@GameRegistry.ObjectHolder("wc:candy_cane_axe")
	public static Item candy_cane_axe;
	
	@GameRegistry.ObjectHolder("wc:shard_sword")
	public static Item shard_sword;
	
	@GameRegistry.ObjectHolder("wc:rocky_snowball")
	public static Item rocky_snowball;
	
	@GameRegistry.ObjectHolder("wc:decor_door_item")
	public static Item decor_door_item;
	
	@GameRegistry.ObjectHolder("wc:lights")
	public static Item lights;
	
	public static ToolMaterial toolCandyCane = EnumHelper.addToolMaterial("CANDYCANE", 1, 250, 6.0F, 3F, 15);
	public static ToolMaterial toolShard = EnumHelper.addToolMaterial("SHARD", 3, 850, 6.5F, 8F, 25);
	
	public static ArmorMaterial armorSkates = EnumHelper.addArmorMaterial("SKATES", "skates", 10, new int[]{2, 4, 2, 1}, 3, SoundEvents.ITEM_ARMOR_EQUIP_LEATHER, 0);
	public static ArmorMaterial armorSanta = EnumHelper.addArmorMaterial("SANTA", "santa", 7, new int[]{1, 4, 2, 1}, 16, SoundEvents.ITEM_ARMOR_EQUIP_LEATHER, 0);
	
	
	
	public static void initItems()
	{
		decor_door_item = new ItemDecorDoorItem(WinterBlocks.decor_door).setRegistryName(decor_door_item.getRegistryName());
		all_items.add(decor_door_item);
		
		lights = new ItemLights(WinterBlocks.lights).setRegistryName(lights.getRegistryName());
		all_items.add(lights);
		
		ice_shard = new ItemBasic("ice_shard");
		all_items.add(ice_shard);
		
		ice_chunk = new ItemBasic("ice_chunk");
		all_items.add(ice_chunk);
		
		ice_gem = new ItemBasic("ice_gem");
		all_items.add(ice_gem);
		
		ice_staff = new ItemBasic("ice_staff");
		all_items.add(ice_staff);
		
		ice_skates = new ArmorIceSkates(armorSkates, 0, EntityEquipmentSlot.FEET, "ice_skates").setRegistryName(ice_skates.getRegistryName());
		all_items.add(ice_skates);
		
		iceball = new ItemBasic("iceball");
		all_items.add(iceball);
		
		empty_mug = new ItemBasic("empty_mug");
		all_items.add(empty_mug);
		
		waffle_cone = new ItemBasic("icecream_cone");
		all_items.add(waffle_cone);
		
		polarbear_fur = new ItemBasic("polarbear_fur");
		all_items.add(polarbear_fur);
		
		polarbear_fur_red = new ItemBasic("polarbear_fur_red");
		all_items.add(polarbear_fur_red);
		
		fruit_cake_item = new ItemFruitCake("fruit_cake_item", WinterBlocks.fruit_cake).setRegistryName(fruit_cake_item.getRegistryName());
		all_items.add(fruit_cake_item);
		
		candle_item = new ItemCandle("candle_item", WinterBlocks.candle).setRegistryName(candle_item.getRegistryName());
			
		ornament_item = new ItemCandle("ornament_item", WinterBlocks.ornament).setRegistryName(ornament_item.getRegistryName());
		
		ornament_rare_item = new ItemOrnamentRare("ornament_rare", WinterBlocks.ornament_rare).setRegistryName(ornament_rare_item.getRegistryName());
	
		candy_cane = new ItemWinterFood("candy_cane", 3, 0.6F, false);
		all_items.add(candy_cane);
		
		marshmallow = new ItemWinterFood("marshmallow", 1, 0.3F, false);
		all_items.add(marshmallow);
		
		gingerbread_man = new ItemWinterFood("gingerbread_man", 3, 0.5F, false);
		all_items.add(gingerbread_man);
		
		venison = new ItemWinterFood("venison_raw", 4, 0.3F, true);
		all_items.add(venison);
		
		venison_cooked = new ItemWinterFood("venison_cooked", 10, 0.9F, true);
		all_items.add(venison_cooked);
		
		christmas_cookie = new ItemWinterFood("christmas_cookie", 11, 1.2F, false);
		all_items.add(christmas_cookie);
		
		egg_nog = new ItemWinterFood("egg_nog", 12, 0.7F, false, true);
		all_items.add(egg_nog);
		
		choc_milk = new ItemWinterFood("choc_milk", 8, 0.8F, false, true, "\u00a77\u00a7oWarm it up for a tastier drink!");
		all_items.add(choc_milk);
		
		hot_choc = new ItemWinterFood("hot_choc", 16, 1.0F, false, true, "\u00a7bGives a Speed Boost").setPotion(1, 45, 2);
		all_items.add(hot_choc);
		
		antlers = new ArmorAntlers("antlers", armorSkates, 0, EntityEquipmentSlot.HEAD).setRegistryName(antlers.getRegistryName());
		all_items.add(antlers);
		
		reindeer_saddle = new MagicSaddle();
		all_items.add(reindeer_saddle);
		
		santa_helmet = new ArmorSanta("santa_helmet", armorSanta, 0, EntityEquipmentSlot.HEAD).setRegistryName(santa_helmet.getRegistryName());
		all_items.add(santa_helmet);
		
		santa_plate = new ArmorSanta("santa_plate", armorSanta, 0, EntityEquipmentSlot.CHEST).setRegistryName(santa_plate.getRegistryName());
		all_items.add(santa_plate);
		
		santa_legs = new ArmorSanta("santa_legs", armorSanta, 0, EntityEquipmentSlot.LEGS).setRegistryName(santa_legs.getRegistryName());
		all_items.add(santa_legs);
		
		santa_boots = new ArmorSanta("santa_boots", armorSanta, 0, EntityEquipmentSlot.FEET).setRegistryName(santa_boots.getRegistryName());
		all_items.add(santa_boots);
		
		music_disk_jingle = new ItemChristmasDisk("music_disk_jingle", WCSounds.snd_disk_jingle);
		all_items.add(music_disk_jingle);
		
		music_disk_halls = new ItemChristmasDisk("music_disk_halls", WCSounds.snd_disk_halls);
		all_items.add(music_disk_halls);
		
		candy_cane_sword = new ItemCandyCaneSword("candy_cane_sword", toolCandyCane);
		all_items.add(candy_cane_sword);
		
		candy_cane_axe = new ItemCandyCaneAxe("candy_cane_axe", toolCandyCane);
		all_items.add(candy_cane_axe);
		
		shard_sword = new ItemBasicSword("shard_sword", toolShard, null);
		all_items.add(shard_sword);
		
		rocky_snowball = new ItemRockySnowball("snowball_rock");
		all_items.add(rocky_snowball);
		
		icecream_vanilla = new ItemBasic("icecream_vanilla");
		all_items.add(icecream_vanilla);
		
		icecream_chocolate = new ItemBasic("icecream_chocolate");
		all_items.add(icecream_chocolate);
		
		icecream_strawberry = new ItemBasic("icecream_strawberry");
		all_items.add(icecream_strawberry);
		
		icecream_cookie_dough = new ItemBasic("icecream_cookie_dough");
		all_items.add(icecream_cookie_dough);
		
		icecream_magma_cream = new ItemBasic("icecream_magma_cream");
		all_items.add(icecream_magma_cream);
		
		cone_vanilla = new ItemWinterFood("cone_vanilla", 6, 1.0F, false);
		all_items.add(cone_vanilla);
		
		cone_chocolate = new ItemWinterFood("cone_chocolate", 6, 1.0F, false, false, "\u00a7cGives a Strength Boost").setPotion(5, 45, 2);
		all_items.add(cone_chocolate);
		
		cone_strawberry = new ItemWinterFood("cone_strawberry", 6, 1.0F, false, false, "\u00a7cGives Health Regen").setPotion(10, 30, 2);
		all_items.add(cone_strawberry);
		
		cone_cookie_dough = new ItemWinterFood("cone_cookie_dough", 6, 1.0F, false, false, "\u00a7cGives a Speed Boost").setPotion(1, 45, 1);
		all_items.add(cone_cookie_dough);
		
		cone_magma_cream = new ItemWinterFood("cone_magma_cream", 6, 1.0F, false, false, "\u00a7cGives Fire Resistance").setPotion(12, 45, 2);
		all_items.add(cone_magma_cream);
	}
	
	@SideOnly(Side.CLIENT)
	public static void initModels()
	{
		for(Item item : all_items)
			registerRender(item);
	}
	
	public static void registerItems(RegistryEvent.Register<Item> event)
	{
		for(Item item : all_items)
			event.getRegistry().register(item);
	}
	
	public static void registerRender(Item item) {
		ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
	}
}

 

Link to comment
Share on other sites

1 hour ago, darthvader45 said:

How would I go about setting the registry name correctly to avoid any errors?

item.setRegistryName("item")

 

1 hour ago, darthvader45 said:

Would it be in the item class itself?

You do not have to.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hello, I'm trying to modify the effects of native enchantments for bows and arrows in Minecraft. After using a decompilation tool, I found that the specific implementations of native bow and arrow enchantments (including `ArrowDamageEnchantment`, `ArrowKnockbackEnchantment`, `ArrowFireEnchantment`, `ArrowInfiniteEnchantment`, `ArrowPiercingEnchantment`) do not contain any information about the enchantment effects (such as the `getDamageProtection` function for `ProtectionEnchantment`, `getDamageBonus` function for `DamageEnchantment`, etc.). Upon searching for the base class of arrows, `AbstractArrow`, I found a function named setEnchantmentEffectsFromEntity`, which seems to be used to retrieve the enchantment levels of the tool held by a `LivingEntity` and calculate the specific values of the enchantment effects. However, after testing with the following code, I found that this function is not being called:   @Mixin(AbstractArrow.class) public class ModifyArrowEnchantmentEffects {     private static final Logger LOGGER = LogUtils.getLogger();     @Inject(         method = "setEnchantmentEffectsFromEntity",         at = @At("HEAD")     )     private void logArrowEnchantmentEffectsFromEntity(CallbackInfo ci) {         LOGGER.info("Arrow enchantment effects from entity");     } }   Upon further investigation, I found that within the onHitEntity method, there are several lines of code:               if (!this.level().isClientSide &amp;&amp; entity1 instanceof LivingEntity) {                EnchantmentHelper.doPostHurtEffects(livingentity, entity1);                EnchantmentHelper.doPostDamageEffects((LivingEntity)entity1, livingentity);             }   These lines of code actually call the doPostHurt and doPostAttack methods of each enchantment in the enchantment list. However, this leads back to the issue because native bow and arrow enchantments do not implement these functions. Although their base class defines the functions, they are empty. At this point, I'm completely stumped and seeking assistance. Thank you.
    • I have been trying to make a server with forge but I keep running into an issue. I have jdk 22 installed as well as Java 8. here is the debug file  
    • it crashed again     What the console says : [00:02:03] [Server thread/INFO] [Easy NPC/]: [EntityManager] Server started! [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {iceandfire:fire_dragon_roost=true, iceandfire:fire_lily=true, iceandfire:spawn_dragon_skeleton_fire=true, iceandfire:lightning_dragon_roost=true, iceandfire:spawn_dragon_skeleton_lightning=true, iceandfire:ice_dragon_roost=true, iceandfire:ice_dragon_cave=true, iceandfire:lightning_dragon_cave=true, iceandfire:cyclops_cave=true, iceandfire:spawn_wandering_cyclops=true, iceandfire:spawn_sea_serpent=true, iceandfire:frost_lily=true, iceandfire:hydra_cave=true, iceandfire:lightning_lily=true, iceandfireixie_village=true, iceandfire:myrmex_hive_jungle=true, iceandfire:myrmex_hive_desert=true, iceandfire:silver_ore=true, iceandfire:siren_island=true, iceandfire:spawn_dragon_skeleton_ice=true, iceandfire:spawn_stymphalian_bird=true, iceandfire:fire_dragon_cave=true, iceandfire:sapphire_ore=true, iceandfire:spawn_hippocampus=true, iceandfire:spawn_death_worm=true} [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {TROLL_S=true, HIPPOGRYPH=true, AMPHITHERE=true, COCKATRICE=true, TROLL_M=true, DREAD_LICH=true, TROLL_F=true} [00:02:03] [Server thread/INFO] [ne.be.lo.WeaponRegistry/]: Encoded Weapon Attribute registry size (with package overhead): 41976 bytes (in 5 string chunks with the size of 10000) [00:02:03] [Server thread/INFO] [patchouli/]: Sending reload packet to clients [00:02:03] [Server thread/WARN] [voicechat/]: [voicechat] Running in offline mode - Voice chat encryption is not secure! [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Using server-ip as bind address: 0.0.0.0 [00:02:03] [Server thread/WARN] [ModernFix/]: Dedicated server took 22.521 seconds to load [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Voice chat server started at 0.0.0.0:25565 [00:02:03] [Server thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.player.Player from class tschipp.carryon.common.carry.CarryOnDataManager [00:02:03] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@2941ffd5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 0 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 1 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 2 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 3 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 4 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 6 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 7 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 8 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 9 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 10 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 11 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 12 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 13 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 14 [00:02:19] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@ebc7ef2 [00:02:19] [Server thread/INFO] [minecraft/PlayerList]: ZacAdos[/90.2.17.162:49242] logged in with entity id 1062 at (-1848.6727005281205, 221.0, -3054.2468255848935) [00:02:19] [Server thread/ERROR] [ModernFix/]: Skipping entity ID sync for com.talhanation.smallships.world.entity.ship.Ship: java.lang.NoClassDefFoundError: net/minecraft/client/CameraType [00:02:19] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos joined the game [00:02:19] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:19] [Server thread/INFO] [se.mi.te.da.DataManager/]: Sending data to client: ZacAdos [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Received secret request of - Gloop - ZacAdos (17) [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Sent secret to - Gloop - ZacAdos [00:02:21] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully authenticated player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully validated connection of player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Player - Gloop - ZacAdos (cc56befd-d376-3526-a760-340713c478bd) successfully connected to voice chat stop [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping the server [00:02:34] [Server thread/INFO] [mo.pl.ar.ArmourersWorkshop/]: stop local service [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players [00:02:34] [Server thread/INFO] [minecraft/ServerGamePacketListenerImpl]: ZacAdos lost connection: Server closed [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos left the game [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (world): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage: All dimensions are saved [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopping IO worker... [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopped IO worker! [00:02:34] [Server thread/INFO] [Calio/]: Removing Dynamic Registries for: net.minecraft.server.dedicated.DedicatedServer@7dc879e1 [MineStrator Daemon]: Checking server disk space usage, this could take a few seconds... [MineStrator Daemon]: Updating process configuration files... [MineStrator Daemon]: Ensuring file permissions are set correctly, this could take a few seconds... [MineStrator Daemon]: Pulling Docker container image, this could take a few minutes to complete... [MineStrator Daemon]: Finished pulling Docker container image container@pterodactyl~ java -version openjdk version "17.0.10" 2024-01-16 OpenJDK Runtime Environment Temurin-17.0.10+7 (build 17.0.10+7) OpenJDK 64-Bit Server VM Temurin-17.0.10+7 (build 17.0.10+7, mixed mode, sharing) container@pterodactyl~ java -Xms128M -Xmx6302M -Dterminal.jline=false -Dterminal.ansi=true -Djline.terminal=jline.UnsupportedTerminal -p libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar:libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules ALL-MODULE-PATH --add-opens java.base/java.util.jar=cpw.mods.securejarhandler --add-opens java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports java.base/sun.security.util=cpw.mods.securejarhandler --add-exports jdk.naming.dns/com.sun.jndi.dns=java.naming -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher-1.1.2.jar,securejarhandler-2.1.4.jar,asm-commons-9.5.jar,asm-util-9.5.jar,asm-analysis-9.5.jar,asm-tree-9.5.jar,asm-9.5.jar,JarJarFileSystems-0.3.16.jar -DlibraryDirectory=libraries -DlegacyClassPath=libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar:libraries/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar:libraries/net/minecraftforge/eventbus/6.0.3/eventbus-6.0.3.jar:libraries/net/minecraftforge/forgespi/6.0.0/forgespi-6.0.0.jar:libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar:libraries/cpw/mods/modlauncher/10.0.8/modlauncher-10.0.8.jar:libraries/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar:libraries/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar:libraries/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar:libraries/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar:libraries/net/jodah/typetools/0.8.3/typetools-0.8.3.jar:libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar:libraries/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar:libraries/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar:libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar:libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar:libraries/net/minecraftforge/JarJarSelector/0.3.16/JarJarSelector-0.3.16.jar:libraries/net/minecraftforge/JarJarMetadata/0.3.16/JarJarMetadata-0.3.16.jar:libraries/net/minecraftforge/fmlloader/1.19.2-43.3.0/fmlloader-1.19.2-43.3.0.jar:libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-extra.jar:libraries/com/github/oshi/oshi-core/5.8.5/oshi-core-5.8.5.jar:libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar:libraries/com/mojang/authlib/3.11.49/authlib-3.11.49.jar:libraries/com/mojang/brigadier/1.0.18/brigadier-1.0.18.jar:libraries/com/mojang/datafixerupper/5.0.28/datafixerupper-5.0.28.jar:libraries/com/mojang/javabridge/1.2.24/javabridge-1.2.24.jar:libraries/com/mojang/logging/1.0.0/logging-1.0.0.jar:libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar:libraries/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar:libraries/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar:libraries/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar:libraries/io/netty/netty-handler/4.1.77.Final/netty-handler-4.1.77.Final.jar:libraries/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar:libraries/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar:libraries/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar:libraries/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar:libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar:libraries/net/java/dev/jna/jna/5.10.0/jna-5.10.0.jar:libraries/net/java/dev/jna/jna-platform/5.10.0/jna-platform-5.10.0.jar:libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar:libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:libraries/org/apache/logging/log4j/log4j-api/2.17.0/log4j-api-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-core/2.17.0/log4j-core-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-slf4j18-impl/2.17.0/log4j-slf4j18-impl-2.17.0.jar:libraries/org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.jar cpw.mods.bootstraplauncher.BootstrapLauncher --launchTarget forgeserver --fml.forgeVersion 43.3.0 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [00:02:43] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [00:02:44] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection Latest log [29Mar2024 00:02:42.803] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [29Mar2024 00:02:42.805] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [29Mar2024 00:02:43.548] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [29Mar2024 00:02:43.876] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.878] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:44.033] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [29Mar2024 00:02:44.034] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [29Mar2024 00:02:44.034] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection
    • I am unable to do that. Brigadier is a mojang library that parses commands.
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.