Jump to content

can't find out why it isnt loading my texture.


Mickii26

Recommended Posts

i have tried to find a string that allows me to load my texture in the custom folder assets/modpack/texture/block. it looks like this code should work but it dosnt load the texture.

Hope someone can tell me why it dosn't work because its really annoying.

 

package ModPack;

import java.util.Random;

 

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

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

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

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IconRegister;

import net.minecraft.creativetab.CreativeTabs;

public class Redgemore extends Block {

public Redgemore(int par1, String texture) {

super(par1, Material.iron);

setCreativeTab(CreativeTabs.tabBlock);

}

 

public int idDropped(int par1, Random par2Random, int par3)

{

return ModPack.Redgem.itemID;

}

public int quantityDropped(Random random)

{

return 1;

}

public void registerIcons(IconRegister reg) {

this.blockIcon = reg.registerIcon("modpack:Redgem_ore");

}

}

Link to comment
Share on other sites

i have tried to find a string that allows me to load my texture in the custom folder assets/modpack/texture/block. it looks like this code should work but it dosnt load the texture.

Hope someone can tell me why it dosn't work because its really annoying.

 

package ModPack;

import java.util.Random;

 

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

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

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

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IconRegister;

import net.minecraft.creativetab.CreativeTabs;

public class Redgemore extends Block {

public Redgemore(int par1, String texture) {

super(par1, Material.iron);

setCreativeTab(CreativeTabs.tabBlock);

}

 

public int idDropped(int par1, Random par2Random, int par3)

{

return ModPack.Redgem.itemID;

}

public int quantityDropped(Random random)

{

return 1;

}

public void registerIcons(IconRegister reg) {

this.blockIcon = reg.registerIcon("modpack:Redgem_ore");

}

}

 

try

@Override
public void registerIcons(IconRegister reg) {
this.blockIcon = reg.registerIcon("modpack:Redgem_ore");
}

 

Link to comment
Share on other sites

Adding an override annotation and changing nothing else is going to Jack and Shite.  Some annotations do things at runtime....the Override one is not one of them.

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 have tried to find a string that allows me to load my texture in the custom folder assets/modpack/texture/block. it looks like this code should work but it dosnt load the texture.

Hope someone can tell me why it dosn't work because its really annoying.

 

package ModPack;

import java.util.Random;

 

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

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

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

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IconRegister;

import net.minecraft.creativetab.CreativeTabs;

public class Redgemore extends Block {

public Redgemore(int par1, String texture) {

super(par1, Material.iron);

setCreativeTab(CreativeTabs.tabBlock);

}

 

public int idDropped(int par1, Random par2Random, int par3)

{

return ModPack.Redgem.itemID;

}

public int quantityDropped(Random random)

{

return 1;

}

public void registerIcons(IconRegister reg) {

this.blockIcon = reg.registerIcon("modpack:Redgem_ore");

}

}

 

try

@Override
public void registerIcons(IconRegister reg) {
this.blockIcon = reg.registerIcon("modpack:Redgem_ore");
}

 

 

I would try


public Redgemore(int par1, String texture) {
    super(par1, Material.iron);
    setCreativeTab(CreativeTabs.tabBlock); 
}

//into

public Redgemore(int par1, Material material) {
    super(par1, Material.iron);
    setCreativeTab(CreativeTabs.tabBlock); 
    setTextureName("modpack:Redgem_ore");
}

 

 

Then make sure that your block is declared in your main/base class, with registering them into your load method.

 

Link to comment
Share on other sites

I would try


public Redgemore(int par1, String texture) {
    super(par1, Material.iron);
    setCreativeTab(CreativeTabs.tabBlock); 
}

//into

public Redgemore(int par1, Material material) {
    super(par1, Material.iron);
    setCreativeTab(CreativeTabs.tabBlock); 
    setTextureName("modpack:Redgem_ore");
}

 

And the material variable is going unused.  Either pass it to super, or get rid of it.

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

then i try

public Redgemore(int par1, String texture) {

    super(par1, Material.iron);

    setCreativeTab(CreativeTabs.tabBlock);

}

 

//into

 

public Redgemore(int par1, Material material) {

    super(par1, Material.iron);

    setCreativeTab(CreativeTabs.tabBlock);

    setTextureName("modpack:Redgem_ore");

}

my game crashes

 

 

if it helps im gonna show you the main javaclass

 

package ModPack;

 

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.creativetab.CreativeTabs;

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.client.registry.ClientRegistry;

import cpw.mods.fml.common.Mod;

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

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

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;

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;

import ModPack.Projector;

 

 

@Mod(modid="ModPackInof.ID",name="ModPackInfo.NAME",version="ModPackInfo.VERS")

@NetworkMod(clientSideRequired=true,serverSideRequired=false)

public class ModPack {

public static final String modid = "ModPack";

 

@Instance(modid)

public static ModPack instance;

/*

* ToolMaterial

*/

//Telling forge that we are creating these

//items

public static Item Redgem;

public static Item RedgemPickaxe;

 

//Blocks

public static Block Redgemblock;

public static Block Redgemore;

public static Block Bluecobblestoneblock;

public static Block Bluestoneblock;

public final static Block Projector = new Projector(200, Material.rock);

 

//tools

 

//Declaring Init

@Init

public void load(FMLInitializationEvent event){

// define items

RedgemPickaxe= new Items(2004).setUnlocalizedName("RedgemPickaxe");

Redgem = new Items(2000).setUnlocalizedName("Redgem");

 

// define blocks

Redgemblock = new Redgemblock(2001, "Redgemblock").setUnlocalizedName("Redgem_block").setHardness(3.0F).setStepSound(Block.soundMetalFootstep).setResistance(15.0F);

GameRegistry.registerBlock(Redgemblock, "Redgemblock");

Redgemore = new Redgemore(200, Material.iron).setUnlocalizedName("Redgem_block").setCreativeTab(CreativeTabs.tabBlock).setTextureName("modpack:Redgem_ore").setHardness(3.0F).setStepSound(Block.soundMetalFootstep).setResistance(15.0F);

GameRegistry.registerBlock(Redgemore, "Redgemore");

Bluecobblestoneblock = new Bluecobblestoneblock(2002, "Bluecobblestoneblock").setUnlocalizedName("Bluecobblestone_block").setHardness(3.0F).setStepSound(Block.soundMetalFootstep).setResistance(15.0F);

GameRegistry.registerBlock(Bluecobblestoneblock, "Bluecobblestoneblock");

Bluestoneblock = new Bluestoneblock(2003, "Bluestoneblock").setUnlocalizedName("Bluestone_block").setHardness(3.0F).setStepSound(Block.soundMetalFootstep).setResistance(15.0F);

GameRegistry.registerBlock(Bluestoneblock, "Bluestoneblock");

GameRegistry.registerBlock(Projector,"Projector");

 

//adding names

//items

LanguageRegistry.addName(RedgemPickaxe, "RedgemPickaxe");

LanguageRegistry.addName(Redgem, "Redgem");

 

//blocks

LanguageRegistry.addName(Redgemblock, "Block of Redgem");

LanguageRegistry.addName(Redgemore,"Redgem ore");

LanguageRegistry.addName(Bluecobblestoneblock, "Bluecobblestone");

LanguageRegistry.addName(Bluestoneblock, "Bluestone");

LanguageRegistry.addName(Bluecobblestoneblock, "Bluecobblestoneblock");

LanguageRegistry.addName(Projector, "Projector");

 

//crafting

GameRegistry.addRecipe(new ItemStack(Redgemblock,1), new Object[]{

"TTT","TTT","TTT",'T',Redgem,});

GameRegistry.addShapelessRecipe(new ItemStack(Redgem,9), new Object[]{

Redgemblock});

 

//smelting

GameRegistry.addSmelting(ModPack.Bluecobblestoneblock.blockID, new ItemStack(Bluestoneblock, 1), 5F);

 

//rendering

GameRegistry.registerTileEntity(TileEntityTest.class, "Projector");

ClientRegistry.bindTileEntitySpecialRenderer(TileEntityTest.class, new RendererProjector());

}

}

Link to comment
Share on other sites

And without the crash log, we can't help you.

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 have no idea what you mean by custom folder, so I think you just mean assets of your mod, anyway:

public class TestBlock extends Block
{
String texture;
public TestBlock (int id, Material material, String t)
{
	super(id, material);
		this.texture = t;
}

@SideOnly(Side.CLIENT)
public void registerIcons(IconRegister iconRegister)
{
	blockIcon = iconRegister.registerIcon("modname:" + texture);
}
}

And then in modname.class

public static final Block testBlock = new TestBlock(3000, Material.rock, "test");

 

Texture will be set from assets/modpack/textures/blocks/test.png

 

Oh and to set Material as constant for all blocks just change

public TestBlock (int id, String t)
{
	super(id, Material.rock);
		this.texture = t;
}

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

And without the crash log, we can't help you.

 

here is the crash report:

---- Minecraft Crash Report ----

// You should try our sister game, Minceraft!

 

Time: 23-12-13 18:28

Description: There was a severe problem during mod loading that has caused the game to fail

 

cpw.mods.fml.common.LoaderException: java.lang.NullPointerException

at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:233)

at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:196)

at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:172)

at ModPack.ModPack.load(ModPack.java:67)

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:201)

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

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:112)

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

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

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

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

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)

Caused by: java.lang.NullPointerException

at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:215)

... 40 more

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

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

 

-- System Details --

Details:

Minecraft Version: 1.6.4

Operating System: Windows 8 (amd64) version 6.2

Java Version: 1.7.0_45, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 869074392 bytes (828 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)

JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M

AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used

Suspicious classes: FML and Forge are installed

IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0

FML: MCP v8.11 FML v6.4.45.953 Minecraft Forge 9.11.1.953 4 mods loaded, 4 mods active

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

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

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

ModPackInof.ID{ModPackInfo.VERS} [ModPackInfo.NAME] (bin) Unloaded->Constructed->Pre-initialized->Errored

Link to comment
Share on other sites

Hi

 

It appears that the problem is in this part of the code

            assert block != null : "registerBlock: block cannot be null";
            assert itemclass != null : "registerBlock: itemclass cannot be null";
            int blockItemId = block.blockID - 256;

block is null, which would normally be picked up by the assert (but I'm guessing you haven't enabled assertion testing)

 

So I suspect your ModPack line 67 is calling registerBlock with a variable that you haven't initialised yet (is null)

 

-TGG

 

Link to comment
Share on other sites

Hi

 

It appears that the problem is in this part of the code

            assert block != null : "registerBlock: block cannot be null";
            assert itemclass != null : "registerBlock: itemclass cannot be null";
            int blockItemId = block.blockID - 256;

block is null, which would normally be picked up by the assert (but I'm guessing you haven't enabled assertion testing)

 

So I suspect your ModPack line 67 is calling registerBlock with a variable that you haven't initialised yet (is null)

 

-TGG

 

where is it even saying that??

Link to comment
Share on other sites

Hi

 

If you look in the stacktrace, you'll notice these lines near the top

 

cpw.mods.fml.common.LoaderException: java.lang.NullPointerException

  at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:233)

  at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:196)

  at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:172)

  at ModPack.ModPack.load(ModPack.java:67)

and a bit further down

 

Caused by: java.lang.NullPointerException

  at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:215)

 

So when I look at GameRegistry.java lines 215 and  233, I find

        
try
        {
            assert block != null : "registerBlock: block cannot be null";
            assert itemclass != null : "registerBlock: itemclass cannot be null";
            int blockItemId = block.blockID - 256;  // line 215
            Constructor<? extends ItemBlock> itemCtor;
            Item i;
// .. some extra code removed ...

        }
        catch (Exception e)
        {
            FMLLog.log(Level.SEVERE, e, "Caught an exception during block registration");
            throw new LoaderException(e);  //line 233
        }

Which means that an error occurred on line 215, it threw an exception which was caught at line 233 and re-thrown.

The error in the log is "null pointer exception", which means you tried to use a variable which wasn't initialised.  In this case, the only possible variable on line 215 which could cause that is block.

 

The stack trace also shows me that

GameRegistry.java line 233 was called from line 196, which was called from line 172, which was called from your ModPack.java line 67.

line 172 is inside this function

   public static void registerBlock(net.minecraft.block.Block block, String name)

so I can be pretty sure that your ModPack.java line 67 looks something like

registerBlock(myBlock, "mymod:myblock");

and that you've previously declared

MyNewBlock myBlock;

but forgotten to do

myBlock = new MyNewBlock(number, material);

 

-TGG

Link to comment
Share on other sites

Hi

 

If you look in the stacktrace, you'll notice these lines near the top

 

cpw.mods.fml.common.LoaderException: java.lang.NullPointerException

  at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:233)

  at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:196)

  at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:172)

  at ModPack.ModPack.load(ModPack.java:67)

and a bit further down

 

Caused by: java.lang.NullPointerException

  at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:215)

 

So when I look at GameRegistry.java lines 215 and  233, I find

        
try
        {
            assert block != null : "registerBlock: block cannot be null";
            assert itemclass != null : "registerBlock: itemclass cannot be null";
            int blockItemId = block.blockID - 256;  // line 215
            Constructor<? extends ItemBlock> itemCtor;
            Item i;
// .. some extra code removed ...

        }
        catch (Exception e)
        {
            FMLLog.log(Level.SEVERE, e, "Caught an exception during block registration");
            throw new LoaderException(e);  //line 233
        }

Which means that an error occurred on line 215, it threw an exception which was caught at line 233 and re-thrown.

The error in the log is "null pointer exception", which means you tried to use a variable which wasn't initialised.  In this case, the only possible variable on line 215 which could cause that is block.

 

The stack trace also shows me that

GameRegistry.java line 233 was called from line 196, which was called from line 172, which was called from your ModPack.java line 67.

line 172 is inside this function

   public static void registerBlock(net.minecraft.block.Block block, String name)

so I can be pretty sure that your ModPack.java line 67 looks something like

registerBlock(myBlock, "mymod:myblock");

and that you've previously declared

MyNewBlock myBlock;

but forgotten to do

myBlock = new MyNewBlock(number, material);

 

-TGG

 

it fixed the crash, but it still dosnt load the texture, but thanks for the help on the crash note

Link to comment
Share on other sites

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Ok so, i managed to fix it, if you have zombie awarness it requires coroutil, even if the mod page doesn't say it needs it it does.  
    • Did you check the getRenderShape method of your block to ensure it's returning the correct enum value?
    • new to messing with modpacks. the server starts and the pack is playable on personal worlds, but every time i try to enter the server, i get "internal exception: io.netty.handler.codec.DecoderException: java.lang.IllegalArgumentException: Payload may not be larger than 1048576 bytes" and it boots me. not sure what this means. the debug log is essentially gibberish to me and i'm not sure... about anything. is it saying that it's sending me too much data? if it helps at all, my mc username is "leucanella", and the disconnect reasons are near the very bottom (at least once was due to mismatched modlists, but i got that fixed i'm pretty sure). i just can't make sense of it myself. https://gist.github.com/idlebird/c5269e80434a501104f6b99ebc16be46
    • We somehow figured out the issue: Whenever we try to eat a food item from the mod "[Let's Do] Candlelight" that can be eaten multiple times using a feeding upgrade from "Sophisticated Backpacks", that's when we crash. Food items include: - Beef Wellington - Bolognese - Chicken Alfredo - Chicken with Vegetables - Cooked Beef - Fricasse with Hash Browns - Lasagna - Lettuce with Steak - Lettuce with Tomatoes, Potatoes and Carrots - Mushroom Soup - Pasta with Bolognese - Pasta with Tomato Sauce - Pork Ribs - Roastbeef with Carrots - Salmon with White Wine Sauce - Tomato Mozzarella Salad - Tomato Soup - Tropical Fish Supreme
    • Me and my sister are playing on a modded minecraft server, but recently she has been crashing at random intervals and no one I've talked with knows why. There's no crash report on my sister's side, but in the log of the server there appears a bunch of lines every time she crashes. They appear to be mostly similar with different mods changing each crash. Minecraft Version: 1.20.1 Forge version: forge-47.2.20 Server log: [07May2024 18:13:29.067] [Server thread/ERROR] [net.minecraftforge.eventbus.EventBus/EVENTBUS]: Exception caught during firing event: null     Index: 12     Listeners:         0: NORMAL         1: ASM: com.github.alexthe666.citadel.server.CitadelEvents@28c884eb onEntityUpdateDebug(Lnet/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent;)V         2: net.minecraftforge.eventbus.EventBus$$Lambda$4374/0x00007f0098c72da0@10f79ae2         3: ASM: com.github.alexthe666.alexsmobs.event.ServerEvents@6f4126f3 onLivingUpdateEvent(Lnet/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent;)V         4: ASM: class tallestegg.illagersweararmor.IWASpawnEvents tickEntity(Lnet/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent;)V         5: ASM: class io.github.lightman314.lightmanscurrency.common.EventHandler entityTick(Lnet/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent;)V         6: ASM: com.github.L_Ender.cataclysm.event.ServerEventHandler@1bbd60d8 onLivingUpdateEvent(Lnet/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent;)V         7: ASM: class io.github.edwinmindcraft.apoli.common.ApoliPowerEventHandler playerTick(Lnet/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent;)V         8: ASM: class io.github.edwinmindcraft.apoli.common.ApoliEventHandler livingTick(Lnet/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent;)V         9: net.minecraftforge.eventbus.EventBus$$Lambda$4374/0x00007f0098c72da0@1e30768c         10: ASM: class net.mcreator.borninchaosv.init.EntityAnimationFactory onEntityTick(Lnet/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent;)V         11: ASM: squeek.appleskin.network.SyncHandler@29e380f7 onLivingTickEvent(Lnet/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent;)V         12: ASM: top.theillusivec4.curios.common.event.CuriosEventHandler@55b4416c tick(Lnet/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent;)V java.lang.ArrayIndexOutOfBoundsException [07May2024 18:13:29.146] [Server thread/WARN] [net.minecraft.server.network.ServerConnectionListener/]: Failed to handle packet for /OMITTED IP net.minecraft.ReportedException: Ticking player     at net.minecraft.server.level.ServerPlayer.m_9240_(ServerPlayer.java:530) ~[server-1.20.1-20230612.114412-srg.jar%23461!/:?]     at net.minecraft.server.network.ServerGamePacketListenerImpl.m_9933_(ServerGamePacketListenerImpl.java:262) ~[server-1.20.1-20230612.114412-srg.jar%23461!/:?]     at net.minecraft.network.Connection.m_129483_(Connection.java:263) ~[server-1.20.1-20230612.114412-srg.jar%23461!/:?]     at net.minecraft.server.network.ServerConnectionListener.m_9721_(ServerConnectionListener.java:142) ~[server-1.20.1-20230612.114412-srg.jar%23461!/:?]     at net.minecraft.server.MinecraftServer.m_5703_(MinecraftServer.java:907) ~[server-1.20.1-20230612.114412-srg.jar%23461!/:?]     at net.minecraft.server.dedicated.DedicatedServer.m_5703_(DedicatedServer.java:283) ~[server-1.20.1-20230612.114412-srg.jar%23461!/:?]     at net.minecraft.server.MinecraftServer.m_5705_(MinecraftServer.java:814) ~[server-1.20.1-20230612.114412-srg.jar%23461!/:?]     at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:661) ~[server-1.20.1-20230612.114412-srg.jar%23461!/:?]     at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServer.java:251) ~[server-1.20.1-20230612.114412-srg.jar%23461!/:?]     at java.lang.Thread.run(Thread.java:833) ~[?:?] Caused by: java.lang.ArrayIndexOutOfBoundsException Mod List: SecurityCraft v1.9.9.jar additional_lights-1.20.1-2.1.7.jar advancements_tracker_1.20.1-6.1.0.jar AI-Improvements-1.20-0.5.2.jar alexsdelight-1.5.jar alexsmobs-1.22.8.jar AmbientSounds_FORGE_v5.3.9_mc1.20.1.jar amendments-1.20-1.1.26.jar appleskin-forge-mc1.20.1-2.5.1.jar Aquaculture-1.20.1-2.5.1.jar aquaculture_delight_1.0.0_forge_1.20.1.jar architectury-9.2.14-forge.jar Arda's Sculks 1.3.2 [FORGE] [1.20.1].jar artifacts-forge-9.5.3.jar async-locator-forge-1.20-1.3.0.jar athena-forge-1.20.1-3.1.2.jar AttributeFix-Forge-1.20.1-21.0.4.jar BadOptimizations-2.1.1.jar badpackets-forge-0.4.3.jar balm-forge-1.20.1-7.2.2.jar beautify-2.0.2.jar BetterAdvancements-1.20.1-0.3.2.162.jar bettercombat-forge-1.8.5+1.20.1.jar BetterF3-7.0.2-Forge-1.20.1.jar betterfarmerscombat-1.2-1.20.1.jar BetterThirdPerson-Forge-1.20-1.9.0.jar BiomesOPlenty-1.20.1-18.0.0.598.jar Bookshelf-Forge-1.20.1-20.1.10.jar born_in_chaos_[Forge]1.20.1_1.2.jar Bountiful-6.0.3+1.20.1-forge.jar caelus-forge-3.2.0+1.20.1.jar camera-forge-1.20.1-1.0.8.jar canary-mc1.20.1-0.3.3.jar chat_heads-0.10.32-forge-1.20.jar Chimes-v2.0.1-1.20.1.jar Chipped-forge-1.20.1-3.0.6.jar chunksending-1.20.1-2.8.jar Chunky-1.3.136.jar citadel-2.5.4-1.20.1.jar cloth-config-11.1.118-forge.jar Clumps-forge-1.20.1-12.0.0.3.jar cluttered-2.1-1.20.1.jar connectedglass-1.1.11-forge-mc1.20.1.jar Controlling-forge-1.20.1-12.0.2.jar corpse-forge-1.20.1-1.0.12.jar cosmeticarmorreworked-1.20.1-v1a.jar CreativeCore_FORGE_v2.11.27_mc1.20.1.jar creeperoverhaul-3.0.2-forge.jar Croptopia-1.20.1-FORGE-3.0.4.jar ctia-1.20.1-forge-2.0.9.jar cupboard-1.20.1-2.6.jar curios-forge-5.9.0+1.20.1.jar CustomPlayerModels-1.20-0.6.16c.jar darktimer-forge-1.20.1-1.0.9.jar dotbe-1.20.1-1.5.5.jar dummmmmmy-1.20-1.8.14.jar DungeonsArise-1.20.x-2.1.58-release.jar DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar dye_depot-1.0.0-forge.jar dynamiclights-v1.7.1-mc1.17x-1.20x-mod.jar easy_mob_farm_1.20.1-7.1.0.jar elevatorid-1.20.1-lex-1.9.jar embeddium-0.3.17+mc1.20.1-all.jar embeddiumplus-1.20.1-v1.2.8.jar emotecraft-for-MC1.20.1-2.2.7-b.build.50-forge.jar EnchantmentDescriptions-Forge-1.20.1-17.0.14.jar EnderMail-1.20.1-1.2.9.jar endermanoverhaul-forge-1.20.1-1.0.4.jar endersdelight-1.20.1-1.0.3.jar entityculling-forge-1.6.2-mc1.20.1.jar EpheroLib-1.20.1-FORGE-1.2.0.jar fantasyfurniture-1.20.1-9.0.0.jar FarmersDelight-1.20.1-1.2.4.jar farmersutils-1.0.5-1.20.1.jar Fastload-Reforged-mc1.20.1-3.4.0.jar fastpaintings-1.20-1.2.5.jar ferritecore-6.0.1-forge.jar friendsandfoes-forge-mc1.20.1-2.0.10.jar ftb-essentials-forge-2001.2.2.jar ftb-library-forge-2001.2.1.jar fusion-1.1.1-forge-mc1.20.1.jar geckolib-forge-1.20.1-4.4.4.jar getittogetherdrops-forge-1.20-1.3.jar handcrafted-forge-1.20.1-3.0.6.jar IllagerInvasion-v8.0.5-1.20.1-Forge.jar illagersweararmor-1.20.1-1.3.4.jar ImmediatelyFast-Forge-1.2.13+1.20.4.jar immersive_melodies-0.1.0+1.20.1-forge.jar Incendium_1.20.4_v5.3.4.jar Item_Obliterator-FORGE-MC1.20.1-1.7.0.jar Jade-1.20.1-forge-11.8.0.jar jei-1.20.1-forge-15.3.0.4.jar journeymap-1.20.1-5.9.20-forge.jar Kambrik-6.1.1+1.20.1-forge.jar kotlinforforge-4.10.0-all.jar L_Enders_Cataclysm-1.99.2 -1.20.1.jar LeavesBeGone-v8.0.0-1.20.1-Forge.jar letmedespawn-forge-1.20.x-1.2.0.jar letsdo-addon-compat-forge-v1.4.1.jar letsdo-API-forge-1.2.9-forge.jar letsdo-bakery-forge-1.1.8.jar letsdo-beachparty-forge-1.1.4-1.jar letsdo-brewery-forge-1.1.6.jar letsdo-candlelight-forge-1.2.11.jar letsdo-herbalbrews-forge-1.0.6.jar letsdo-meadow-forge-1.3.8.jar letsdo-nethervinery-forge-1.2.10.jar letsdo-vinery-forge-1.4.15.jar lightmanscurrency-1.20.1-2.2.1.3b.jar lionfishapi-1.8.jar magicvibedecorations-HALLOWEEN 1.5.0 1.20.1 forge.jar make_bubbles_pop-0.2.0-forge-mc1.19.4+.jar memoryleakfix-forge-1.17+-1.1.5.jar MobLassos-v8.0.1-1.20.1-Forge.jar modelfix-1.15.jar moonlight-1.20-2.11.14-forge.jar morediscs-1.20.1-33-forge.jar MouseTweaks-forge-mc1.20-2.25.jar Necronomicon-Forge-1.4.2.jar nether-s-exoticism-1.20.1-1.2.7.jar nethersdelight-1.20.1-4.0.jar nomowanderer-1.20.1_1.6.4.jar oculus-mc1.20.1-1.7.0.jar origins-forge-1.20.1-1.10.0.7-all.jar origins-plus-plus-2.2-forge.jar Paraglider-forge-20.1.3.jar Patchouli-1.20.1-84-FORGE.jar Paxi-1.20-Forge-4.0.jar Pehkui-3.8.0+1.20.1-forge.jar player-animation-lib-forge-1.0.2-rc1+1.20.jar PlayerRevive_FORGE_v2.0.24_mc1.20.1.jar plushies-1.4.0-forge.jar polymorph-forge-0.49.3+1.20.1.jar projectvibrantjourneys-1.20.1-6.0.0.jar PuzzlesLib-v8.1.18-1.20.1-Forge.jar resourcefulconfig-forge-1.20.1-2.1.2.jar resourcefullib-forge-1.20.1-2.1.24.jar right-click-harvest-3.2.3+1.20.1-forge.jar rubidium-extra-0.5.4.3+mc1.20.1-build.121.jar Runelic-Forge-1.20.1-18.0.2.jar saturn-mc1.20.1-0.1.3.jar sawmill-1.20-1.3.13.jar scholar-1.20.1-1.0.0-forge.jar screenshot_viewer-1.2.1-forge-mc1.20.1.jar Searchables-forge-1.20.1-1.0.2.jar selfexpression-2.8 1.20.1.jar servercore-forge-1.5.1+1.20.1.jar ShulkerArmory_1.20.1_1.2.1_hotfix.jar simplehats-forge-1.20.1-0.2.4.jar simplevoicechat_broadcast-mc1.20.1-1.0.1.jar simplyswords-forge-1.55.0-1.20.1.jar smoothboot(reloaded)-mc1.20.1-0.0.4.jar Sniffer+-forge-1.20.1-0.3.0.jar sophisticatedbackpacks-1.20.1-3.20.5.1044.jar sophisticatedcore-1.20.1-0.6.21.609.jar sophisticatedstorage-1.20.1-0.10.21.793.jar spark-1.10.53-forge.jar stalwart-dungeons-1.20.1-1.2.8.jar starlight-1.1.2+forge.1cda73c.jar step-1.20.1-1.2.2.jar supermartijn642corelib-1.1.17-forge-mc1.20.1.jar supplementaries-1.20-2.8.10.jar temporalapi-1.5.0.jar TerraBlender-forge-1.20.1-3.0.1.4.jar Terralith_1.20.4_v2.4.11.jar toms_storage-1.20-1.6.6.jar torchmaster-20.1.6.jar trashslot-forge-1.20-15.1.0.jar treasuredistance-1.20-1.2.jar tru.e-ending-v1.1.0c.jar v_slab_compat-1.20-2.3.jar vintagedelight-0.0.12.jar vmp-fabric-mc1.20.1-0.2.0+beta.7.101-all.jar voicechat-forge-1.20.1-2.5.11.jar waystones-forge-1.20-14.1.3.jar WI-Zoom-1.5-MC1.20.1-Forge.jar worldedit-mod-7.2.15.jar wsopulence1.2.0_Forge_MC1.20.1-1.20.4.jar xlpackets-1.18.2-2.1.jar YungsApi-1.20-Forge-4.0.4.jar YungsBetterEndIsland-1.20-Forge-2.0.6.jar YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar YungsBetterStrongholds-1.20-Forge-4.0.3.jar
  • Topics

×
×
  • Create New...

Important Information

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