Jump to content

Recommended Posts

Posted

 

 

2 mods loaded

Minecraft Forge 3.3.8.152

FML v2.2.78.153

Forge Mod Loader version 2.2.78.153 for Minecraft 1.2.5

mod_MinecraftForge : Pre-initialized (minecraft.jar)

mod_Hybrid : Loaded (minecraft.jar)

 

 

      Minecraft has crashed!     

      ----------------------     

 

Minecraft has stopped running because it encountered a problem.

 

 

 

 

--- BEGIN ERROR REPORT cbdb86a8 --------

Generated 7/17/12 9:26 PM

 

Minecraft: Minecraft 1.2.5

OS: Windows XP (x86) version 5.1

Java: 1.7.0_05, Oracle Corporation

VM: Java HotSpot Client VM (mixed mode), Oracle Corporation

LWJGL: 2.4.2

OpenGL: Intel 945GM version 1.4.0 - Build 7.14.10.4926, Intel

 

cpw.mods.fml.common.LoaderException: java.lang.IllegalArgumentException: Illegal object for naming null

at cpw.mods.fml.common.modloader.ModLoaderModContainer.preInit(ModLoaderModContainer.java:114)

at cpw.mods.fml.common.Loader.preModInit(Loader.java:235)

at cpw.mods.fml.common.Loader.loadMods(Loader.java:593)

at cpw.mods.fml.client.FMLClientHandler.onPreLoad(FMLClientHandler.java:193)

at net.minecraft.client.Minecraft.a(Minecraft.java:383)

at net.minecraft.client.Minecraft.run(Minecraft.java:735)

at java.lang.Thread.run(Unknown Source)

Caused by: java.lang.IllegalArgumentException: Illegal object for naming null

at cpw.mods.fml.client.FMLClientHandler.getObjectName(FMLClientHandler.java:783)

at cpw.mods.fml.common.FMLCommonHandler.addNameForObject(FMLCommonHandler.java:396)

at ModLoader.addName(ModLoader.java:142)

at ModLoader.addName(ModLoader.java:130)

at mod_Hybrid.addNames(mod_Hybrid.java:51)

at mod_Hybrid.<init>(mod_Hybrid.java:11)

at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)

at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)

at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)

at java.lang.reflect.Constructor.newInstance(Unknown Source)

at java.lang.Class.newInstance0(Unknown Source)

at java.lang.Class.newInstance(Unknown Source)

at cpw.mods.fml.common.modloader.ModLoaderModContainer.preInit(ModLoaderModContainer.java:107)

... 6 more

--- END ERROR REPORT f6d5e085 ----------

 

 

 

 

Ok, Today I added my first official block to My Mod. :D Yay, but everytime i recompile, reobfuscate, and put into my minecraft.jar i get the above error. May someone please help? All help is appreciated.

Posted
at mod_Hybrid.addNames(mod_Hybrid.java:51)

Seems there is something

In your mod_Hybrid.java file

In the function addNames

On line 51

What is null

Figure it out.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

Ok, So i found what was supposedly null:

 

ModLoader.addName(DarkStone, "Darkstone");

 

Now what is so null about it???

 

Other Parts of my code that have to do with this

 

Block register

 

 

public void registerBlocks()
 {
	 ModLoader.registerBlock(DarkStone);
 }

 

 

 

Add Recipe

 

 

ModLoader.addRecipe(new ItemStack(DarkStone, 1), new Object[]{
		"OOO", "OGO", "OOO", Character.valueOf('O'), Block.obsidian, Character.valueOf('G'), Block.glowStone, 
	 });
 }

 

 

 

I think making the block???

 

 

public Block DarkStone;


 static Configuration config = new Configuration(new File(ModLoader.getMinecraftInstance() + "/config/Hybrid.cfg"));
 static int DarkStoneID;



 

 

 

Config & InitItems

 

 

public void load() {

	 MinecraftForgeClient.preloadTexture("/HybridCraft/terrain/block.png");

	 config();	
	 initItems();

 }
public static int config() {
	config.load();
	DarkStoneID = Integer.parseInt(config.getOrCreateBlockIdProperty("Dark Stone ID", 5027).value);
	config.save();
	return DarkStoneID;
}
private void initItems() {
	DarkStone = new BlockDarkStone(234, 0, Material.glass).setBlockName("DarkStone").setLightValue(0.3182F);

}
}

 

 

 

BlockDarkStone.java

 

 

package net.minecraft.src;

import net.minecraft.src.forge.ITextureProvider;

public class BlockDarkStone extends Block implements ITextureProvider {

protected BlockDarkStone(int par1, int par2, Material par3Material) {
	super(par1, par2, par3Material);
}

@Override
public String getTextureFile(){
	return "HybridCraft/terrain/blocks.png";
}

}

 

 

 

Can someone please explain why this is null???

 

 

 

Posted

I see no where in there where you assign it a value.

Also thats a horrible name for a variable, it makes it look like a class.

And dont post code snipits, post full code so we can see the project flow.

Somehow, its null, there really is no if ands or buts about it.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

 

 

package net.minecraft.src;
import java.io.File;
import java.util.Random;

import net.minecraft.src.forge.Configuration;
import net.minecraft.src.forge.MinecraftForgeClient;
public class mod_Hybrid extends BaseMod{
 public mod_Hybrid()
 {
	 //TODO List
	 addNames();
	 setTextures();
	 addFuel();
	 registerBlocks();
	 addRecipes();
	 addSmelting();
 }
 public String Version()
 {
	 return "DirtCraft v.1";
 }
 public void addNames()
 {
	 ModLoader.addName(DirtPickaxe, "Dirt Pickaxe");
	 ModLoader.addName(DirtAxe, "Dirt Axe");
	 ModLoader.addName(DirtShovel, "Dirt Shovel");
	 ModLoader.addName(DirtHoe, "Dirt Hoe");
	 ModLoader.addName(DirtSword, "Dirt Sword");
	 ModLoader.addName(DirtIngot, "Dirt Ingot");
	 ModLoader.addName(DirtHelmet, "Dirt Helmet");
	 ModLoader.addName(DirtChest, "Dirt Chestpate");
	 ModLoader.addName(DirtLegs, "Dirt Pants");
	 ModLoader.addName(DirtShoes, "Dirt Boots");
	 ModLoader.addName(StoneIngot, "Stone Ingot");
	 ModLoader.addName(RStone, "Reinforced Stone");
	 ModLoader.addName(StoneHelmet, "Stone Helmet");
	 ModLoader.addName(StoneChest, "Stone Chestplate");
	 ModLoader.addName(StoneLegs, "Stone Pants");
	 ModLoader.addName(StoneShoes, "Stone Shoes");
	 ModLoader.addName(RSPick, "Reinforced Stone Pickaxe");
	 ModLoader.addName(RSAxe, "Reinforced Stone Axe");
	 ModLoader.addName(RSHoe, "Reinforced Stone Hoe");
	 ModLoader.addName(RSShovel, "Reinforced Stone Shovel");
	 ModLoader.addName(RSSword, "Reinforced Stone Sword");
	 ModLoader.addName(Box, "Card Board Box");
	 ModLoader.addName(CardBoardPiece, "Piece of Cardboard");
	 ModLoader.addName(BoardHat, "Cardboard Hat");
	 ModLoader.addName(BoardChest, "Chestplate of Cardboard");
	 ModLoader.addName(BoardLegs, "Pants of Cardboard");
	 ModLoader.addName(BoardShoes, "Shoes of Cardboard");
	 ModLoader.addName(DarkStone, "Darkstone");
	 ModLoader.addName(HybridDS, "Dirt/Stone Hybrid");
	 ModLoader.addName(HybridDSI, "Dirt/Stone Ingot");
	 ModLoader.addName(HybridFuel, "Mixed Fuel");
 }
 public void setTextures()
 {
	 DirtPickaxe.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Dirt/DirtPickaxe.png");
	 DirtAxe.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Dirt/DirtAxe.png");
	 DirtShovel.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Dirt/DirtShovel.png");
	 DirtHoe.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Dirt/DirtHoe.png");
	 DirtSword.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Dirt/DirtSword.png");
	 DirtIngot.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Dirt/DirtIngot.png");
	 DirtHelmet.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Dirt/DirtHelmet.png");
	 DirtChest.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Dirt/DirtChest.png");
	 DirtLegs.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Dirt/DirtLegs.png");
	 DirtShoes.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Dirt/DirtShoes.png");
	 StoneIngot.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Stone/StoneIngot.png");
	 RStone.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Stone/HardStone.png");
	 StoneHelmet.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Stone/Helmet.png");
	 StoneChest.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Stone/Chest.png");
	 StoneLegs.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Stone/Legs.png");
	 StoneShoes.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Stone/Shoes.png");
	 RSPick.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Stone/Pickaxe.png");
	 RSAxe.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Stone/Axe.png");
	 RSHoe.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Stone/Hoe.png");
	 RSShovel.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Stone/Shovel.png");
	 RSSword.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Stone/Sword.png");
	 BoardHat.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Wood/Helmet.png");
	 BoardChest.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Wood/Chest.png");
	 BoardLegs.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Wood/Legs.png");
	 BoardShoes.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Wood/Shoes.png");
	 HybridDS.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Hybrid/DS.png");
	 HybridDSI.iconIndex = ModLoader.addOverride("/gui/items.png", "/HybridCraft/Hybrid/DSI.png");
	 HybridFuel.iconIndex = ModLoader.addOverride("/gui/Items.png", "/HybridCraft/Hybrid/Fuel.png");
 }
 public void addFuel()
 {

 }
 public void registerBlocks()
 {
	 ModLoader.registerBlock(DarkStone);
 }
 public void addRecipes()
 {
	 ModLoader.addRecipe(new ItemStack(DirtPickaxe, 1), new Object[] {
		 "DDD", " S ", " S ", Character.valueOf('D'), DirtIngot, Character.valueOf('S'), Item.stick
	 });
	 ModLoader.addRecipe(new ItemStack(DirtAxe, 1), new Object[] {
		 "DD ", "DS ", " S ", Character.valueOf('D'), DirtIngot, Character.valueOf('S'), Item.stick
	 });
	 ModLoader.addRecipe(new ItemStack(DirtShovel, 1), new Object[] {
		 " D ", " S ", " S ", Character.valueOf('D'), DirtIngot, Character.valueOf('S'), Item.stick
	 });
	 ModLoader.addRecipe(new ItemStack(DirtHoe, 1), new Object[] {
		 "DD ", " S ", " S ", Character.valueOf('D'), DirtIngot, Character.valueOf('S'), Item.stick
	 });
	 ModLoader.addRecipe(new ItemStack(DirtSword, 1), new Object[] {
		 " D ", " D ", " S ", Character.valueOf('D'), DirtIngot, Character.valueOf('S'), Item.stick
	 });
	 ModLoader.addRecipe(new ItemStack(DirtHelmet, 1), new Object[]{
		 "DDD", "D D", " ", Character.valueOf('D'), DirtIngot
	 });
	 ModLoader.addRecipe(new ItemStack(DirtChest, 1), new Object[]{
		 "D D", "DDD", "DDD", Character.valueOf('D'), DirtIngot
	 });
	 ModLoader.addRecipe(new ItemStack(DirtLegs, 1), new Object[]{
		 "DDD", "D D", "D D", Character.valueOf('D'), DirtIngot
	 });
	 ModLoader.addRecipe(new ItemStack(DirtShoes, 1), new Object[]{
		 " ", "D D", "D D", Character.valueOf('D'), DirtIngot
	 });
	 ModLoader.addRecipe(new ItemStack(RStone, 4), new Object[]{
		 "SSS", "SSS", "SSS", Character.valueOf('S'), Block.stone
	 });
	 ModLoader.addRecipe(new ItemStack(StoneHelmet, 1), new Object[]{
		"RRR", "R R", "   ", Character.valueOf('R'), RStone,
	 });
	 ModLoader.addRecipe(new ItemStack(StoneHelmet, 1), new Object[]{
		"   ", "RRR", "R R", Character.valueOf('R'), RStone,
	 });
	 ModLoader.addRecipe(new ItemStack(StoneChest, 1), new Object[]{
		"R R", "RRR", "RRR", Character.valueOf('R'), RStone,
	 });
	 ModLoader.addRecipe(new ItemStack(StoneLegs, 1), new Object[]{
		"RRR", "R R", "R R", Character.valueOf('R'), RStone,
	 });
	 ModLoader.addRecipe(new ItemStack(StoneShoes, 1), new Object[]{
		"   ", "R R", "R R", Character.valueOf('R'), RStone,
	 });
	 ModLoader.addRecipe(new ItemStack(StoneShoes, 1), new Object[]{
		"R R", "R R", "   ", Character.valueOf('R'), RStone,
	 });
	 ModLoader.addRecipe(new ItemStack(RSPick, 1), new Object[]{
		"RRR", " P ", " S ", Character.valueOf('R'), RStone, Character.valueOf('P'), Item.pickaxeStone, Character.valueOf('S'), Item.stick,
	 });
	 ModLoader.addRecipe(new ItemStack(RSAxe, 1), new Object[]{
		"RR ", "RA ", " S ", Character.valueOf('R'), RStone, Character.valueOf('A'), Item.axeStone, Character.valueOf('S'), Item.stick,
	 });
	 ModLoader.addRecipe(new ItemStack(RSAxe, 1), new Object[]{
		" RR", " AR", " S ", Character.valueOf('R'), RStone, Character.valueOf('A'), Item.axeStone, Character.valueOf('S'), Item.stick,
	 });
	 ModLoader.addRecipe(new ItemStack(RSHoe, 1), new Object[]{
		"RR ", " H ", " S ", Character.valueOf('R'), RStone, Character.valueOf('H'), Item.hoeStone, Character.valueOf('S'), Item.stick,
	 });
	 ModLoader.addRecipe(new ItemStack(RSHoe, 1), new Object[]{
		" RR", " H ", " S ", Character.valueOf('R'), RStone, Character.valueOf('H'), Item.hoeStone, Character.valueOf('S'), Item.stick,
	 });
	 ModLoader.addRecipe(new ItemStack(RSShovel, 1), new Object[]{
		"R  ", "H  ", "S  ", Character.valueOf('R'), RStone, Character.valueOf('H'), Item.shovelStone, Character.valueOf('S'), Item.stick,
	 });
	 ModLoader.addRecipe(new ItemStack(RSShovel, 1), new Object[]{
		" R ", " H ", " S ", Character.valueOf('R'), RStone, Character.valueOf('H'), Item.shovelStone, Character.valueOf('S'), Item.stick,
	 });
	 ModLoader.addRecipe(new ItemStack(RSShovel, 1), new Object[]{
		"  R", "  H", "  S", Character.valueOf('R'), RStone, Character.valueOf('H'), Item.shovelStone, Character.valueOf('S'), Item.stick,
	 });
	 ModLoader.addRecipe(new ItemStack(RSSword, 1), new Object[]{
		"R  ", "R  ", "S  ", Character.valueOf('R'), RStone, Character.valueOf('S'), Item.swordStone,
	 });
	 ModLoader.addRecipe(new ItemStack(RSSword, 1), new Object[]{
		" R ", " R ", " S ", Character.valueOf('R'), RStone, Character.valueOf('S'), Item.swordStone,
	 });
	 ModLoader.addRecipe(new ItemStack(RSSword, 1), new Object[]{
		"  R", "  R", "  S", Character.valueOf('R'), RStone, Character.valueOf('S'), Item.swordStone,
	 });
	 ModLoader.addRecipe(new ItemStack(Box, 2), new Object[]{
		" W ", "W W", " W ", Character.valueOf('W'), Block.planks, 
	 });
	 ModLoader.addRecipe(new ItemStack(CardBoardPiece, 4), new Object[]{
		"B  ", "   ", "   ", Character.valueOf('B'), Box,
	 });
	 ModLoader.addRecipe(new ItemStack(CardBoardPiece, 4), new Object[]{
		" B ", "   ", "   ", Character.valueOf('B'), Box,
	 });
	 ModLoader.addRecipe(new ItemStack(CardBoardPiece, 4), new Object[]{
		"  B", "   ", "   ", Character.valueOf('B'), Box,
	 });
	 ModLoader.addRecipe(new ItemStack(CardBoardPiece, 4), new Object[]{
		"   ", "B   ", "   ", Character.valueOf('B'), Box,
	 });
	 ModLoader.addRecipe(new ItemStack(CardBoardPiece, 4), new Object[]{
		"   ", " B ", "   ", Character.valueOf('B'), Box,
	 });
	 ModLoader.addRecipe(new ItemStack(CardBoardPiece, 4), new Object[]{
		"   ", "  B", "   ", Character.valueOf('B'), Box,
	 });
	 ModLoader.addRecipe(new ItemStack(CardBoardPiece, 4), new Object[]{
		"   ", "   ", "B  ", Character.valueOf('B'), Box,
	 });
	 ModLoader.addRecipe(new ItemStack(CardBoardPiece, 4), new Object[]{
		"   ", "   ", " B ", Character.valueOf('B'), Box,
	 });
	 ModLoader.addRecipe(new ItemStack(CardBoardPiece, 4), new Object[]{
		"   ", "   ", "  B", Character.valueOf('B'), Box,
	 });
	 ModLoader.addRecipe(new ItemStack(BoardHat, 1), new Object[]{
		"BBB", "B B", "   ", Character.valueOf('B'), CardBoardPiece,
	 });
	 ModLoader.addRecipe(new ItemStack(BoardHat, 1), new Object[]{
		"   ", "BBB", "B B", Character.valueOf('B'), CardBoardPiece,
	 });
	 ModLoader.addRecipe(new ItemStack(BoardChest, 1), new Object[]{
		"B B", "BBB", "BBB", Character.valueOf('B'), CardBoardPiece,
	 });
	 ModLoader.addRecipe(new ItemStack(BoardLegs, 1), new Object[]{
		"BBB", "B B", "B B", Character.valueOf('B'), CardBoardPiece,
	 });
	 ModLoader.addRecipe(new ItemStack(BoardShoes, 1), new Object[]{
		"B B", "B B", "   ", Character.valueOf('B'), CardBoardPiece,
	 });
	 ModLoader.addRecipe(new ItemStack(BoardShoes, 1), new Object[]{
		"   ", "B B", "B B", Character.valueOf('B'), CardBoardPiece,
	 });
	 ModLoader.addRecipe(new ItemStack(DarkStone, 1), new Object[]{
		"OOO", "OGO", "OOO", Character.valueOf('O'), Block.obsidian, Character.valueOf('G'), Block.glowStone, 
	 });
	 ModLoader.addRecipe(new ItemStack(HybridDS, 2), new Object[]{
		"DSD", "SDS", "DSD", Character.valueOf('D'), Block.dirt, Character.valueOf('D'), Block.stone,
	 });
	 ModLoader.addShapelessRecipe(new ItemStack(HybridFuel, 3), new Object[]{
		"CR ", "   ", "   ", Character.valueOf('C'), Item.coal, Character.valueOf('R'), Block.wood,
	 });
 }
 public void addSmelting()
 {
	 ModLoader.addSmelting(Block.dirt.blockID, new ItemStack(DirtIngot, 1));
	 ModLoader.addSmelting(RStone.shiftedIndex, new ItemStack(StoneIngot, 1));
	 ModLoader.addSmelting(HybridDS.shiftedIndex, new ItemStack(HybridDSI, 1));
 }
 public static Item DirtPickaxe;
 public static Item DirtShovel;
 public static Item DirtAxe;
 public static Item DirtHoe;
 public static Item DirtSword;
 public static Item DirtIngot;
 public static int DirtIndex;
 public static Item DirtHelmet;
 public static Item DirtChest;
 public static Item DirtLegs;
 public static Item DirtShoes;
 public static Item StoneIngot;
 public static int StoneIndex;
 public static Item StoneHelmet;
 public static Item StoneChest;
 public static Item StoneLegs;
 public static Item StoneShoes;
 public static Item RStone;
 public static Item RSPick;
 public static Item RSAxe;
 public static Item RSHoe;
 public static Item RSShovel;
 public static Item RSSword;
 public static int WoodIndex;
 public static Item Box;
 public static Item CardBoardPiece;
 public static Item BoardHat;
 public static Item BoardChest;
 public static Item BoardLegs;
 public static Item BoardShoes;
 public Block DarkStone;
 public static Item HybridFuel;
 public static Item HybridDS;
 public static Item HybridDSI;


 static Configuration config = new Configuration(new File(ModLoader.getMinecraftInstance() + "/config/Hybrid.cfg"));
 static int DarkStoneID;



 static
 {
	 DirtPickaxe = new ItemPickaxe(5000, EnumToolMaterial.Dirt).setItemName("DirtPickaxe");
	 DirtAxe = new ItemAxe(5001, EnumToolMaterial.Dirt).setItemName("DirtAxe");
	 DirtShovel = new ItemSpade(5002, EnumToolMaterial.Dirt).setItemName("DirtShovel");
	 DirtHoe = new ItemHoe(5003, EnumToolMaterial.Dirt).setItemName("DirtHoe");
	 DirtSword = new ItemSword(5004, EnumToolMaterial.Dirt).setItemName("DirtSword");
	 DirtIngot = new Item(5005).setMaxStackSize(64).setItemName("DirtIngot");
	 DirtIndex = ModLoader.addArmor("Dirt");
	 DirtHelmet = new ItemArmor(5006, EnumArmorMaterial.Dirt, DirtIndex, 0).setItemName("DirtHelmet");
	 DirtChest = new ItemArmor(5007, EnumArmorMaterial.Dirt, DirtIndex, 1).setItemName("DirtChest");
	 DirtLegs = new ItemArmor(5008, EnumArmorMaterial.Dirt, DirtIndex, 2).setItemName("DirtLegs");
	 DirtShoes = new ItemArmor(5009, EnumArmorMaterial.Dirt, DirtIndex, 3).setItemName("DirtShoes");
	 StoneIngot = new Item(5010).setMaxStackSize(64).setItemName("StoneIngot");
	 StoneIndex = ModLoader.addArmor("Stone");
	 StoneHelmet = new ItemArmor(5011, EnumArmorMaterial.Stone, StoneIndex, 0).setItemName("StoneHelmet");
	 StoneChest = new ItemArmor(5012, EnumArmorMaterial.Stone, StoneIndex, 1).setItemName("StoneChest");
	 StoneLegs = new ItemArmor(5013, EnumArmorMaterial.Stone, StoneIndex, 2).setItemName("StoneLegs");
	 StoneShoes = new ItemArmor(5014, EnumArmorMaterial.Stone, StoneIndex, 3).setItemName("StoneShoes");
	 RStone = new Item(5015).setMaxStackSize(64).setItemName("RStone");
	 RSPick = new ItemPickaxe(5016, EnumToolMaterial.RStone).setItemName("RSPick");
	 RSAxe = new ItemAxe(5017, EnumToolMaterial.RStone).setItemName("RSAxe");
	 RSHoe = new ItemHoe(5018, EnumToolMaterial.RStone).setItemName("RSHoe");
	 RSShovel = new ItemSpade(5019, EnumToolMaterial.RStone).setItemName("RSShovel");
	 RSSword = new ItemSword(5020, EnumToolMaterial.RStone).setItemName("RSSword");
	 WoodIndex = ModLoader.addArmor("Wood");
	 Box = new Item(5021).setMaxStackSize(64).setItemName("CardBoard");
	 CardBoardPiece = new Item(5022).setMaxStackSize(64).setItemName("CardBoardPiece");
	 BoardHat = new Item(5023).setMaxStackSize(64).setItemName("BoardHat");
	 BoardChest = new Item(5024).setMaxStackSize(64).setItemName("BoardChest");
	 BoardLegs = new Item(5025).setMaxStackSize(64).setItemName("BoardLegs");
	 BoardShoes = new Item(5026).setMaxStackSize(64).setItemName("BoardShoes");
	 HybridDS = new Item(5028).setMaxStackSize(64).setItemName("Dirt/Stone Hybrid");
	 HybridDSI = new Item(5029).setMaxStackSize(64).setItemName("Dirt/Stone Ingot");
	 HybridFuel = new Item(5030).setMaxStackSize(64).setItemName("Hybrid Fuel");
 }

 @Override
 public String getVersion() {
	 return "0.1a";
 }



 @Override
 public void load() {

	 MinecraftForgeClient.preloadTexture("/HybridCraft/terrain/block.png");

	 config();	
	 initItems();

 }
public static int config() {
	config.load();
	DarkStoneID = Integer.parseInt(config.getOrCreateBlockIdProperty("Dark Stone ID", 5027).value);
	config.save();
	return DarkStoneID;
}
private void initItems() {
	DarkStone = new BlockDarkStone(234, 0, Material.glass).setBlockName("DarkStone").setLightValue(0.3182F);

}
}

 

 

 

there's entire code. :D

 

And also what do you mean by i didnt assign a value?? I assigned everything correctly... Or else there would be error's wouldnt there?

 

And I name things to where i know what they are...

  • Sad 1
Posted

Wow there are SOOO many things wrong with that code I don't know where to start

Character.valueOf fuck that shit

you're statically initializing everything

ALL of your variables have capitol, like you're declaring a fucking class.

You're doing all your shit in the constructor

You're using texture overrides for everything

 

 

Want to know why you're nulling debug your god damn code.

Its obvious, it will NEVER work in MCP

 

For the love of god, just.. do.. better....

 

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

It works in mcp. :D it worked fine up till i added a block. :D

 

Well heck it still works it just crashes because of stupid null object.

 

And also if there are SOOO many things wrong with it. WOuld you like to teach me how to code????

 

Or at least how to fix all my supposed screw ups?

Posted

I already listed the bulk of the things you're doing wrong.

What more do you want?

Also, try running it in eclipse, step through take a look at when things are running.

You'll see why your block is null.

 

However, I advise you go look into some lower level java tutorials before you work on modding.

I'm sure the minecraft community can last another few days without your ever so unique dirt items.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

Character.valueOf fuck that shit

 

Ok, How the hell am i supposed to define the letter for the fucking recipe?

 

you're statically initializing everything

 

How else am i supposed to initialize the god damn items?

 

ALL of your variables have capitol, like you're declaring a fucking class.

 

Ok, My mod! I can NAME anything HOWEVER THE FUCK I WANT TO!

 

You're doing all your shit in the constructor

 

Where else am i supposed to do my shit?

 

You're using texture overrides for everything

 

Ok, Maybe i dont want to use the ugly ass textures that minecraft gives???

 

Want to know why you're nulling debug your god damn code.

Its obvious, it will NEVER work in MCP

 

AND MY GOD DAMN CODE DOES WORK IN MCP!

 

I already listed the bulk of the things you're doing wrong.

What more do you want?

 

I WANT YOU TO EXPLAIN YOUR SELF WHEN YOU SAY SOMETHING I DID IS WRONG, CAUSE YOUR NOT HELPING ANYONE BUT YOURSELF BECAUSE ALL YOU DOING IS PISSING PEOPLE OFF WHEN YOU JUST SAY WHAT IS WRONG, AND NOT HOW TO FIX THE GOD DAMN THING!

 

Posted
Ok, How the hell am i supposed to define the letter for the fucking recipe?

Character literals

How else am i supposed to initialize the god damn items?
Non-statically, obviously, your mod gets instantiated, and then there are events that fire at certain times, take advantage of them.

Ok, My mod! I can NAME anything HOWEVER THE FUCK I WANT TO!
Not if you want any fucking help what so ever or if you want anyone who knows 2 shits about programming to even take a second glance. They are universal standards for a reason. Its like trying to ask someone for help and only typing in 1337-speak. It shows you to be a fucking moron not worth anyones time.

Where else am i supposed to do my shit?
In the two other major events that BaseMod exposes.

Ok, Maybe i dont want to use the ugly ass textures that minecraft gives???

What does that have to do with what I said? You're using addOverride when making a forge mod, taking up precious sprite indicies and making your code ugly as shit. Use your own texture sheets like a good boy.

AND MY GOD DAMN CODE DOES WORK IN MCP!
NO, No it doesnt, there is NO way your code as posted will NOT throw that NPE. MCP or not.

 

I WANT YOU TO EXPLAIN YOUR SELF WHEN YOU SAY SOMETHING I DID IS WRONG, CAUSE YOUR NOT HELPING ANYONE BUT YOURSELF BECAUSE ALL YOU DOING IS PISSING PEOPLE OFF WHEN YOU JUST SAY WHAT IS WRONG, AND NOT HOW TO FIX THE GOD DAMN THING!
I expect5 a modicum of intelligence from people and a willingness to learn/descover for themselves. I do not hand hold. I am not here to teach every 12 year old how to program. Its your job as someone who wants to make a mod to actually KNOW how to program well enough to understand the basics.

 

And yes, these things are the BASICS of programming.

 

Also, banned for not following directions, and for being a whinny little bastard.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

He really should take a few Java tutorials first though.  Before starting modding here we do expect people to know Java mostly well first.  Not necessarily the JVM, but at least java.

Posted

Hi, I am new to the forums as anyone could possibly tell, and I am just reading through to see if there are any unsolved problems, to which I doubt there are. But, I happened to come across this one to which _SparkMaster_ got banned for being a whinny little bastard (as lex stated), but I read the terms of agreement, and the sticky that says: Read this or you may get banned, and no where does it say he can be banned for being a whinny little bastard... I have one question is that the real reason why he got banned? I understand that he doesn't seem to have any knowledge of Java, but give him a break. I have tested out his mod, it is pretty great for a beginner. Main point being, Is he banned for being a whinny little bastard, not knowing java, or just because you feel like he doesn't need to waste your time?

Posted

That is just Lex's rules.  That page is not all inclusive, just the most common things.  :)

As for Lex, he would have to say why.

I also saw that spark tried to re-register, but he put the domain for his email address as yaoo.com, I am guessing he meant to put yahoo.com, he should fix that.

 

EDIT:  My 'guess' of why Lex did is because he was being argumentative.  Lex is harsh, he says things straight out, but what he says should be heeded.  Arguing with him just bugs him considering that he gave very useful information (if not kindly, but it was very useful), and the person tried to argue about it and attack.  As an example, the response "Ok, Maybe i dont want to use the ugly ass textures that minecraft gives???" makes no sense as it is quite obvious then just about every forge mod (if not every one) uses custom textures, and considering that adding an override is a modloader method that only has about 50 or so overrides available, then it is obvious then the forge mods must not be using it then.  Rather the mods use new texture sheets, which is actually both easier to use, more powerful, and has no such limitations.  By him using the overrides then he was reducing the ability for non-forge mods to be able to work with forge and his mod.  That is just one example, and instead of attacking then he should have asked 'why' and what he should be using instead.  We can be quite helpful here if people ask.  :)

Posted

Well, any idea on when I could possibly ask Lex about this???

 

Ok, now I agree and actually am starting to agree with Lex now, but still. If you think about it:

1) Dude was a noob at java

2) He is probably some kid that doesn't know what he was doing.

3) Ever heard of 2nd chances? I mean i am not siding with him, i am just asking, because if you think about it, when you ban someone, you lose a forge downloader... because they can't access forge through here. they have to find someone that has reuploaded forge.

 

And also regarding your last piece of last post:

 

Ask instead of Attacking, well Lex did sort of start critizing his work. Maybe Spark is some self concious kid that thought what he was doing was going to cover his mod.

 

Posted

I edited above post, but by posting that you basically did, Lex might respond when he is next on (anywhere from few hours to few days).  Or you can ask on the #minecraftforge irc channel on esper.  Just do not type out Lex's full name, he hates pings, it is in the IRC chat rules in the topic.  ;)

Posted

Eh, I'll just wait, considering that Spark did sort of attack, but it is also probably none of my buisness, I was just really curious.

 

Thanks. ;) Hey btw I have one question for you...

 

Could you possibly check out his mod? If i have to say it does give dirt a good use, and it is pretty set forward for planning. future wise. :) And with this post

 

Good Night People. I will check back tomorrow...

Posted

Eh, I'll just wait, considering that Spark did sort of attack, but it is also probably none of my buisness, I was just really curious.

 

Thanks. ;) Hey btw I have one question for you...

 

Could you possibly check out his mod? If i have to say it does give dirt a good use, and it is pretty set forward for planning. future wise. :) And with this post

 

Good Night People. I will check back tomorrow...

Always looking for fascinating ideas!  Link?  :)

Posted

Adding dirt tools does not a good mod make.

And I can ban anyone I please if they piss me off.

Being banned does NOT stop them from downloading forge because there are several official places aside from this forum to get the download links from.

I will not put up with arrogant twats who try to bitch at me when I do nothing but help.

If you don't like the way I provide help, don't post here.

 

I am a dick, I know it.

But i've earned the right to be a dick.

I am also correct when I am a dick, and provide proper help. If you don't like it, shut up or go away, if you don't you'll be banned.

It's a waist of my time to argue with immature people who do not know how to take statements of fact and help.

 

Forge is NOT a java school.

We will NOT help people who are just copy/pasting from tutorials.

I will NOT tolerate people who argue with there superiors. (When there superiors are correct)

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

Ok 1st: you used wrong form of waist. It supposed to be waste my time. :P

 

2nd: I see what your getting at, but really, noob at java, needs help, doesnt understand the help, then he will probably get pissed off because he was probably thinking, Why is "Lex" know forge modder not helping.

 

3rd: In my opinion your help was very vague... My opinion, but he probably thought WTH I dont understand, so therefore he isn't helping me...

 

And what do you mean by other places to download forge???

 

But thanks I was just really curious..

 

P.S. I do believe he was errogant in attacking instead of asking, but still, could possibly let some child piss you off so much as to ban him??? I mean really..

Definition of this Kid: Errogant little bastard that doesn't have a clue on WTF he is doing.

 

Also if you even looked at the mod thread, it shows a list of future updates, not only dirt tools. He is thinking of making hybrids of each of the tools. And then even possibly going from there idk. :P but it is a good build so far...

Everytime i google it, i get brought here... Then link through to the jenkins build...

 

 

Posted

1) Correct my spelling or grammar one more time and I will ban you

2) I dont care why he gets pissed, this is not a java school and we will not be teaching the basics of java.

3) Your opinion is invalid because I gave rather specific criticisems that anyone who knows anything about programing would understand.

4) Mediafire, Jenkins, Directly through the links, the 500 some odd mirriors I can find while googleing.

 

As for his mod, I have seen it, nothing he is ding in unique, or new, or innovative, or anything that would spark any sense of interest from me.

 

 

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I'm no Java expert, but am trying to generate the dimension noise_settings for my mod using code, but am stuck on how to program 'string' arguments. I have used the Noise Settings Generator at https://misode.github.io/worldgen/noise-settings/?version=1.20 to design my noise settings In my code, my RegistrySetBuilder adds Registries.NOISE_SETTINGS, and in that bootstrap I register my noise which creates a new NoiseGeneratorSettings. This creates a new NoiseRouter, to which I pass DensityFunction parameters Noise Settings Generator Float Arguments I can code like: DensityFunctions.constant(1) Object Arguments I can code like: DensityFunctions.noise(holdergetter.getOrThrow(Noises.SURFACE), 500.0D, -12.0D) But I can't see how to do String Arguments. In misode they look like Argument: String: minecraft:overworld_large_biomes/sloped_cheese   Any ideas?
    • Hello everyone, Very junior mod maker here. I'm making a floating plank that sits over water. There's this heavy shadow on it when there's a block over it for some reason. As you can see in the picture, the lily pad that has a block over it is just a little darker from the shadow. however my custom plank is almost dark. I have no idea what might cause this. If it is how I generate the block model, here's the code I'm using:   getBuilder(block.getId().getPath()) .ao(false) .texture("particle", new ResourceLocation(xxxxx.MODID, "block/" + block.getId().getPath())) .texture("texture", new ResourceLocation(xxxxx.MODID, "block/" + block.getId().getPath())) .element() .from(0.01f, -2f, 0.01f) .to(15.99f, 0.01f, 15.99f) .face(Direction.DOWN).uvs(0f, 0f, 16f, 16f).texture("#texture").cullface(Direction.DOWN).tintindex(0).end() .face(Direction.UP).uvs(0f, 0f, 16f, 16f).texture("#texture").cullface(Direction.UP).tintindex(0).end() .face(Direction.NORTH).uvs(0f, 0f, 16f, 2.01f).texture("#texture").cullface(Direction.NORTH).tintindex(0).end() .face(Direction.SOUTH).uvs(0f, 0f, 16f, 2.01f).texture("#texture").cullface(Direction.SOUTH).tintindex(0).end() .face(Direction.EAST).uvs(0f, 0f, 2.01f, 16f).texture("#texture").rotation(ModelBuilder.FaceRotation.CLOCKWISE_90).cullface(Direction.EAST).tintindex(0).end() .face(Direction.WEST).uvs(0f, 0f, 2.01f, 16f).texture("#texture").rotation(ModelBuilder.FaceRotation.CLOCKWISE_90).cullface(Direction.WEST).tintindex(0).end() .end();  
    • [30Jan2025 13:41:57. 714] [main/INFO] [cpw. mods. modlauncher. Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, arclightserver, --fml. forgeVersion, 47. 3. 22, --fml. mcVersion, 1. 20. 1, --fml. forgeGroup, net. minecraftforge, --fml. mcpVersion, 20230612. 114412, nogui] 14[30Jan2025 13:41:57. 715] [main/INFO] [cpw. mods. modlauncher. Launcher/MODLAUNCHER]: ModLauncher 10. 0. 9+10. 0. 9+main. dcd20f30 starting: java version 17. 0. 13 by Eclipse Adoptium; OS Linux arch amd64 version 5. 15. 0-131-generic 15[30Jan2025 13:41:58. 774] [main/INFO] [net. minecraftforge. fml. loading. ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is arclightserver 16[30Jan2025 13:41:58. 804] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0. 8. 5 Source=union:/server/libraries/org/spongepowered/mixin/0. 8. 5/mixin-0. 8. 5. jar%2399!/ Service=ModLauncher Env=SERVER 17[30Jan2025 13:41:59. 305] [main/WARN] [net. minecraftforge. fml. loading. moddiscovery. ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/fmlcore/1. 20. 1-47. 3. 22/fmlcore-1. 20. 1-47. 3. 22. jar is missing mods. toml file 18[30Jan2025 13:41:59. 308] [main/WARN] [net. minecraftforge. fml. loading. moddiscovery. ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/javafmllanguage/1. 20. 1-47. 3. 22/javafmllanguage-1. 20. 1-47. 3. 22. jar is missing mods. toml file 19[30Jan2025 13:41:59. 309] [main/WARN] [net. minecraftforge. fml. loading. moddiscovery. ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/lowcodelanguage/1. 20. 1-47. 3. 22/lowcodelanguage-1. 20. 1-47. 3. 22. jar is missing mods. toml file 20[30Jan2025 13:41:59. 311] [main/WARN] [net. minecraftforge. fml. loading. moddiscovery. ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/mclanguage/1. 20. 1-47. 3. 22/mclanguage-1. 20. 1-47. 3. 22. jar is missing mods. toml file 21[30Jan2025 13:41:59. 572] [main/INFO] [net. minecraftforge. fml. loading. moddiscovery. JarInJarDependencyLocator/]: Found 15 dependencies adding them to mods collection 22[30Jan2025 13:42:04. 300] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 23[30Jan2025 13:42:04. 507] [main/ERROR] [mixin/]: Mixin config mixins. megamons-common. json does not specify "minVersion" property 24[30Jan2025 13:42:04. 621] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [de. maxhenkel. tradecycling. MixinConnector] 25[30Jan2025 13:42:04. 625] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [io. izzel. arclight. common. mod. ArclightConnector] 26[30Jan2025 13:42:04. 696] [main/INFO] [Arclight/]: Arclight core mixin added. 27[30Jan2025 13:42:04. 708] [main/INFO] [Arclight/]: Arclight optimization mixin added. 28[30Jan2025 13:42:04. 712] [main/INFO] [cpw. mods. modlauncher. LaunchServiceHandler/MODLAUNCHER]: Launching target 'arclightserver' with arguments [nogui] 29[30Jan2025 13:42:04. 982] [main/WARN] [mixin/]: Reference map 'handcrafted-forge-1. 20. 1-forge-refmap. json' for handcrafted. mixins. json could not be read. If this is a development environment you can ignore this message 30[30Jan2025 13:42:05. 003] [main/WARN] [mixin/]: Reference map 'megamons-forge-refmap. json' for mixins. megamons-forge. json could not be read. If this is a development environment you can ignore this message 31[30Jan2025 13:42:05. 021] [main/WARN] [mixin/]: Reference map 'CreateLiquidFuel. refmap. json' for createliquidfuel. mixins. json could not be read. If this is a development environment you can ignore this message 32[30Jan2025 13:42:05. 029] [main/WARN] [mixin/]: Reference map 'chiselsandbits. refmap. json' for chisels-and-bits. mixins. json could not be read. If this is a development environment you can ignore this message 33[30Jan2025 13:42:06. 109] [main/WARN] [mixin/]: Error loading class: com/copycatsplus/copycats/content/copycat/slab/CopycatSlabBlock (java. lang. ClassNotFoundException: com. copycatsplus. copycats. content. copycat. slab. CopycatSlabBlock) 34[30Jan2025 13:42:06. 109] [main/WARN] [mixin/]: @Mixin target com. copycatsplus. copycats. content. copycat. slab. CopycatSlabBlock was not found create_connected. mixins. json:compat. CopycatBlockMixin 35[30Jan2025 13:42:06. 112] [main/WARN] [mixin/]: Error loading class: com/copycatsplus/copycats/content/copycat/board/CopycatBoardBlock (java. lang. ClassNotFoundException: com. copycatsplus. copycats. content. copycat. board. CopycatBoardBlock) 36[30Jan2025 13:42:06. 112] [main/WARN] [mixin/]: @Mixin target com. copycatsplus. copycats. content. copycat. board. CopycatBoardBlock was not found create_connected. mixins. json:compat. CopycatBlockMixin 37[30Jan2025 13:42:06. 154] [main/WARN] [mixin/]: Error loading class: me/jellysquid/mods/lithium/common/ai/pathing/PathNodeDefaults (java. lang. ClassNotFoundException: me. jellysquid. mods. lithium. common. ai. pathing. PathNodeDefaults) 38[30Jan2025 13:42:06. 212] [main/ERROR] [net. minecraftforge. fml. loading. RuntimeDistCleaner/DISTXFORM]: Attempted to load class com/simibubi/create/foundation/gui/AbstractSimiScreen for invalid dist DEDICATED_SERVER 39[30Jan2025 13:42:06. 213] [main/WARN] [mixin/]: Error loading class: com/simibubi/create/foundation/gui/AbstractSimiScreen (java. lang. RuntimeException: Attempted to load class com/simibubi/create/foundation/gui/AbstractSimiScreen for invalid dist DEDICATED_SERVER) 40[30Jan2025 13:42:06. 213] [main/WARN] [mixin/]: @Mixin target com. simibubi. create. foundation. gui. AbstractSimiScreen was not found create_connected. mixins. json:sequencedgearshift. AbstractSimiScreenAccessor 41[30Jan2025 13:42:07. 237] [main/WARN] [mixin/]: Error loading class: juuxel/adorn/block/variant/BlockVariantSets (java. lang. ClassNotFoundException: juuxel. adorn. block. variant. BlockVariantSets) 42[30Jan2025 13:42:07. 237] [main/WARN] [mixin/]: @Mixin target juuxel. adorn. block. variant. BlockVariantSets was not found mixins. cobblemon-common. json:invoker. AdornRegisterInvoker 43[30Jan2025 13:42:11. 158] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com. llamalad7. mixinextras. service. MixinExtrasServiceImpl(version=0. 3. 5). 44[30Jan2025 13:42:20. 266] [main/WARN] [mixin/]: Static binding violation: PRIVATE @Overwrite method m_147092_ in mixins. arclight. core. json:world. entity. ExperienceOrbMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. 45[30Jan2025 13:42:21. 288] [main/ERROR] [net. minecraftforge. coremod. transformer. CoreModBaseTransformer/COREMOD]: Error occurred applying transform of coremod coremods/field_to_method. js function biome 46java. lang. IllegalStateException: Field f_47437_ is not private and an instance field 47at net. minecraftforge. coremod. api. ASMAPI. redirectFieldToMethod(ASMAPI. java:1069) ~[coremods-5. 2. 4. jar%2388!/:?] {} 48at org. openjdk. nashorn. internal. scripts. Script$Recompilation$22$292A$\^eval\_. initializeCoreMod#transformer(:11) ~[?:?] {} 49at org. openjdk. nashorn. internal. runtime. ScriptFunctionData. invoke(ScriptFunctionData. java:648) ~[nashorn-core-15. 4. jar%23100!/:?] {} 50at org. openjdk. nashorn. internal. runtime. ScriptFunction. invoke(ScriptFunction. java:513) ~[nashorn-core-15. 4. jar%23100!/:?] {} 51at org. openjdk. nashorn. internal. runtime. ScriptRuntime. apply(ScriptRuntime. java:520) ~[nashorn-core-15. 4. jar%23100!/:?] {} 52at org. openjdk. nashorn. api. scripting. ScriptObjectMirror. call(ScriptObjectMirror. java:111) ~[nashorn-core-15. 4. jar%23100!/:?] {} 53at net. minecraftforge. coremod. NashornFactory. lambda$getFunction$0(NashornFactory. java:37) ~[coremods-5. 2. 4. jar%2388!/:5. 2. 4] {} 54at net. minecraftforge. coremod. transformer. CoreModClassTransformer. runCoremod(CoreModClassTransformer. java:22) ~[coremods-5. 2. 4. jar%2388!/:?] {} 55at net. minecraftforge. coremod. transformer. CoreModClassTransformer. runCoremod(CoreModClassTransformer. java:14) ~[coremods-5. 2. 4. jar%2388!/:?] {} 56at net. minecraftforge. coremod. transformer. CoreModBaseTransformer. transform(CoreModBaseTransformer. java:60) ~[coremods-5. 2. 4. jar%2388!/:?] {} 57at cpw. mods. modlauncher. TransformerHolder. transform(TransformerHolder. java:41) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 58at cpw. mods. modlauncher. ClassTransformer. performVote(ClassTransformer. java:179) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 59at cpw. mods. modlauncher. ClassTransformer. transform(ClassTransformer. java:117) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 60at cpw. mods. modlauncher. TransformingClassLoader. maybeTransformClassBytes(TransformingClassLoader. java:50) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 61at cpw. mods. cl. ModuleClassLoader. getMaybeTransformedClassBytes(ModuleClassLoader. java:250) ~[securejarhandler-2. 1. 10. jar:?] {} 62at cpw. mods. modlauncher. TransformingClassLoader. buildTransformedClassNodeFor(TransformingClassLoader. java:58) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 63at cpw. mods. modlauncher. LaunchPluginHandler. lambda$announceLaunch$10(LaunchPluginHandler. java:100) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 64at org. spongepowered. asm. launch. MixinLaunchPluginLegacy. getClassNode(MixinLaunchPluginLegacy. java:222) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 65at org. spongepowered. asm. launch. MixinLaunchPluginLegacy. getClassNode(MixinLaunchPluginLegacy. java:207) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 66at org. spongepowered. asm. mixin. transformer. ClassInfo. forName(ClassInfo. java:2005) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 67at org. spongepowered. asm. mixin. transformer. ClassInfo. forType(ClassInfo. java:2059) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 68at org. spongepowered. asm. mixin. transformer. ClassInfo. forDescriptor(ClassInfo. java:2038) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 69at org. spongepowered. asm. mixin. transformer. MixinPreProcessorStandard. transformMethod(MixinPreProcessorStandard. java:752) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 70at org. spongepowered. asm. mixin. transformer. MixinPreProcessorStandard. transform(MixinPreProcessorStandard. java:739) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 71at org. spongepowered. asm. mixin. transformer. MixinPreProcessorStandard. attach(MixinPreProcessorStandard. java:310) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 72at org. spongepowered. asm. mixin. transformer. MixinPreProcessorStandard. createContextFor(MixinPreProcessorStandard. java:280) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 73at org. spongepowered. asm. mixin. transformer. MixinInfo. createContextFor(MixinInfo. java:1288) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 74at org. spongepowered. asm. mixin. transformer. MixinApplicatorStandard. apply(MixinApplicatorStandard. java:292) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 75at org. spongepowered. asm. mixin. transformer. TargetClassContext. apply(TargetClassContext. java:383) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 76at org. spongepowered. asm. mixin. transformer. TargetClassContext. applyMixins(TargetClassContext. java:365) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 77at org. spongepowered. asm. mixin. transformer. MixinProcessor. applyMixins(MixinProcessor. java:363) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 78at org. spongepowered. asm. mixin. transformer. MixinTransformer. transformClass(MixinTransformer. java:250) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 79at org. spongepowered. asm. service. modlauncher. MixinTransformationHandler. processClass(MixinTransformationHandler. java:131) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 80at org. spongepowered. asm. launch. MixinLaunchPluginLegacy. processClass(MixinLaunchPluginLegacy. java:131) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 81at cpw. mods. modlauncher. serviceapi. ILaunchPluginService. processClassWithFlags(ILaunchPluginService. java:156) ~[modlauncher-10. 0. 9. jar%2389!/:10. 0. 9+10. 0. 9+main. dcd20f30] {} 82at cpw. mods. modlauncher. LaunchPluginHandler. offerClassNodeToPlugins(LaunchPluginHandler. java:88) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 83at cpw. mods. modlauncher. ClassTransformer. transform(ClassTransformer. java:120) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 84at cpw. mods. modlauncher. TransformingClassLoader. maybeTransformClassBytes(TransformingClassLoader. java:50) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 85at cpw. mods. cl. ModuleClassLoader. readerToClass(ModuleClassLoader. java:113) ~[securejarhandler-2. 1. 10. jar:?] {} 86at cpw. mods. cl. ModuleClassLoader. lambda$findClass$15(ModuleClassLoader. java:219) ~[securejarhandler-2. 1. 10. jar:?] {} 87at cpw. mods. cl. ModuleClassLoader. loadFromModule(ModuleClassLoader. java:229) ~[securejarhandler-2. 1. 10. jar:?] {} 88at cpw. mods. cl. ModuleClassLoader. findClass(ModuleClassLoader. java:219) ~[securejarhandler-2. 1. 10. jar:?] {} 89at cpw. mods. cl. ModuleClassLoader. loadClass(ModuleClassLoader. java:135) ~[securejarhandler-2. 1. 10. jar:?] {} 90at java. lang. ClassLoader. loadClass(ClassLoader. java:525) ~[?:?] {} 91at net. minecraft. core. GlobalPos. m_122641_(GlobalPos. java:11) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, re:classloading} 92at com. mojang. serialization. codecs. RecordCodecBuilder. create(RecordCodecBuilder. java:72) ~[datafixerupper-6. 0. 8. jar%23111!/:?] {} 93at net. minecraft. core. GlobalPos. (GlobalPos. java:11) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, re:classloading} 94at net. minecraft. world. entity. ai. memory. MemoryModuleType. (MemoryModuleType. java:32) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:classloading, pl:accesstransformer:B, re:mixin, pl:accesstransformer:B} 95at net. minecraft. world. entity. animal. frog. Tadpole. (TadpoleMixin. java:53) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, pl:accesstransformer:B, xf:fml:forge:forge_method_redirector, re:classloading, pl:accesstransformer:B, xf:fml:forge:forge_method_redirector, pl:mixin:APP:mixins. arclight. core. json:world. entity. animal. frog. TadpoleMixin, pl:mixin:A} 96at net. minecraft. world. entity. EntityType. (EntityTypeMixin. java:267) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, xf:fml:forge:forge_method_redirector, re:classloading, xf:fml:forge:forge_method_redirector, pl:mixin:APP:mixins. arclight. core. json:world. entity. EntityTypeMixin, pl:mixin:A} 97at net. minecraft. world. item. Items. (Items. java:754) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, pl:object_holder_definalize:A, re:classloading, pl:object_holder_definalize:A} 98at net. minecraft. world. level. block. ComposterBlock. m_51988_(ComposterBlockMixin. java:60) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, pl:accesstransformer:B, re:classloading, pl:accesstransformer:B, pl:mixin:APP:mixins. arclight. core. json:world. level. block. ComposterBlockMixin, pl:mixin:A} 99at net. minecraft. server. Bootstrap. m_135870_(BootstrapMixin. java:47) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, re:classloading, pl:mixin:APP:mixins. arclight. core. json:server. BootstrapMixin, pl:mixin:A} 100at net. minecraft. server. Main. main(Main. java:121) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, pl:accesstransformer:B, re:classloading, pl:accesstransformer:B, pl:mixin:A} 101at jdk. internal. reflect. NativeMethodAccessorImpl. invoke0(Native Method) ~[?:?] {} 102at jdk. internal. reflect. NativeMethodAccessorImpl. invoke(NativeMethodAccessorImpl. java:77) ~[?:?] {} 103at jdk. internal. reflect. DelegatingMethodAccessorImpl. invoke(DelegatingMethodAccessorImpl. java:43) ~[?:?] {} 104at java. lang. reflect. Method. invoke(Method. java:569) ~[?:?] {} 105at net. minecraftforge. fml. loading. targets. CommonLaunchHandler. runTarget(CommonLaunchHandler. java:111) ~[fmlloader-1. 20. 1-47. 3. 22. jar%23103!/:?] {} 106at net. minecraftforge. fml. loading. targets. CommonLaunchHandler. serverService(CommonLaunchHandler. java:103) ~[fmlloader-1. 20. 1-47. 3. 22. jar%23103!/:?] {} 107at net. minecraftforge. fml. loading. targets. CommonServerLaunchHandler. lambda$makeService$0(CommonServerLaunchHandler. java:27) ~[fmlloader-1. 20. 1-47. 3. 22. jar%23103!/:?] {} 108at cpw. mods. modlauncher. LaunchServiceHandlerDecorator. launch(LaunchServiceHandlerDecorator. java:30) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 109at cpw. mods. modlauncher. LaunchServiceHandler. launch(LaunchServiceHandler. java:53) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 110at cpw. mods. modlauncher. LaunchServiceHandler. launch(LaunchServiceHandler. java:71) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 111at cpw. mods. modlauncher. Launcher. run(Launcher. java:108) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 112at cpw. mods. modlauncher. Launcher. main(Launcher. java:78) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 113at cpw. mods. modlauncher. BootstrapLaunchConsumer. accept(BootstrapLaunchConsumer. java:26) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 114at cpw. mods. modlauncher. BootstrapLaunchConsumer. accept(BootstrapLaunchConsumer. java:23) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 115at io. izzel. arclight. boot. application. ApplicationBootstrap. accept(ApplicationBootstrap. java:46) ~[arclight. jar:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {} 116at jdk. internal. reflect. NativeMethodAccessorImpl. invoke0(Native Method) ~[?:?] {} 117at jdk. internal. reflect. NativeMethodAccessorImpl. invoke(NativeMethodAccessorImpl. java:77) ~[?:?] {} 118at jdk. internal. reflect. DelegatingMethodAccessorImpl. invoke(DelegatingMethodAccessorImpl. java:43) ~[?:?] {} 119at java. lang. reflect. Method. invoke(Method. java:569) ~[?:?] {} 120at io. izzel. arclight. boot. application. BootstrapTransformer. onInvoke$BootstrapLauncher(BootstrapTransformer. java:26) ~[arclight. jar:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {} 121at cpw. mods. bootstraplauncher. BootstrapLauncher. main(BootstrapLauncher. java:141) ~[bootstraplauncher-1. 1. 2. jar:?] {} 122at jdk. internal. reflect. NativeMethodAccessorImpl. invoke0(Native Method) ~[?:?] {} 123at jdk. internal. reflect. NativeMethodAccessorImpl. invoke(NativeMethodAccessorImpl. java:77) ~[?:?] {} 124at jdk. internal. reflect. DelegatingMethodAccessorImpl. invoke(DelegatingMethodAccessorImpl. java:43) ~[?:?] {} 125at java. lang. reflect. Method. invoke(Method. java:569) ~[?:?] {} 126at io. izzel. arclight. boot. application. Main_Forge. main(Main_Forge. java:33) ~[arclight. jar%2383!/:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {} 127at io. izzel. arclight. server. Launcher. main(Launcher. java:18) ~[arclight. jar%2383!/:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {} 128[30Jan2025 13:42:21. 327] [main/WARN] [mixin/]: @Inject(@At("INVOKE_ASSIGN")) Shift. BY=2 on refurbished_furniture. common. mixins. json:LevelChunkMixin::handler$zjk000$refurbishedFurniture$AfterRemoveBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. 129[30Jan2025 13:42:22. 457] [main/WARN] [mixin/]: Mixin alexscaves. mixins. json:SwampHutPieceMixin has multiple constructors, (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; IIIIIILnet/minecraft/core/Direction; )V was selected 130 131[30Jan2025 13:42:22. 601] [main/ERROR] [net. minecraftforge. coremod. transformer. CoreModBaseTransformer/COREMOD]: Error occurred applying transform of coremod coremods/field_to_method. js function biome 132java. lang. IllegalStateException: Field f_47437_ is not private and an instance field 133at net. minecraftforge. coremod. api. ASMAPI. redirectFieldToMethod(ASMAPI. java:1069) ~[coremods-5. 2. 4. jar%2388!/:?] {} 134at org. openjdk. nashorn. internal. scripts. Script$Recompilation$22$292A$\^eval\_. initializeCoreMod#transformer(:11) ~[?:?] {} 135at org. openjdk. nashorn. internal. runtime. ScriptFunctionData. invoke(ScriptFunctionData. java:648) ~[nashorn-core-15. 4. jar%23100!/:?] {} 136at org. openjdk. nashorn. internal. runtime. ScriptFunction. invoke(ScriptFunction. java:513) ~[nashorn-core-15. 4. jar%23100!/:?] {} 137at org. openjdk. nashorn. internal. runtime. ScriptRuntime. apply(ScriptRuntime. java:520) ~[nashorn-core-15. 4. jar%23100!/:?] {} 138at org. openjdk. nashorn. api. scripting. ScriptObjectMirror. call(ScriptObjectMirror. java:111) ~[nashorn-core-15. 4. jar%23100!/:?] {} 139at net. minecraftforge. coremod. NashornFactory. lambda$getFunction$0(NashornFactory. java:37) ~[coremods-5. 2. 4. jar%2388!/:5. 2. 4] {} 140at net. minecraftforge. coremod. transformer. CoreModClassTransformer. runCoremod(CoreModClassTransformer. java:22) ~[coremods-5. 2. 4. jar%2388!/:?] {} 141at net. minecraftforge. coremod. transformer. CoreModClassTransformer. runCoremod(CoreModClassTransformer. java:14) ~[coremods-5. 2. 4. jar%2388!/:?] {} 142at net. minecraftforge. coremod. transformer. CoreModBaseTransformer. transform(CoreModBaseTransformer. java:60) ~[coremods-5. 2. 4. jar%2388!/:?] {} 143at cpw. mods. modlauncher. TransformerHolder. transform(TransformerHolder. java:41) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 144at cpw. mods. modlauncher. ClassTransformer. performVote(ClassTransformer. java:179) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 145at cpw. mods. modlauncher. ClassTransformer. transform(ClassTransformer. java:117) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 146at cpw. mods. modlauncher. TransformingClassLoader. maybeTransformClassBytes(TransformingClassLoader. java:50) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 147at cpw. mods. cl. ModuleClassLoader. readerToClass(ModuleClassLoader. java:113) ~[securejarhandler-2. 1. 10. jar:?] {} 148at cpw. mods. cl. ModuleClassLoader. lambda$findClass$15(ModuleClassLoader. java:219) ~[securejarhandler-2. 1. 10. jar:?] {} 149at cpw. mods. cl. ModuleClassLoader. loadFromModule(ModuleClassLoader. java:229) ~[securejarhandler-2. 1. 10. jar:?] {} 150at cpw. mods. cl. ModuleClassLoader. findClass(ModuleClassLoader. java:219) ~[securejarhandler-2. 1. 10. jar:?] {} 151at cpw. mods. cl. ModuleClassLoader. loadClass(ModuleClassLoader. java:135) ~[securejarhandler-2. 1. 10. jar:?] {} 152at java. lang. ClassLoader. loadClass(ClassLoader. java:525) ~[?:?] {} 153at net. minecraft. world. level. biome. FixedBiomeSource. (FixedBiomeSource. java:17) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:classloading} 154at net. minecraft. world. level. biome. BiomeSources. m_220586_(BiomeSources. java:8) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:classloading} 155at net. minecraft. core. registries. BuiltInRegistries. m_258029_(BuiltInRegistries. java:448) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:classloading, re:mixin} 156at net. minecraft. core. registries. BuiltInRegistries. m_258037_(BuiltInRegistries. java:462) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:classloading, re:mixin} 157at java. util. LinkedHashMap. forEach(LinkedHashMap. java:721) ~[?:?] {} 158at net. minecraft. core. registries. BuiltInRegistries. m_257453_(BuiltInRegistries. java:461) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:classloading, re:mixin} 159at net. minecraft. core. registries. BuiltInRegistries. m_257498_(BuiltInRegistries. java:455) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:classloading, re:mixin} 160at net. minecraft. server. Bootstrap. m_135870_(BootstrapMixin. java:55) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, re:classloading, pl:mixin:APP:mixins. arclight. core. json:server. BootstrapMixin, pl:mixin:A} 161at net. minecraft. server. Main. main(Main. java:121) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, pl:accesstransformer:B, re:classloading, pl:accesstransformer:B, pl:mixin:A} 162at jdk. internal. reflect. NativeMethodAccessorImpl. invoke0(Native Method) ~[?:?] {} 163at jdk. internal. reflect. NativeMethodAccessorImpl. invoke(NativeMethodAccessorImpl. java:77) ~[?:?] {} 164at jdk. internal. reflect. DelegatingMethodAccessorImpl. invoke(DelegatingMethodAccessorImpl. java:43) ~[?:?] {} 165at java. lang. reflect. Method. invoke(Method. java:569) ~[?:?] {} 166at net. minecraftforge. fml. loading. targets. CommonLaunchHandler. runTarget(CommonLaunchHandler. java:111) ~[fmlloader-1. 20. 1-47. 3. 22. jar%23103!/:?] {} 167at net. minecraftforge. fml. loading. targets. CommonLaunchHandler. serverService(CommonLaunchHandler. java:103) ~[fmlloader-1. 20. 1-47. 3. 22. jar%23103!/:?] {} 168at net. minecraftforge. fml. loading. targets. CommonServerLaunchHandler. lambda$makeService$0(CommonServerLaunchHandler. java:27) ~[fmlloader-1. 20. 1-47. 3. 22. jar%23103!/:?] {} 169at cpw. mods. modlauncher. LaunchServiceHandlerDecorator. launch(LaunchServiceHandlerDecorator. java:30) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 170at cpw. mods. modlauncher. LaunchServiceHandler. launch(LaunchServiceHandler. java:53) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 171at cpw. mods. modlauncher. LaunchServiceHandler. launch(LaunchServiceHandler. java:71) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 172at cpw. mods. modlauncher. Launcher. run(Launcher. java:108) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 173at cpw. mods. modlauncher. Launcher. main(Launcher. java:78) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 174at cpw. mods. modlauncher. BootstrapLaunchConsumer. accept(BootstrapLaunchConsumer. java:26) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 175at cpw. mods. modlauncher. BootstrapLaunchConsumer. accept(BootstrapLaunchConsumer. java:23) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 176at io. izzel. arclight. boot. application. ApplicationBootstrap. accept(ApplicationBootstrap. java:46) ~[arclight. jar:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {} 177at jdk. internal. reflect. NativeMethodAccessorImpl. invoke0(Native Method) ~[?:?] {} 178at jdk. internal. reflect. NativeMethodAccessorImpl. invoke(NativeMethodAccessorImpl. java:77) ~[?:?] {} 179at jdk. internal. reflect. DelegatingMethodAccessorImpl. invoke(DelegatingMethodAccessorImpl. java:43) ~[?:?] {} 180at java. lang. reflect. Method. invoke(Method. java:569) ~[?:?] {} 181at io. izzel. arclight. boot. application. BootstrapTransformer. onInvoke$BootstrapLauncher(BootstrapTransformer. java:26) ~[arclight. jar:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {} 182at cpw. mods. bootstraplauncher. BootstrapLauncher. main(BootstrapLauncher. java:141) ~[bootstraplauncher-1. 1. 2. jar:?] {} 183at jdk. internal. reflect. NativeMethodAccessorImpl. invoke0(Native Method) ~[?:?] {} 184at jdk. internal. reflect. NativeMethodAccessorImpl. invoke(NativeMethodAccessorImpl. java:77) ~[?:?] {} 185at jdk. internal. reflect. DelegatingMethodAccessorImpl. invoke(DelegatingMethodAccessorImpl. java:43) ~[?:?] {} 186at java. lang. reflect. Method. invoke(Method. java:569) ~[?:?] {} 187at io. izzel. arclight. boot. application. Main_Forge. main(Main_Forge. java:33) ~[arclight. jar%2383!/:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {} 188at io. izzel. arclight. server. Launcher. main(Launcher. java:18) ~[arclight. jar%2383!/:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {}
    • Welp, It doesn't crash but for some reason I broke pickaxes. They just wont work. The game behaves as if my hand was empty. Wtf is going on
    • Oh yeah, dammit. There's the duplicate mod. It works now
  • Topics

×
×
  • Create New...

Important Information

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