Jump to content

Null pointer Exception on the class


Fowlron

Recommended Posts

Hi.

I created this account to ask help in this matter.

Im creating a mod with my mod team, but we have a BIG problem.

As we have many modders, we need to work on separated classes, otherwise we cant work at the same time. We have everything set up with github btw.

But I'm getting a null pointer exception when calling gameRegistry.addRecipe

 

Main class:

 

package wildKingdoms.dungeonsAndDigging; //Package directory

 

import wildKingdoms.dungeonsAndDigging.*;

import wildKingdoms.dungeonsAndDigging.blocks.*;

import wildKingdoms.dungeonsAndDigging.items.*;

import net.minecraft.block.Block;

import net.minecraft.item.EnumToolMaterial;

import net.minecraft.item.Item;

import net.minecraft.item.ItemFood;

import net.minecraft.item.ItemStack;

import net.minecraftforge.common.EnumHelper;

import cpw.mods.fml.common.Mod;

import cpw.mods.fml.common.Mod.Init;

import cpw.mods.fml.common.event.FMLInitializationEvent;

import cpw.mods.fml.common.network.NetworkMod;

import cpw.mods.fml.common.registry.GameRegistry;

import cpw.mods.fml.common.registry.LanguageRegistry;

 

/*

* Basic needed forge stuff

*/

@Mod(modid = "DungeonsAndDigging", name = "Dungeons & Digging", version = "v1")

@NetworkMod(clientSideRequired = true, serverSideRequired = false)

public class Main {

 

/*

* ToolMaterial

*/

 

// Telling forge that we are creating these

 

public static Item crystal;

public static Item ruby;

public static Item saphire;

 

public static Block crystalOre;

public static Block rubyOre;

public static Block saphireOre;

 

public static Block crystalBlock;

public static Block rubyBlock;

public static Block saphireBlock;

 

// Declaring Init

@Init

public void load(FMLInitializationEvent event) {

DDBlocks DDBlocksClass = new DDBlocks();

DDItems DDItemsClass = new DDItems();

 

DDItemsClass.init(crystal, ruby, saphire, crystalOre, rubyOre, saphireOre);

DDBlocksClass.init(crystalOre, rubyOre, saphireOre, crystalBlock, rubyBlock, saphireBlock);

 

DDItemsClass.recipes(crystal, ruby, saphire, crystalBlock, rubyBlock, saphireBlock);

DDBlocksClass.recipes(crystal, ruby, saphire, crystalBlock, rubyBlock, saphireBlock);

}

 

}

 

 

 

 

DDItems Class:

 

package wildKingdoms.dungeonsAndDigging.items;

 

import wildKingdoms.dungeonsAndDigging.Main;

import cpw.mods.fml.common.registry.GameRegistry;

import cpw.mods.fml.common.registry.LanguageRegistry;

import net.minecraft.block.Block;

import net.minecraft.item.Item;

import net.minecraft.item.ItemStack;

 

public class DDItems {

public static void init(Item crystal, Item ruby, Item saphire,

Block crystalOre, Block rubyOre, Block saphireBlock) {

// define items/blocks

crystal = new DDGemItems(3200).setUnlocalizedName("crystal")

.setTextureName("DungeonsAndDigging:crystal");

ruby = new DDGemItems(3201).setUnlocalizedName("ruby").setTextureName(

"DungeonsAndDigging:ruby");

ruby = new DDGemItems(3202).setUnlocalizedName("saphire")

.setTextureName("DungeonsAndDigging:saphire");

 

// adding names

LanguageRegistry.addName(crystal, "Crystal");

LanguageRegistry.addName(ruby, "Ruby");

LanguageRegistry.addName(ruby, "Saphire");

 

}

 

public static void recipes(Item crystal, Item ruby, Item saphire,

Block crystalBlock, Block rubyBlock, Block saphireBlock)

GameRegistry.addShapelessRecipe(new ItemStack(crystal, 9),  //<- I get a Null Pointer Excepetion in the new "ItemStack(crystal, 9)" part

new Object[] { crystalBlock });

GameRegistry.addShapelessRecipe(new ItemStack(ruby, 9),  //<- Would get bug here as well, if it would reach this part

new Object[] { rubyBlock });

GameRegistry.addShapelessRecipe(new ItemStack(saphire, 9),  //<- Would get bug here as well, if it would reach this part

new Object[] { saphireBlock });

}

}

 

 

DDBlocks Class:

 

package wildKingdoms.dungeonsAndDigging.blocks;

 

import wildKingdoms.dungeonsAndDigging.Main;

import wildKingdoms.dungeonsAndDigging.blocks.ores.DDCrystalOre;

import wildKingdoms.dungeonsAndDigging.blocks.ores.DDRubyOre;

import wildKingdoms.dungeonsAndDigging.blocks.ores.DDSaphireOre;

import wildKingdoms.dungeonsAndDigging.blocks.solidBlocks.DDCrystalBlock;

import wildKingdoms.dungeonsAndDigging.blocks.solidBlocks.DDRubyBlock;

import wildKingdoms.dungeonsAndDigging.blocks.solidBlocks.DDSaphireBlock;

import cpw.mods.fml.common.registry.GameRegistry;

import cpw.mods.fml.common.registry.LanguageRegistry;

import net.minecraft.block.Block;

import net.minecraft.item.Item;

import net.minecraft.item.ItemStack;

 

public class DDBlocks {

public static void init(Block crystalOre, Block rubyOre, Block saphireOre,

Block crystalBlock, Block rubyBlock, Block saphireBlock) {

// define items/blocks

// ORES

crystalOre = new DDCrystalOre(3600, "crystalOre")

.setUnlocalizedName("crystalOre").setHardness(3.0F)

.setStepSound(Block.soundStoneFootstep).setResistance(8.0F)

.setTextureName("DungeonsAndDigging:crystalOre");

GameRegistry.registerBlock(crystalOre, "crystalOre");

 

rubyOre = new DDRubyOre(3601, "rubyOre").setUnlocalizedName("rubyOre")

.setHardness(2.0F).setStepSound(Block.soundStoneFootstep)

.setResistance(9.0F)

.setTextureName("DungeonsAndDigging:rubyOre");

GameRegistry.registerBlock(rubyOre, "rubyOre");

 

saphireOre = new DDSaphireOre(3602, "saphireOre")

.setUnlocalizedName("saphireOre").setHardness(2.0F)

.setStepSound(Block.soundStoneFootstep).setResistance(9.0F)

.setTextureName("DungeonsAndDigging:saphireOre");

GameRegistry.registerBlock(saphireOre, "saphireOre");

 

// SOLID BLOCKS

crystalBlock = new DDCrystalBlock(3603, "crystalBlock")

.setUnlocalizedName("crystalBlock").setHardness(3.0F)

.setStepSound(Block.soundMetalFootstep).setResistance(9.0F)

.setTextureName("DungeonsAndDigging:crystalBlock");

GameRegistry.registerBlock(crystalBlock, "crystalBlock");

 

rubyBlock = new DDRubyBlock(3604, "rubyBlock")

.setUnlocalizedName("rubyBlock").setHardness(3.0F)

.setStepSound(Block.soundMetalFootstep).setResistance(9.0F)

.setTextureName("DungeonsAndDigging:rubyBlock");

GameRegistry.registerBlock(rubyBlock, "rubyBlock");

 

saphireBlock = new DDSaphireBlock(3605, "saphireBlock")

.setUnlocalizedName("saphireBlock").setHardness(3.0F)

.setStepSound(Block.soundMetalFootstep).setResistance(11.0F)

.setTextureName("DungeonsAndDigging:saphireBlock");

GameRegistry.registerBlock(saphireBlock, "saphireBlock");

 

// adding names

// ORES

LanguageRegistry.addName(crystalOre, "Crystal Ore");

LanguageRegistry.addName(rubyOre, "Ruby Ore");

LanguageRegistry.addName(saphireOre, "Saphire Ore");

 

// SOLILD BLOCKS

LanguageRegistry.addName(crystalBlock, "Crystal Block");

LanguageRegistry.addName(rubyBlock, "Ruby Block");

LanguageRegistry.addName(saphireBlock, "Saphire Block");

 

// crafting

}

 

public static void recipes(Item crystal, Item ruby, Item saphire,

Block crystalBlock, Block rubyBlock, Block saphireBlock) {

GameRegistry.addRecipe(new ItemStack(crystalBlock, 1),//<- Would get bug here as well, if it would reach this part

new Object[] { "TTT", "TTT", "TTT", 'T', crystal, });

GameRegistry.addRecipe(new ItemStack(rubyBlock, 1),//<- Would get bug here as well, if it would reach this part

new Object[] { "TTT", "TTT", "TTT", 'T', ruby, });

GameRegistry.addRecipe(new ItemStack(saphireBlock, 1),//<- Would get bug here as well, if it would reach this part

new Object[] { "TTT", "TTT", "TTT", 'T', saphire, });

}

}

 

 

 

The error log:

 

Nov 16, 2013 6:42:39 PM net.minecraft.launchwrapper.LogWrapper log

INFO: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker

Nov 16, 2013 6:42:40 PM net.minecraft.launchwrapper.LogWrapper log

INFO: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker

Nov 16, 2013 6:42:40 PM net.minecraft.launchwrapper.LogWrapper log

INFO: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker

2013-11-16 18:42:40 [iNFO] [ForgeModLoader] Forge Mod Loader version 6.4.20.916 for Minecraft 1.6.4 loading

2013-11-16 18:42:40 [iNFO] [ForgeModLoader] Java is Java HotSpot Server VM, version 1.7.0_45, running on Linux:i386:3.11.0-13-generic, installed at /usr/local/java/jre1.7.0_45

2013-11-16 18:42:40 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

2013-11-16 18:42:41 [iNFO] [sTDOUT] Loaded 40 rules from AccessTransformer config file fml_at.cfg

2013-11-16 18:42:41 [iNFO] [sTDOUT] Loaded 109 rules from AccessTransformer config file forge_at.cfg

2013-11-16 18:42:41 [sEVERE] [ForgeModLoader] The binary patch set is missing. Either you are in a development environment, or things are not going to work!

2013-11-16 18:42:49 [iNFO] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker

2013-11-16 18:42:49 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker

2013-11-16 18:42:50 [iNFO] [ForgeModLoader] Launching wrapped minecraft {net.minecraft.client.main.Main}

2013-11-16 18:42:56 [iNFO] [Minecraft-Client] Setting user: Player589

2013-11-16 18:42:56 [iNFO] [Minecraft-Client] (Session ID is null)

2013-11-16 18:43:04 [iNFO] [Minecraft-Client] LWJGL Version: 2.9.0

2013-11-16 18:43:07 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default

2013-11-16 18:43:09 [iNFO] [sTDOUT]

2013-11-16 18:43:09 [iNFO] [sTDOUT] Starting up SoundSystem...

2013-11-16 18:43:09 [iNFO] [sTDOUT] Initializing LWJGL OpenAL

2013-11-16 18:43:09 [iNFO] [sTDOUT]    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

2013-11-16 18:43:09 [iNFO] [sTDOUT] OpenAL initialized.

2013-11-16 18:43:09 [iNFO] [sTDOUT]

2013-11-16 18:43:10 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization

2013-11-16 18:43:10 [iNFO] [sTDOUT] MinecraftForge v9.11.1.916 Initialized

2013-11-16 18:43:10 [iNFO] [ForgeModLoader] MinecraftForge v9.11.1.916 Initialized

2013-11-16 18:43:11 [iNFO] [sTDOUT] Replaced 101 ore recipies

2013-11-16 18:43:11 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization

2013-11-16 18:43:11 [iNFO] [ForgeModLoader] Reading custom logging properties from /home/pedro/Programas/forge/mcp/jars/config/logging.properties

2013-11-16 18:43:11 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL

2013-11-16 18:43:12 [iNFO] [ForgeModLoader] Searching /home/pedro/Programas/forge/mcp/jars/mods for mods

2013-11-16 18:43:23 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load

2013-11-16 18:43:23 [iNFO] [mcp] Activating mod mcp

2013-11-16 18:43:23 [iNFO] [FML] Activating mod FML

2013-11-16 18:43:23 [iNFO] [Forge] Activating mod Forge

2013-11-16 18:43:23 [iNFO] [DungeonsAndDigging] Activating mod DungeonsAndDigging

2013-11-16 18:43:23 [WARNING] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well

2013-11-16 18:43:23 [WARNING] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well

2013-11-16 18:43:23 [WARNING] [Dungeons & Digging] Mod Dungeons & Digging is missing a pack.mcmeta file, things may not work well

2013-11-16 18:43:23 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Dungeons & Digging

2013-11-16 18:43:24 [iNFO] [sTDOUT]

2013-11-16 18:43:24 [iNFO] [sTDOUT] SoundSystem shutting down...

2013-11-16 18:43:24 [iNFO] [sTDOUT]    Author: Paul Lamb, www.paulscode.com

2013-11-16 18:43:24 [iNFO] [sTDOUT]

2013-11-16 18:43:24 [iNFO] [sTDOUT]

2013-11-16 18:43:24 [iNFO] [sTDOUT] Starting up SoundSystem...

2013-11-16 18:43:24 [iNFO] [ForgeModLoader] Registering Forge Packet Handler

2013-11-16 18:43:24 [iNFO] [sTDOUT] Initializing LWJGL OpenAL

2013-11-16 18:43:24 [iNFO] [sTDOUT]    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

2013-11-16 18:43:24 [iNFO] [sTDOUT] OpenAL initialized.

2013-11-16 18:43:24 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler

2013-11-16 18:43:25 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0

2013-11-16 18:43:25 [iNFO] [sTDOUT]

2013-11-16 18:43:34 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue

2013-11-16 18:43:34 [sEVERE] [ForgeModLoader]

mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized

FML{6.4.20.916} [Forge Mod Loader] (bin) Unloaded->Constructed->Pre-initialized->Initialized

Forge{9.11.1.916} [Minecraft Forge] (bin) Unloaded->Constructed->Pre-initialized->Initialized

DungeonsAndDigging{v1} [Dungeons & Digging] (bin) Unloaded->Constructed->Pre-initialized->Errored

2013-11-16 18:43:34 [sEVERE] [ForgeModLoader] The following problems were captured during this phase

2013-11-16 18:43:34 [sEVERE] [ForgeModLoader] Caught exception from DungeonsAndDigging

java.lang.NullPointerException

at net.minecraft.item.ItemStack.<init>(ItemStack.java:82)

at wildKingdoms.dungeonsAndDigging.items.DDItems.recipes(DDItems.java:30)

at wildKingdoms.dungeonsAndDigging.Main.load(Main.java:53)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:545)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

at com.google.common.eventbus.EventBus.post(EventBus.java:267)

at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:194)

at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

at com.google.common.eventbus.EventBus.post(EventBus.java:267)

at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:105)

at cpw.mods.fml.common.Loader.initializeMods(Loader.java:696)

at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:249)

at net.minecraft.client.Minecraft.startGame(Minecraft.java:508)

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

at net.minecraft.client.main.Main.main(Main.java:93)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)

at net.minecraft.launchwrapper.Launch.main(Launch.java:27)

2013-11-16 18:43:34 [iNFO] [sTDOUT] ---- Minecraft Crash Report ----

2013-11-16 18:43:34 [iNFO] [sTDOUT] // Don't be sad, have a hug! <3

2013-11-16 18:43:34 [iNFO] [sTDOUT]

2013-11-16 18:43:34 [iNFO] [sTDOUT] Time: 16-11-2013 18:43

2013-11-16 18:43:34 [iNFO] [sTDOUT] Description: Initializing game

2013-11-16 18:43:34 [iNFO] [sTDOUT]

2013-11-16 18:43:34 [iNFO] [sTDOUT] java.lang.NullPointerException

2013-11-16 18:43:34 [iNFO] [sTDOUT] at net.minecraft.item.ItemStack.<init>(ItemStack.java:82)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at wildKingdoms.dungeonsAndDigging.items.DDItems.recipes(DDItems.java:30)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at wildKingdoms.dungeonsAndDigging.Main.load(Main.java:53)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:545)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:194)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:105)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:696)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:249)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.startGame(Minecraft.java:508)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:807)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at net.minecraft.client.main.Main.main(Main.java:93)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27)

2013-11-16 18:43:34 [iNFO] [sTDOUT]

2013-11-16 18:43:34 [iNFO] [sTDOUT]

2013-11-16 18:43:34 [iNFO] [sTDOUT] A detailed walkthrough of the error, its code path and all known details is as follows:

2013-11-16 18:43:34 [iNFO] [sTDOUT] ---------------------------------------------------------------------------------------

2013-11-16 18:43:34 [iNFO] [sTDOUT]

2013-11-16 18:43:34 [iNFO] [sTDOUT] -- Head --

2013-11-16 18:43:34 [iNFO] [sTDOUT] Stacktrace:

2013-11-16 18:43:34 [iNFO] [sTDOUT] at net.minecraft.item.ItemStack.<init>(ItemStack.java:82)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at wildKingdoms.dungeonsAndDigging.items.DDItems.recipes(DDItems.java:30)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at wildKingdoms.dungeonsAndDigging.Main.load(Main.java:53)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:545)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:194)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:105)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:696)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:249)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.startGame(Minecraft.java:508)

2013-11-16 18:43:34 [iNFO] [sTDOUT]

2013-11-16 18:43:34 [iNFO] [sTDOUT] -- Initialization --

2013-11-16 18:43:34 [iNFO] [sTDOUT] Details:

2013-11-16 18:43:34 [iNFO] [sTDOUT] Stacktrace:

2013-11-16 18:43:34 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:807)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at net.minecraft.client.main.Main.main(Main.java:93)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)

2013-11-16 18:43:34 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27)

2013-11-16 18:43:34 [iNFO] [sTDOUT]

2013-11-16 18:43:34 [iNFO] [sTDOUT] -- System Details --

2013-11-16 18:43:34 [iNFO] [sTDOUT] Details:

2013-11-16 18:43:34 [iNFO] [sTDOUT] Minecraft Version: 1.6.4

2013-11-16 18:43:34 [iNFO] [sTDOUT] Operating System: Linux (i386) version 3.11.0-13-generic

2013-11-16 18:43:34 [iNFO] [sTDOUT] Java Version: 1.7.0_45, Oracle Corporation

2013-11-16 18:43:34 [iNFO] [sTDOUT] Java VM Version: Java HotSpot Server VM (mixed mode), Oracle Corporation

2013-11-16 18:43:34 [iNFO] [sTDOUT] Memory: 982799824 bytes (937 MB) / 1060372480 bytes (1011 MB) up to 1060372480 bytes (1011 MB)

2013-11-16 18:43:34 [iNFO] [sTDOUT] JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M

2013-11-16 18:43:34 [iNFO] [sTDOUT] AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used

2013-11-16 18:43:34 [iNFO] [sTDOUT] Suspicious classes: FML and Forge are installed

2013-11-16 18:43:34 [iNFO] [sTDOUT] IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0

2013-11-16 18:43:34 [iNFO] [sTDOUT] FML: MCP v8.11 FML v6.4.20.916 Minecraft Forge 9.11.1.916 4 mods loaded, 4 mods active

2013-11-16 18:43:34 [iNFO] [sTDOUT] mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized

2013-11-16 18:43:34 [iNFO] [sTDOUT] FML{6.4.20.916} [Forge Mod Loader] (bin) Unloaded->Constructed->Pre-initialized->Initialized

2013-11-16 18:43:34 [iNFO] [sTDOUT] Forge{9.11.1.916} [Minecraft Forge] (bin) Unloaded->Constructed->Pre-initialized->Initialized

2013-11-16 18:43:34 [iNFO] [sTDOUT] DungeonsAndDigging{v1} [Dungeons & Digging] (bin) Unloaded->Constructed->Pre-initialized->Errored

2013-11-16 18:43:34 [iNFO] [sTDOUT] Launched Version: 1.6

2013-11-16 18:43:34 [iNFO] [sTDOUT] LWJGL: 2.9.0

2013-11-16 18:43:34 [iNFO] [sTDOUT] OpenGL: Mesa DRI Intel® 945GME x86/MMX/SSE2 GL version 1.4 Mesa 9.2.1, Intel Open Source Technology Center

2013-11-16 18:43:34 [iNFO] [sTDOUT] Is Modded: Definitely; Client brand changed to 'fml,forge'

2013-11-16 18:43:34 [iNFO] [sTDOUT] Type: Client (map_client.txt)

2013-11-16 18:43:34 [iNFO] [sTDOUT] Resource Pack: Default

2013-11-16 18:43:34 [iNFO] [sTDOUT] Current Language: English (US)

2013-11-16 18:43:34 [iNFO] [sTDOUT] Profiler Position: N/A (disabled)

2013-11-16 18:43:34 [iNFO] [sTDOUT] Vec3 Pool Size: ~~ERROR~~ NullPointerException: null

2013-11-16 18:43:34 [iNFO] [sTDOUT] #@!@# Game crashed! Crash report saved to: #@!@# /home/pedro/Programas/forge/mcp/jars/./crash-reports/crash-2013-11-16_18.43.34-client.txt

AL lib: (EE) alc_cleanup: 1 device not closed

 

 

Thanks in advance for any help

Link to comment
Share on other sites

Impossible to read this wall of tekst.

 

Please use spoiler and code tags to format your post so it's readable.

Please include crash report (The full console output of the crash) in spoiler and code tags.

 

If you know which line is the offending line then write the contents of that line above all the spoilers.

As a rule of thumb, 1 spoiler tag for each file. and 1 separate spoiler tag for the crash log/report.

If you guys dont get it.. then well ya.. try harder...

Link to comment
Share on other sites

Impossible to read this wall of tekst.

 

Please use spoiler and code tags to format your post so it's readable.

Please include crash report (The full console output of the crash) in spoiler and code tags.

 

If you know which line is the offending line then write the contents of that line above all the spoilers.

As a rule of thumb, 1 spoiler tag for each file. and 1 separate spoiler tag for the crash log/report.

 

Sorry my bad. Solved that. Can you help me here?

Link to comment
Share on other sites

What's Line 30 from DDItems?

-Mitchellbrine

 

Minecraft can do ANYTHING, it's coded in Java and you got the full power of Java behind you when you code. So nothing is impossible.

It may be freaking fucking hard though, but still possible ;)

 

If you create a topic on Modder Support, live by this motto:

I don't want your charity, I want your information
Link to comment
Share on other sites

I don't know GitHub, but I'm pretty sure you can collaborate on one file. Anyway, to do this CORRECTLY, you need to:

 

1. Put the init and recipes in the MAIN CLASS instead of complicating yourself up in crazy ways.

 

2. Put the contents of the init in your load method.

 

3. Put the contents of your recipes method into your load method.

 

4. Delete your init and recipes methods.

 

Again, I state you can use just ONE file, not a million.

-Mitchellbrine

 

Minecraft can do ANYTHING, it's coded in Java and you got the full power of Java behind you when you code. So nothing is impossible.

It may be freaking fucking hard though, but still possible ;)

 

If you create a topic on Modder Support, live by this motto:

I don't want your charity, I want your information
Link to comment
Share on other sites

What's Line 30 from DDItems?

 

Its this one:

 

GameRegistry.addShapelessRecipe(new ItemStack(crystal, 9),

 

 

There are comments with the lines that give me errors. Well, errors when running, eclipse doesnt find any.

 

I now the problem is with this:

 

new ItemStack(crystal, 9)

 

I just dont know why he returns a Null Pointer Exception.

 

Edit:

But your repository only updates if you use the git pull command, and it wont commit with the push command unless you have the latest version of the file available in the repository. So if someones pushes, you wont know it, and when you push it you will receive an error, and you need to pull and lose ALL the work youve done since the last commit. This is very hard to handle, that's why we should code eveything in separated class files.

If you want to have a look at all the code, have a look at this:

https://github.com/Wild-Kingdoms/Dungeons-and-Digging

Link to comment
Share on other sites

1. Put the init and recipes in the MAIN CLASS instead of complicating yourself up in crazy ways.

 

2. Put the contents of the init in your load method.

 

3. Put the contents of your recipes method into your load method.

 

4. Delete your init and recipes methods.

-Mitchellbrine

 

Minecraft can do ANYTHING, it's coded in Java and you got the full power of Java behind you when you code. So nothing is impossible.

It may be freaking fucking hard though, but still possible ;)

 

If you create a topic on Modder Support, live by this motto:

I don't want your charity, I want your information
Link to comment
Share on other sites

Also don't new Object(){} for your recipes.  You can just add them as parameters:

 

GameRegistry.addShapelessRecipe(new ItemStack(BlockTrap.instance), new ItemStack(Item.painting), new ItemStack(Block.dispenser));

or

 

GameRegistry.addShapedRecipe(new ItemStack(BlockWallPlate.instance, 2), "s", "s", "s", 's', stone);

 

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

I now the problem is with this:

 

new ItemStack(crystal, 9)

 

I just dont know why he returns a Null Pointer Exception.

 

Edit:

But your repository only updates if you use the git pull command, and it wont commit with the push command unless you have the latest version of the file available in the repository. So if someones pushes, you wont know it, and when you push it you will receive an error, and you need to pull and lose ALL the work youve done since the last commit. This is very hard to handle, that's why we should code eveything in separated class files.

If you want to have a look at all the code, have a look at this:

https://github.com/Wild-Kingdoms/Dungeons-and-Digging

Because "crystal" is null.

 

There are merge tools for github. You should learn and discuss within your team about how you want to use them.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now


  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Okay, if that's fine then I'll use it. I already sync on block update because I have custom data with the blocks. Should I still add `Level#sendBlockUpdated(BlockPos pos, BlockState oldState, BlockState newState, int flags)` in the `onLoad`?   Also, that whole bug seems weird because it seems to be something that needs to be exclusively coded. I'm very confused about how I even broke the vanilla mechanic in the first place..
    • The proof of concept works! Thank you both for the advice. My only complaint is that since the data is server side, If I want to cancel a RightClickBlock event based on the stored data, its only blocked serverside and the right click appears to work for just a moment before it syncs up again. Is there some way I can make it work properly on both sides?
    • java.lang.NoSuchMethodError:void net.minecraft.server.level.DistanceManager.addRegionTicket(net.minecraft.server.level.TicketType, net.minecraft.world.level.ChunkPos, int, java.lang.Object, boolean) Error report exit code -1   ---- Minecraft Crash Report ---- // I bet Cylons wouldn't have this problem. Time: 6/7/23, 11:31 PM Description: Exception in server tick loop java.lang.NoSuchMethodError: 'void net.minecraft.server.level.DistanceManager.addRegionTicket(net.minecraft.server.level.TicketType, net.minecraft.world.level.ChunkPos, int, java.lang.Object, boolean)'     at net.minecraft.server.level.ServerChunkCache.addRegionTicket(ServerChunkCache.java:429) ~[client-1.18.2-20220404.173914-srg.jar%23133!/:?] {re:classloading,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}     at net.minecraft.server.level.ServerChunkCache.m_8387_(ServerChunkCache.java:425) ~[client-1.18.2-20220404.173914-srg.jar%23133!/:?] {re:classloading,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}     at net.minecraft.server.MinecraftServer.m_129940_(MinecraftServer.java:471) ~[client-1.18.2-20220404.173914-srg.jar%23133!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_130006_(MinecraftServer.java:318) ~[client-1.18.2-20220404.173914-srg.jar%23133!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.client.server.IntegratedServer.m_7038_(IntegratedServer.java:84) ~[client-1.18.2-20220404.173914-srg.jar%23133!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:smoothboot.mixins.json:client.IntegratedServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:661) ~[client-1.18.2-20220404.173914-srg.jar%23133!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_177918_(MinecraftServer.java:261) ~[client-1.18.2-20220404.173914-srg.jar%23133!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at java.lang.Thread.run(Thread.java:833) [?:?] {re:mixin} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details:     Minecraft Version: 1.18.2     Minecraft Version ID: 1.18.2     Operating System: Windows 10 (amd64) version 10.0     Java Version: 17.0.1, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 1690155888 bytes (1611 MiB) / 3087007744 bytes (2944 MiB) up to 12884901888 bytes (12288 MiB)     CPUs: 12     Processor Vendor: AuthenticAMD     Processor Name: AMD Ryzen 5 5600H with Radeon Graphics              Identifier: AuthenticAMD Family 25 Model 80 Stepping 0     Microarchitecture: Zen 3     Frequency (GHz): 3.29     Number of physical packages: 1     Number of physical CPUs: 6     Number of logical CPUs: 12     Graphics card #0 name: AMD Radeon(TM) Graphics     Graphics card #0 vendor: Advanced Micro Devices, Inc. (0x1002)     Graphics card #0 VRAM (MB): 512.00     Graphics card #0 deviceId: 0x1638     Graphics card #0 versionInfo: DriverVersion=30.0.13002.23     Graphics card #1 name: NVIDIA GeForce RTX 3060 Laptop GPU     Graphics card #1 vendor: NVIDIA (0x10de)     Graphics card #1 VRAM (MB): 4095.00     Graphics card #1 deviceId: 0x2520     Graphics card #1 versionInfo: DriverVersion=30.0.15.1181     Memory slot #0 capacity (MB): 8192.00     Memory slot #0 clockSpeed (GHz): 3.20     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 8192.00     Memory slot #1 clockSpeed (GHz): 3.20     Memory slot #1 type: DDR4     Virtual memory max (MB): 31448.12     Virtual memory used (MB): 16587.81     Swap memory total (MB): 15724.06     Swap memory used (MB): 671.00     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx12288m -Xms256m     Server Running: true     Player Count: 0 / 8; []     Data Packs: vanilla, mod:wandering_bags, mod:tinkerslevellingaddon, mod:jei (incompatible), mod:furnish (incompatible), mod:isleofberk, mod:fish_in_planks (incompatible), mod:sophisticatedcore (incompatible), mod:waystones (incompatible), mod:clumps (incompatible), mod:xaeroworldmap, mod:controlling (incompatible), mod:reauth (incompatible), mod:citadel (incompatible), mod:alexsmobs (incompatible), mod:naturescompass (incompatible), mod:artifacts, mod:feature_nbt_deadlock_be_gone (incompatible), mod:dungeoncrawl, mod:bookshelf, mod:sophisticatedbackpacks (incompatible), mod:lazydfu (incompatible), mod:iceandfire (incompatible), mod:balm (incompatible), mod:walljump (incompatible), mod:dragonfight (incompatible), mod:forge, mod:dcintegration (incompatible), mod:idas, mod:selene (incompatible), mod:supplementaries (incompatible), mod:ironchest, mod:tconstruct (incompatible), mod:farmersdelight (incompatible), mod:honeyexpansion, mod:enchdesc (incompatible), mod:mousetweaks (incompatible), mod:getittogetherdrops (incompatible), mod:jade, mod:smoothboot (incompatible), mod:easy_villagers (incompatible), mod:luphieclutteredmod, mod:craftable_saddles (incompatible), mod:cataclysm (incompatible), mod:flywheel (incompatible), mod:create, mod:curios (incompatible), mod:relics (incompatible), mod:mantle (incompatible), mod:xaerominimap, mod:collective (incompatible), mod:camera (incompatible), mod:polymorph (incompatible), mod:autoreglib (incompatible), mod:quark (incompatible), mod:sit (incompatible), mod:ftbultimine (incompatible), mod:tombstone, mod:universalenchants (incompatible), mod:worldedit (incompatible), mod:starterkit, mod:constructionwand, mod:architectury (incompatible), mod:ftblibrary (incompatible), mod:itemfilters (incompatible), mod:ftbteams (incompatible), mod:ftbchunks (incompatible), mod:ftbquests (incompatible), mod:appleskin (incompatible), mod:lootr (incompatible), mod:ferritecore (incompatible), mod:aiimprovements (incompatible), mod:puzzleslib (incompatible), mod:jadeaddons (incompatible), mod:ante (incompatible), mod:fastleafdecay, mod:expandability (incompatible), mod:cosmeticarmorreworked (incompatible), mod:geckolib3 (incompatible), mod:tradingpost (incompatible), mod:inferno, Supplementaries Generated Pack, iceandfire:data     World Generation: Experimental     Type: Integrated Server (map_client.txt)     Is Modded: Definitely; Client brand changed to 'forge'; Server brand changed to 'forge'     OptiFine Version: OptiFine_1.18.2_HD_U_H7     OptiFine Build: 20220410-185216     Render Distance Chunks: 22     Mipmaps: 4     Anisotropic Filtering: 1     Antialiasing: 0     Multitexture: false     Shaders: null     OpenGlVersion: 3.2.14761 Core Profile Forward-Compatible Context 21.30.02 30.0.13002.23     OpenGlRenderer: AMD Radeon(TM) Graphics     OpenGlVendor: ATI Technologies Inc.     CpuCount: 12     ModLauncher: 9.1.3+9.1.3+main.9b69c82a     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:           mixin PLUGINSERVICE           eventbus PLUGINSERVICE           slf4jfixer PLUGINSERVICE           object_holder_definalize PLUGINSERVICE           runtime_enum_extender PLUGINSERVICE           capability_token_subclass PLUGINSERVICE           accesstransformer PLUGINSERVICE           runtimedistcleaner PLUGINSERVICE           mixin TRANSFORMATIONSERVICE           OptiFine TRANSFORMATIONSERVICE           fml TRANSFORMATIONSERVICE      FML Language Providers:          minecraft@1.0         lowcodefml@null         javafml@null     Mod List:          wandering-bags-1.18.2-2.0.5.jar                   |Wandering Bags                |wandering_bags                |2.0.5               |DONE      |Manifest: NOSIGNATURE         TinkersLevellingAddon-1.18.2-1.2.0.jar            |Tinkers' Levelling Addon      |tinkerslevellingaddon         |1.2.0               |DONE      |Manifest: NOSIGNATURE         jei-1.18.2-9.7.1.255.jar                          |Just Enough Items             |jei                           |9.7.1.255           |DONE      |Manifest: NOSIGNATURE         furnish-1.18-0.6-fix1.jar                         |Furnish                       |furnish                       |1.18-0.6-fix1       |DONE      |Manifest: NOSIGNATURE         Isle of Berk - 1.1.0.jar                          |Isle of Berk                  |isleofberk                    |1.1.0               |DONE      |Manifest: NOSIGNATURE         fish_in_planks-1.18.1-0.5.jar                     |Fish in Planks                |fish_in_planks                |1.18.1-0.5          |DONE      |Manifest: NOSIGNATURE         sophisticatedcore-1.18.2-0.5.50.250.jar           |Sophisticated Core            |sophisticatedcore             |1.18.2-0.5.50.250   |DONE      |Manifest: NOSIGNATURE         waystones-forge-1.18.2-10.2.1.jar                 |Waystones                     |waystones                     |10.2.1              |DONE      |Manifest: NOSIGNATURE         Clumps-forge-1.18.2-8.0.0+17.jar                  |Clumps                        |clumps                        |8.0.0+17            |DONE      |Manifest: NOSIGNATURE         XaerosWorldMap_1.30.0_Forge_1.18.2.jar            |Xaero's World Map             |xaeroworldmap                 |1.30.0              |DONE      |Manifest: NOSIGNATURE         Controlling-forge-1.18.2-9.0+22.jar               |Controlling                   |controlling                   |9.0+22              |DONE      |Manifest: NOSIGNATURE         ReAuth-1.18-Forge-4.0.7.jar                       |ReAuth                        |reauth                        |4.0.7               |DONE      |Manifest: 3d:06:1e:e5:da:e2:ff:ae:04:00:be:45:5b:ff:fd:70:65:00:67:0b:33:87:a6:5f:af:20:3c:b6:a1:35:ca:7e         citadel-1.11.3-1.18.2.jar                         |Citadel                       |citadel                       |1.11.3              |DONE      |Manifest: NOSIGNATURE         alexsmobs-1.18.6.jar                              |Alex's Mobs                   |alexsmobs                     |1.18.6              |DONE      |Manifest: NOSIGNATURE         NaturesCompass-1.18.2-1.9.7-forge.jar             |Nature's Compass              |naturescompass                |1.18.2-1.9.7-forge  |DONE      |Manifest: NOSIGNATURE         artifacts-1.18.2-4.2.1.jar                        |Artifacts                     |artifacts                     |1.18.2-4.2.1        |DONE      |Manifest: NOSIGNATURE         feature_nbt_deadlock_be_gone_forge-2.0.0+1.18.2.ja|Feature NBT Deadlock Be Gone  |feature_nbt_deadlock_be_gone  |2.0.0+1.18.2        |DONE      |Manifest: NOSIGNATURE         DungeonCrawl-1.18.2-2.3.12.jar                    |Dungeon Crawl                 |dungeoncrawl                  |2.3.12              |DONE      |Manifest: NOSIGNATURE         Bookshelf-Forge-1.18.2-13.2.53.jar                |Bookshelf                     |bookshelf                     |13.2.53             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         sophisticatedbackpacks-1.18.2-3.18.46.821.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |1.18.2-3.18.46.821  |DONE      |Manifest: NOSIGNATURE         lazydfu-1.0-1.18+.jar                             |LazyDFU                       |lazydfu                       |0.1.3               |DONE      |Manifest: NOSIGNATURE         iceandfire-2.1.12-1.18.2-beta2.jar                |Ice and Fire                  |iceandfire                    |2.1.12-1.18.2-beta2 |DONE      |Manifest: NOSIGNATURE         balm-3.2.6.jar                                    |Balm                          |balm                          |3.2.6               |DONE      |Manifest: NOSIGNATURE         walljump-forge-1.18.1-1.3.7.jar                   |Wall-Jump!                    |walljump                      |1.18.1-1.3.7        |DONE      |Manifest: NOSIGNATURE         dragonfight-1.18.2-2.2.jar                        |dragonfight mod               |dragonfight                   |1.18.2-2.2          |DONE      |Manifest: NOSIGNATURE         forge-1.18.2-40.2.2-universal.jar                 |Forge                         |forge                         |40.2.2              |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         dcintegration-forge-2.5.0-1.18.2.jar              |Discord Integration           |dcintegration                 |2.5.0               |DONE      |Manifest: NOSIGNATURE         idas_forge-1.5.0+1.18.2.jar                       |Integrated Dungeons and Struct|idas                          |1.5.0+1.18.2        |DONE      |Manifest: NOSIGNATURE         selene-1.18.2-1.17.9.jar                          |Selene                        |selene                        |1.18.2-1.17.9       |DONE      |Manifest: NOSIGNATURE         supplementaries-1.18.2-1.5.17.jar                 |Supplementaries               |supplementaries               |1.18.2-1.5.17       |DONE      |Manifest: NOSIGNATURE         ironchest-1.18.2-13.2.11.jar                      |Iron Chests                   |ironchest                     |1.18.2-13.2.11      |DONE      |Manifest: NOSIGNATURE         client-1.18.2-20220404.173914-srg.jar             |Minecraft                     |minecraft                     |1.18.2              |DONE      |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         TConstruct-1.18.2-3.6.4.113.jar                   |Tinkers' Construct            |tconstruct                    |3.6.4.113           |DONE      |Manifest: NOSIGNATURE         FarmersDelight-1.18.2-1.2.0.jar                   |Farmer's Delight              |farmersdelight                |1.18.2-1.2.0        |DONE      |Manifest: NOSIGNATURE         honeyexpansion-1.1.1.jar                          |Honey expansion               |honeyexpansion                |1.1.1               |DONE      |Manifest: NOSIGNATURE         EnchantmentDescriptions-Forge-1.18.2-10.0.12.jar  |EnchantmentDescriptions       |enchdesc                      |10.0.12             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         MouseTweaks-forge-mc1.18-2.21.jar                 |Mouse Tweaks                  |mousetweaks                   |2.21                |DONE      |Manifest: NOSIGNATURE         getittogetherdrops-forge-1.18.2-1.3.jar           |Get It Together, Drops!       |getittogetherdrops            |1.3                 |DONE      |Manifest: NOSIGNATURE         Jade-1.18.2-forge-5.2.6.jar                       |Jade                          |jade                          |5.2.6               |DONE      |Manifest: NOSIGNATURE         smoothboot(reloaded)-mc1.18.2-0.0.2.jar           |Smooth Boot (Reloaded)        |smoothboot                    |0.0.2               |DONE      |Manifest: NOSIGNATURE         easy_villagers-1.18.2-1.0.11.jar                  |Easy Villagers                |easy_villagers                |1.18.2-1.0.11       |DONE      |Manifest: NOSIGNATURE         Cluttered-2.0-1.18.2.jar                          |Cluttered                     |luphieclutteredmod            |2.0                 |DONE      |Manifest: NOSIGNATURE         Craftable Saddles [1.18 All]-1.4.jar              |Craftable Saddles             |craftable_saddles             |1.4                 |DONE      |Manifest: NOSIGNATURE         L_Enders Cataclysm-0.51-changed Them -1.18.2.jar  |Cataclysm Mod                 |cataclysm                     |1.0                 |DONE      |Manifest: NOSIGNATURE         flywheel-forge-1.18.2-0.6.8.a.jar                 |Flywheel                      |flywheel                      |0.6.8.a             |DONE      |Manifest: NOSIGNATURE         create-1.18.2-0.5.0.i.jar                         |Create                        |create                        |0.5.0.i             |DONE      |Manifest: NOSIGNATURE         curios-forge-1.18.2-5.0.9.0.jar                   |Curios API                    |curios                        |1.18.2-5.0.9.0      |DONE      |Manifest: NOSIGNATURE         relics-1.18.2-0.4.1.8.jar                         |Relics                        |relics                        |0.4.1.8             |DONE      |Manifest: NOSIGNATURE         Mantle-1.18.2-1.9.45.jar                          |Mantle                        |mantle                        |1.9.45              |DONE      |Manifest: NOSIGNATURE         Xaeros_Minimap_23.4.0_Forge_1.18.2.jar            |Xaero's Minimap               |xaerominimap                  |23.4.0              |DONE      |Manifest: NOSIGNATURE         collective-1.18.2-6.53.jar                        |Collective                    |collective                    |6.53                |DONE      |Manifest: NOSIGNATURE         camera-1.18.2-1.0.5.jar                           |Camera Mod                    |camera                        |1.18.2-1.0.5        |DONE      |Manifest: NOSIGNATURE         polymorph-forge-1.18.2-0.46.jar                   |Polymorph                     |polymorph                     |1.18.2-0.46         |DONE      |Manifest: NOSIGNATURE         AutoRegLib-1.7-53.jar                             |AutoRegLib                    |autoreglib                    |1.7-53              |DONE      |Manifest: NOSIGNATURE         Quark-3.2-358.jar                                 |Quark                         |quark                         |3.2-358             |DONE      |Manifest: NOSIGNATURE         sit-1.18.2-1.3.3.jar                              |Sit                           |sit                           |1.3.3               |DONE      |Manifest: NOSIGNATURE         ftb-ultimine-forge-1802.3.3-build.70.jar          |FTB Ultimine                  |ftbultimine                   |1802.3.3-build.70   |DONE      |Manifest: NOSIGNATURE         tombstone-7.6.4-1.18.2.jar                        |Corail Tombstone              |tombstone                     |7.6.4               |DONE      |Manifest: NOSIGNATURE         UniversalEnchants-v3.0.6-1.18.2-Forge.jar         |Universal Enchants            |universalenchants             |3.0.6               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         worldedit-mod-7.2.10.jar                          |WorldEdit                     |worldedit                     |7.2.10+1742f98      |DONE      |Manifest: NOSIGNATURE         starterkit-1.18.2-5.2.jar                         |Starter Kit                   |starterkit                    |5.2                 |DONE      |Manifest: NOSIGNATURE         constructionwand-1.18.2-2.9.jar                   |Construction Wand             |constructionwand              |1.18.2-2.9          |DONE      |Manifest: NOSIGNATURE         architectury-4.11.92-forge.jar                    |Architectury                  |architectury                  |4.11.92             |DONE      |Manifest: NOSIGNATURE         ftb-library-forge-1802.3.11-build.177.jar         |FTB Library                   |ftblibrary                    |1802.3.11-build.177 |DONE      |Manifest: NOSIGNATURE         item-filters-forge-1802.2.8-build.47.jar          |Item Filters                  |itemfilters                   |1802.2.8-build.47   |DONE      |Manifest: NOSIGNATURE         ftb-teams-forge-1802.2.10-build.96.jar            |FTB Teams                     |ftbteams                      |1802.2.10-build.96  |DONE      |Manifest: NOSIGNATURE         ftb-chunks-forge-1802.3.17-build.265.jar          |FTB Chunks                    |ftbchunks                     |1802.3.17-build.265 |DONE      |Manifest: NOSIGNATURE         ftb-quests-forge-1802.3.14-build.191.jar          |FTB Quests                    |ftbquests                     |1802.3.14-build.191 |DONE      |Manifest: NOSIGNATURE         appleskin-forge-mc1.18.2-2.4.1.jar                |AppleSkin                     |appleskin                     |2.4.1+mc1.18.2      |DONE      |Manifest: NOSIGNATURE         lootr-1.18.2-0.3.24.61.jar                        |Lootr                         |lootr                         |0.3.24.61           |DONE      |Manifest: NOSIGNATURE         ferritecore-4.2.2-forge.jar                       |Ferrite Core                  |ferritecore                   |4.2.2               |DONE      |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a         AI-Improvements-1.18.2-0.5.2.jar                  |AI-Improvements               |aiimprovements                |0.5.2               |DONE      |Manifest: NOSIGNATURE         PuzzlesLib-v3.3.6-1.18.2-Forge.jar                |Puzzles Lib                   |puzzleslib                    |3.3.6               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         JadeAddons-1.18.2-forge-2.4.1.jar                 |Jade Addons                   |jadeaddons                    |2.4.1               |DONE      |Manifest: NOSIGNATURE         AnvilNeverTooExpensive-1.18-1.1.jar               |Anvil Never Too Expensive     |ante                          |1.1                 |DONE      |Manifest: NOSIGNATURE         FastLeafDecay-28.jar                              |FastLeafDecay                 |fastleafdecay                 |28                  |DONE      |Manifest: NOSIGNATURE         expandability-6.0.0.jar                           |ExpandAbility                 |expandability                 |6.0.0               |DONE      |Manifest: NOSIGNATURE         CosmeticArmorReworked-1.18.2-v2a.jar              |CosmeticArmorReworked         |cosmeticarmorreworked         |1.18.2-v2a          |DONE      |Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53         geckolib-forge-1.18-3.0.57.jar                    |GeckoLib                      |geckolib3                     |3.0.57              |DONE      |Manifest: NOSIGNATURE         TradingPost-v3.2.0-1.18.2-Forge.jar               |Trading Post                  |tradingpost                   |3.2.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         infernos-HTTYD-1.6.1.jar                          |Inferno                       |inferno                       |1.0.0               |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: 52147796-a997-4c16-bccf-37d0e493c737     Flywheel Backend: GL33 Instanced Arrays     FML: 40.2     Forge: net.minecraftforge:40.2.2
    • 1.19.4 has now stabilized! Go to our Blog for more details.
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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