Jump to content

Recommended Posts

Posted

I am trying to create a custom version of EntitySpider that is slightly smaller than a cave spider. I took a look at EntityCaveSpider.class for some background. What I ended up with is this:

Common.java

 

public class Common {
public void registerRenderThings() {
    }
    
    public void registerSound() {
    }
}

 

Client.java

 

import cpw.mods.fml.client.registry.RenderingRegistry;
import net.minecraft.client.model.ModelSpider;

public class Client extends Common {
@Override
    public void registerRenderThings() {
	RenderingRegistry.registerEntityRenderingHandler(EntityMiniSpider.class, new RenderMiniSpider());
}
}

 

RenderMiniSpider.java

 

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.entity.RenderSpider;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.monster.EntityCaveSpider;
import net.minecraft.entity.monster.EntitySpider;
import net.minecraft.util.ResourceLocation;

import org.lwjgl.opengl.GL11;

@SideOnly(Side.CLIENT)
public class RenderMiniSpider extends RenderSpider {
    private static final ResourceLocation caveSpiderTextures = new ResourceLocation("textures/entity/spider/cave_spider.png");
    private static final String __OBFID = "CL_00000982";

    public RenderMiniSpider()
    {
        this.shadowSize *= 0.175F;
    }

    /**
     * Allows the render to do any OpenGL state modifications necessary before the model is rendered. Args:
     * entityLiving, partialTickTime
     */
    protected void preRenderCallback(EntityMiniSpider p_77041_1_, float p_77041_2_)
    {
        GL11.glScalef(0.175F, 0.175F, 0.175F);
    }

    /**
     * Returns the location of an entity's texture. Doesn't seem to be called unless you call Render.bindEntityTexture.
     */
    protected ResourceLocation getEntityTexture(EntityMiniSpider p_110775_1_)
    {
        return caveSpiderTextures;
    }

    /**
     * Returns the location of an entity's texture. Doesn't seem to be called unless you call Render.bindEntityTexture.
     */
    protected ResourceLocation getEntityTexture(EntitySpider p_110775_1_)
    {
        return this.getEntityTexture((EntityMiniSpider)p_110775_1_);
    }

    /**
     * Allows the render to do any OpenGL state modifications necessary before the model is rendered. Args:
     * entityLiving, partialTickTime
     */
    protected void preRenderCallback(EntityLivingBase p_77041_1_, float p_77041_2_)
    {
        this.preRenderCallback((EntityMiniSpider)p_77041_1_, p_77041_2_);
    }

    /**
     * Returns the location of an entity's texture. Doesn't seem to be called unless you call Render.bindEntityTexture.
     */
    protected ResourceLocation getEntityTexture(Entity p_110775_1_)
    {
        return this.getEntityTexture((EntityMiniSpider)p_110775_1_);
    }
}

 

EntityMiniSpider.java

 

import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.IEntityLivingData;
import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.world.EnumDifficulty;
import net.minecraft.world.World;
import net.minecraft.entity.monster.*;

public class EntityMiniSpider extends EntitySpider {
private static final String __OBFID = "CL_00001683";

    public EntityMiniSpider(World p_i1732_1_)
    {
        super(p_i1732_1_);
        this.setSize(0.175F, 0.125F);
    }

    protected void applyEntityAttributes()
    {
        super.applyEntityAttributes();
        this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setBaseValue(12.0D);
    }

    public boolean attackEntityAsMob(Entity p_70652_1_)
    {
        if (super.attackEntityAsMob(p_70652_1_))
        {
            if (p_70652_1_ instanceof EntityLivingBase)
            {
                byte b0 = 0;

                if (this.worldObj.difficultySetting == EnumDifficulty.NORMAL)
                {
                    b0 = 7;
                }
                else if (this.worldObj.difficultySetting == EnumDifficulty.HARD)
                {
                    b0 = 15;
                }

                if (b0 > 0)
                {
                    ((EntityLivingBase)p_70652_1_).addPotionEffect(new PotionEffect(Potion.poison.id, b0 * 20, 0));
                }
            }

            return true;
        }
        else
        {
            return false;
        }
    }

    public IEntityLivingData onSpawnWithEgg(IEntityLivingData p_110161_1_)
    {
        return p_110161_1_;
    }
}

 

And the relevant part of my main class:

 

import java.util.HashMap;
import java.util.LinkedHashMap;

import net.minecraft.block.Block;
import net.minecraftforge.common.MinecraftForge;
import cpw.mods.fml.common.IWorldGenerator;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.SidedProxy;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.registry.EntityRegistry;
import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.common.registry.LanguageRegistry;
import net.minecraft.block.material.Material;
import net.minecraft.entity.EntityList;
import net.minecraft.entity.EnumCreatureType;
import net.minecraft.entity.boss.EntityDragon;
import net.minecraft.world.biome.BiomeGenBase;
import net.minecraft.entity.passive.EntityMooshroom;
import net.minecraft.entity.monster.*;

@Mod(modid = "dropchanger", version = "1.0")
public class BetterDropsMain {
public static final String MODID = "dropchanger";
public static final String VERSION = "1.0";
@SidedProxy(clientSide = "io.github.tesla.Client", serverSide = "io.tesla.Common")
public static Common proxy;

@EventHandler
public void init(FMLInitializationEvent event) {
	EntityRegistry.registerGlobalEntityID(EntityMiniSpider.class, "EntityMiniSpider", 501, 0x660066, 0x660066);
	proxy.registerRenderThings();
	LanguageRegistry.instance().addStringLocalization("entity.EntityMiniSpider.name", "en_US", "MiniSpider");
}
}

 

Everything works fine until I try to spawn one in with an egg and I get a NullPointerException. I tried stepping through the code with a debugger but couldn't find exactly where it happened. Here's my console log:

 

Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
[18:13:36] [main/INFO] [GradleStart]: No arguments specified, assuming client.
[18:13:36] [main/INFO] [GradleStart]: Extra: []
[18:13:36] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, /Users/tesla/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker]
[18:13:36] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[18:13:36] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
[18:13:36] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
[18:13:36] [main/INFO] [FML]: Forge Mod Loader version 7.10.85.1232 for Minecraft 1.7.10 loading
[18:13:36] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_20, running on Mac OS X:x86_64:10.10, installed at /Library/Java/JavaVirtualMachines/jdk1.8.0_20.jdk/Contents/Home/jre
[18:13:36] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[18:13:36] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:13:36] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
[18:13:36] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:13:36] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:13:36] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:13:36] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[18:13:37] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[18:13:37] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:13:37] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
[18:13:37] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
[18:13:37] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
[18:13:37] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[18:13:38] [main/INFO]: Setting user: Player178
[18:13:39] [Client thread/INFO]: LWJGL Version: 2.9.1
[18:13:39] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
[18:13:39] [Client thread/INFO] [FML]: MinecraftForge v10.13.2.1232 Initialized
[18:13:39] [Client thread/INFO] [FML]: Replaced 182 ore recipies
[18:13:40] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
[18:13:40] [Client thread/INFO] [FML]: Searching /Users/tesla/Documents/modding/forge-1-3/eclipse/mods for mods
[18:13:40] [Client thread/INFO] [dropchanger]: Mod dropchanger is missing the required element 'name'. Substituting dropchanger
[18:13:42] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
[18:13:42] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, dropchanger] at CLIENT
[18:13:42] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, dropchanger] at SERVER
[18:13:43] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:dropchanger
[18:13:43] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[18:13:43] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
[18:13:43] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[18:13:43] [Client thread/INFO] [FML]: Applying holder lookups
[18:13:43] [Client thread/INFO] [FML]: Holder lookups applied
[18:13:43] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[18:13:43] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[18:13:43] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[18:13:43] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[18:13:43] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[18:13:44] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[18:13:44] [sound Library Loader/INFO]: Sound engine started
[18:13:44] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
[18:13:44] [Client thread/INFO]: Created: 256x256 textures/items-atlas
[18:13:44] [Client thread/INFO] [sTDOUT]: [io.github.tesla.BetterDropsMain:init:36]: DROPCHANGER TESTING up
[18:13:44] [Client thread/ERROR] [FML]: The entity ID 501 for mod dropchanger is not an unsigned byte and may not work
[18:13:44] [Client thread/ERROR] [FML]: The mod dropchanger has attempted to register an entity ID 501 which is already reserved. This could cause severe problems
[18:13:44] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
[18:13:44] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:dropchanger
[18:13:44] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
[18:13:44] [Client thread/INFO]: Created: 256x256 textures/items-atlas
[18:13:44] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[18:13:44] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...
[18:13:45] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
[18:13:45] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[18:13:45] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[18:13:45] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...
[18:13:45] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
[18:13:45] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[18:13:45] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
[18:13:45] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
[18:13:45] [sound Library Loader/INFO]: Sound engine started
[18:13:48] [server thread/INFO]: Starting integrated minecraft server version 1.7.10
[18:13:48] [server thread/INFO]: Generating keypair
[18:13:48] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[18:13:48] [server thread/INFO] [FML]: Applying holder lookups
[18:13:48] [server thread/INFO] [FML]: Holder lookups applied
[18:13:48] [server thread/INFO] [FML]: Loading dimension 0 (extremehills) (net.minecraft.server.integrated.IntegratedServer@300d0ebb)
[18:13:48] [server thread/INFO] [FML]: Loading dimension 1 (extremehills) (net.minecraft.server.integrated.IntegratedServer@300d0ebb)
[18:13:48] [server thread/INFO] [FML]: Loading dimension -1 (extremehills) (net.minecraft.server.integrated.IntegratedServer@300d0ebb)
[18:13:48] [server thread/INFO]: Preparing start region for level 0
[18:13:49] [server thread/INFO]: Preparing spawn area: 88%
[18:13:50] [server thread/INFO]: Changing view distance to 6, from 10
[18:13:50] [Netty Client IO #0/INFO] [FML]: Server protocol version 1
[18:13:50] [Netty IO #1/INFO] [FML]: Client protocol version 1
[18:13:50] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]
[18:13:50] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT
[18:13:50] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER
[18:13:50] [server thread/INFO] [FML]: [server thread] Server side modded connection established
[18:13:50] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established
[18:13:50] [server thread/INFO]: Player178[local:E:4f23f012] logged in with entity id 490 at (115.94501492973593, 73.0, 247.73645317739292)
[18:13:50] [server thread/INFO]: Player178 joined the game
[18:13:52] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2002ms behind, skipping 40 tick(s)
[18:13:58] [server thread/INFO]: Player178 was blown up by Creeper
[18:13:58] [server thread/INFO] [sTDOUT]: [io.github.tesla.EntityItemDeathHandler:onEntityDeathDrops:114]: EntityItem['item.item.monsterPlacer'/574, l='extremehills', x=112.30, y=74.32, z=244.10]
[18:13:58] [server thread/INFO] [sTDOUT]: [io.github.tesla.EntityItemDeathHandler:onEntityDeathDrops:114]: EntityItem['item.tile.sapling.oak'/575, l='extremehills', x=112.30, y=74.32, z=244.10]
[18:13:58] [Client thread/INFO]: [CHAT] Player178 was blown up by Creeper
[18:13:58] [server thread/INFO] [sTDOUT]: [io.github.tesla.EntityItemDeathHandler:onEntityDeathDrops:114]: EntityItem['item.item.monsterPlacer'/664, l='extremehills', x=190.75, y=14.04, z=315.25]
[18:14:03] [Client thread/INFO]: [CHAT] /gamemode, /gamerule
[18:14:03] [server thread/INFO]: [Player178: Set own game mode to Creative Mode]
[18:14:03] [Client thread/INFO]: [CHAT] Your game mode has been updated
[18:14:04] [server thread/INFO]: Player178 has just earned the achievement [Taking Inventory]
[18:14:04] [Client thread/INFO]: [CHAT] Player178 has just earned the achievement [Taking Inventory]
[18:14:23] [Client thread/WARN]: Skipping Entity with id -11
[18:14:23] [server thread/INFO]: Stopping server
[18:14:23] [server thread/INFO]: Saving players
[18:14:23] [server thread/INFO]: Saving worlds
[18:14:23] [server thread/INFO]: Saving chunks for level 'extremehills'/Overworld
[18:14:23] [server thread/INFO]: Saving chunks for level 'extremehills'/Nether
[18:14:23] [server thread/INFO]: Saving chunks for level 'extremehills'/The End
[18:14:24] [server thread/INFO] [FML]: Unloading dimension 0
[18:14:24] [server thread/INFO] [FML]: Unloading dimension -1
[18:14:24] [server thread/INFO] [FML]: Unloading dimension 1
[18:14:24] [server thread/INFO] [FML]: Applying holder lookups
[18:14:24] [server thread/INFO] [FML]: Holder lookups applied
[18:14:24] [Client thread/FATAL]: Unreported exception thrown!
java.lang.NullPointerException
at net.minecraft.client.network.NetHandlerPlayClient.handleSpawnMob(NetHandlerPlayClient.java:855) ~[NetHandlerPlayClient.class:?]
at net.minecraft.network.play.server.S0FPacketSpawnMob.processPacket(S0FPacketSpawnMob.java:129) ~[s0FPacketSpawnMob.class:?]
at net.minecraft.network.play.server.S0FPacketSpawnMob.processPacket(S0FPacketSpawnMob.java:222) ~[s0FPacketSpawnMob.class:?]
at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241) ~[NetworkManager.class:?]
at net.minecraft.client.multiplayer.PlayerControllerMP.updateController(PlayerControllerMP.java:317) ~[PlayerControllerMP.class:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1682) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1028) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:951) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_20]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_20]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_20]
at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_20]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_20]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_20]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_20]
at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_20]
at GradleStartCommon.launch(GradleStartCommon.java:29) [start/:?]
at GradleStart.startClient(GradleStart.java:96) [start/:?]
at GradleStart.main(GradleStart.java:50) [start/:?]
[18:14:24] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ----
// My bad.

Time: 11/7/14 6:14 PM
Description: Unexpected error

java.lang.NullPointerException: Unexpected error
at net.minecraft.client.network.NetHandlerPlayClient.handleSpawnMob(NetHandlerPlayClient.java:855)
at net.minecraft.network.play.server.S0FPacketSpawnMob.processPacket(S0FPacketSpawnMob.java:129)
at net.minecraft.network.play.server.S0FPacketSpawnMob.processPacket(S0FPacketSpawnMob.java:222)
at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241)
at net.minecraft.client.multiplayer.PlayerControllerMP.updateController(PlayerControllerMP.java:317)
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1682)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1028)
at net.minecraft.client.Minecraft.run(Minecraft.java:951)
at net.minecraft.client.main.Main.main(Main.java:164)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at GradleStartCommon.launch(GradleStartCommon.java:29)
at GradleStart.startClient(GradleStart.java:96)
at GradleStart.main(GradleStart.java:50)


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

-- Head --
Stacktrace:
at net.minecraft.client.network.NetHandlerPlayClient.handleSpawnMob(NetHandlerPlayClient.java:855)
at net.minecraft.network.play.server.S0FPacketSpawnMob.processPacket(S0FPacketSpawnMob.java:129)
at net.minecraft.network.play.server.S0FPacketSpawnMob.processPacket(S0FPacketSpawnMob.java:222)
at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241)
at net.minecraft.client.multiplayer.PlayerControllerMP.updateController(PlayerControllerMP.java:317)

-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['Player178'/490, l='MpServer', x=79.59, y=72.76, z=245.69]]
Chunk stats: MultiplayerChunkCache: 161, 161
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options: 
Level spawn location: World: (116,64,248), Chunk: (at 4,4,8 in 7,15; contains blocks 112,0,240 to 127,255,255), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
Level time: 45935 game time, 45935 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false
Forced entities: 100 total; [EntitySkeleton['Skeleton'/258, l='MpServer', x=154.69, y=68.00, z=245.88], EntityZombie['Zombie'/259, l='MpServer', x=152.56, y=41.00, z=265.97], EntityCreeper['Creeper'/260, l='MpServer', x=146.47, y=37.00, z=258.66], EntitySpider['Spider'/261, l='MpServer', x=145.09, y=37.00, z=256.84], EntitySkeleton['Skeleton'/262, l='MpServer', x=155.84, y=64.00, z=259.44], EntityZombie['Zombie'/263, l='MpServer', x=154.50, y=21.00, z=274.50], EntityZombie['Zombie'/264, l='MpServer', x=152.50, y=21.00, z=274.50], EntityBat['Bat'/265, l='MpServer', x=159.69, y=22.10, z=282.06], EntityItem['item.item.monsterPlacer'/574, l='MpServer', x=113.88, y=71.13, z=243.19], EntityItem['item.tile.sapling.oak'/575, l='MpServer', x=111.19, y=71.13, z=243.13], EntityItem['item.tile.log.oak'/576, l='MpServer', x=109.13, y=73.13, z=244.19], EntityItem['item.tile.dirt.default'/577, l='MpServer', x=114.13, y=71.13, z=245.13], EntityItem['item.tile.dirt.default'/579, l='MpServer', x=110.88, y=72.13, z=243.28], EntityItem['item.tile.dirt.default'/580, l='MpServer', x=113.81, y=71.13, z=246.88], EntityItem['item.tile.sapling.oak'/583, l='MpServer', x=110.13, y=72.13, z=247.88], EntityItem['item.tile.dirt.default'/585, l='MpServer', x=111.81, y=70.13, z=246.28], EntityItem['item.tile.dirt.default'/587, l='MpServer', x=111.13, y=70.13, z=245.13], EntityItem['item.tile.dirt.default'/588, l='MpServer', x=111.81, y=71.13, z=247.19], EntityItem['item.tile.dirt.default'/589, l='MpServer', x=111.13, y=71.13, z=244.56], EntityItem['item.tile.dirt.default'/590, l='MpServer', x=113.03, y=71.13, z=243.13], EntityItem['item.tile.dirt.default'/591, l='MpServer', x=113.97, y=71.13, z=246.13], EntityItem['item.tile.dirt.default'/592, l='MpServer', x=110.34, y=71.13, z=246.38], EntityCreeper['Creeper'/81, l='MpServer', x=16.06, y=64.00, z=191.28], EntityCow['Cow'/83, l='MpServer', x=8.13, y=64.00, z=234.53], EntityCreeper['Creeper'/103, l='MpServer', x=29.50, y=63.00, z=205.50], EntityCreeper['Creeper'/104, l='MpServer', x=22.50, y=21.00, z=268.50], EntityCreeper['Creeper'/105, l='MpServer', x=22.50, y=21.00, z=269.50], EntityCreeper['Creeper'/106, l='MpServer', x=23.00, y=21.00, z=266.56], EntityBat['Bat'/107, l='MpServer', x=24.46, y=59.84, z=294.69], EntityBat['Bat'/108, l='MpServer', x=25.16, y=60.10, z=302.28], EntityCow['Cow'/109, l='MpServer', x=18.53, y=70.00, z=306.31], EntityPig['Pig'/121, l='MpServer', x=31.94, y=63.00, z=175.03], EntityCreeper['Creeper'/122, l='MpServer', x=34.50, y=21.00, z=191.50], EntitySkeleton['Skeleton'/123, l='MpServer', x=37.56, y=20.00, z=189.13], EntityCreeper['Creeper'/124, l='MpServer', x=41.53, y=23.00, z=190.94], EntitySkeleton['Skeleton'/125, l='MpServer', x=39.50, y=21.00, z=192.50], EntitySkeleton['Skeleton'/126, l='MpServer', x=36.50, y=21.00, z=193.50], EntityCreeper['Creeper'/127, l='MpServer', x=39.88, y=21.00, z=194.69], EntitySkeleton['Skeleton'/128, l='MpServer', x=35.97, y=21.00, z=192.44], EntityCow['Cow'/129, l='MpServer', x=46.41, y=67.00, z=195.25], EntityCreeper['Creeper'/130, l='MpServer', x=33.00, y=63.00, z=219.41], EntityZombie['Zombie'/131, l='MpServer', x=32.50, y=72.00, z=239.50], EntityZombie['Zombie'/132, l='MpServer', x=43.56, y=63.00, z=264.56], EntityBat['Bat'/133, l='MpServer', x=29.50, y=58.10, z=291.50], EntityCow['Cow'/134, l='MpServer', x=47.84, y=65.00, z=301.03], EntitySkeleton['Skeleton'/135, l='MpServer', x=40.50, y=70.00, z=289.50], EntityCow['Cow'/136, l='MpServer', x=37.56, y=72.00, z=322.38], EntityPig['Pig'/144, l='MpServer', x=57.50, y=73.00, z=172.22], EntityCow['Cow'/145, l='MpServer', x=52.78, y=68.00, z=185.19], EntityZombie['Zombie'/146, l='MpServer', x=55.78, y=17.00, z=234.50], EntityCreeper['Creeper'/147, l='MpServer', x=48.50, y=32.00, z=255.50], EntityCow['Cow'/148, l='MpServer', x=51.88, y=63.00, z=265.72], EntityCow['Cow'/149, l='MpServer', x=71.81, y=73.00, z=266.22], EntityZombie['Zombie'/150, l='MpServer', x=58.50, y=64.00, z=260.31], EntityZombie['Zombie'/151, l='MpServer', x=62.50, y=70.00, z=265.50], EntityZombie['Zombie'/152, l='MpServer', x=61.50, y=32.00, z=285.50], EntityCow['Cow'/153, l='MpServer', x=48.38, y=74.00, z=302.41], EntityCow['Cow'/154, l='MpServer', x=49.69, y=69.00, z=294.59], EntityCow['Cow'/155, l='MpServer', x=55.47, y=70.00, z=296.06], EntitySkeleton['Skeleton'/156, l='MpServer', x=52.50, y=64.00, z=294.50], EntityBat['Bat'/157, l='MpServer', x=68.94, y=28.63, z=306.25], EntityCow['Cow'/158, l='MpServer', x=58.47, y=64.00, z=322.53], EntityCow['Cow'/159, l='MpServer', x=55.28, y=64.00, z=317.50], EntityClientPlayerMP['Player178'/490, l='MpServer', x=79.59, y=72.76, z=245.69], EntityWitch['Witch'/167, l='MpServer', x=67.16, y=59.00, z=217.50], EntityCow['Cow'/168, l='MpServer', x=81.47, y=78.00, z=255.44], EntityCow['Cow'/169, l='MpServer', x=64.03, y=71.00, z=265.72], EntityCow['Cow'/170, l='MpServer', x=66.50, y=71.00, z=262.38], EntityCow['Cow'/171, l='MpServer', x=64.50, y=70.00, z=288.66], EntityCreeper['Creeper'/172, l='MpServer', x=69.38, y=71.00, z=286.97], EntityCow['Cow'/173, l='MpServer', x=83.88, y=63.00, z=322.97], EntityZombie['Zombie'/176, l='MpServer', x=91.50, y=58.00, z=166.50], EntitySpider['Spider'/177, l='MpServer', x=89.94, y=54.00, z=201.50], EntityZombie['Zombie'/178, l='MpServer', x=91.69, y=54.00, z=200.31], EntityWitch['Witch'/179, l='MpServer', x=94.28, y=53.00, z=206.16], EntityCow['Cow'/180, l='MpServer', x=98.25, y=77.00, z=226.28], EntityCow['Cow'/181, l='MpServer', x=80.16, y=73.00, z=267.19], EntityCow['Cow'/199, l='MpServer', x=107.38, y=73.00, z=199.25], EntityGiantZombie['Giant'/200, l='MpServer', x=102.03, y=73.00, z=248.06], EntityGiantZombie['Giant'/201, l='MpServer', x=106.19, y=74.00, z=246.22], EntityGiantZombie['Giant'/202, l='MpServer', x=106.09, y=73.00, z=250.19], EntityGiantZombie['Giant'/203, l='MpServer', x=110.09, y=74.00, z=250.19], EntityGiantZombie['Giant'/204, l='MpServer', x=105.50, y=73.00, z=256.50], EntityCow['Cow'/205, l='MpServer', x=100.56, y=75.00, z=311.72], EntityCow['Cow'/219, l='MpServer', x=118.59, y=74.00, z=166.69], EntityCow['Cow'/220, l='MpServer', x=107.47, y=77.00, z=203.22], EntityGiantZombie['Giant'/221, l='MpServer', x=118.72, y=74.00, z=238.09], EntityGiantZombie['Giant'/222, l='MpServer', x=119.81, y=74.00, z=246.19], EntityGiantZombie['Giant'/223, l='MpServer', x=114.13, y=73.00, z=246.28], EntityGiantZombie['Giant'/224, l='MpServer', x=117.66, y=73.00, z=250.13], EntitySkeleton['Skeleton'/225, l='MpServer', x=112.63, y=73.00, z=293.13], EntityCow['Cow'/226, l='MpServer', x=120.28, y=75.00, z=294.50], EntityClientPlayerMP['Player178'/490, l='MpServer', x=112.30, y=77.62, z=238.30], EntityBat['Bat'/239, l='MpServer', x=140.75, y=25.10, z=173.53], EntitySkeleton['Skeleton'/240, l='MpServer', x=138.50, y=19.00, z=172.94], EntityCreeper['Creeper'/243, l='MpServer', x=142.50, y=37.00, z=259.50], EntityCow['Cow'/244, l='MpServer', x=138.47, y=63.00, z=270.69], EntityBat['Bat'/245, l='MpServer', x=114.25, y=13.00, z=282.75], EntityCow['Cow'/246, l='MpServer', x=138.50, y=65.00, z=275.50], EntityCow['Cow'/247, l='MpServer', x=130.50, y=68.00, z=289.09]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:415)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2555)
at net.minecraft.client.Minecraft.run(Minecraft.java:980)
at net.minecraft.client.main.Main.main(Main.java:164)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at GradleStartCommon.launch(GradleStartCommon.java:29)
at GradleStart.startClient(GradleStart.java:96)
at GradleStart.main(GradleStart.java:50)

-- System Details --
Details:
Minecraft Version: 1.7.10
Operating System: Mac OS X (x86_64) version 10.10
Java Version: 1.8.0_20, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 774907600 bytes (739 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95
FML: MCP v9.05 FML v7.10.85.1232 Minecraft Forge 10.13.2.1232 4 mods loaded, 4 mods active
mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{7.10.85.1232} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1232.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{10.13.2.1232} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1232.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
dropchanger{1.0} [dropchanger] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Launched Version: 1.7.10
LWJGL: 2.9.1
OpenGL: Intel HD Graphics 4000 OpenGL Engine GL version 2.1 INTEL-10.0.86, Intel Inc.
GL Caps: Using GL 1.3 multitexturing.
Using framebuffer objects because ARB_framebuffer_object is supported and separate blending is supported.
Anisotropic filtering is supported and maximum anisotropy is 16.
Shaders are available because OpenGL 2.1 is supported.

Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs: []
Current Language: English (US)
Profiler Position: N/A (disabled)
Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Anisotropic Filtering: Off (1)
[18:14:24] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# /Users/tesla/Documents/modding/forge-1-3/eclipse/./crash-reports/crash-2014-11-07_18.14.24-client.txt
AL lib: (EE) alc_cleanup: 1 device not closed

 

 

Am I forgetting to register something? What is returning null that shouldn't?

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I encountered this issue and the problem for me is that the mapping_version value in gradle.properties was wrong, I am using minecraft version 1.21.4 and parchment mappings version should be 2025.02.16. I was supposed to have mapping_version=2025.02.15-1.21.4 but I had a typo where I wrote 2024 instead of 2025 which caused the issue. Make sure it's correctly formatted like this: mapping_version={YEAR}.{MONTH}.{DATE}-{MINECRAFT_VERSION} And maybe make sure you didn't misspell the mapping_channel=parchment either.
    • Greetings! I'm in the process of making my first modpack, and I encountered this crash after enabling the Create mod. Here is the link to the latest.log: https://pastebin.com/VQRNaBr1 The specific crash is as follows:   The game crashed: rendering overlay Error: java.lang.RuntimeException: null Exit Code: -1   Any advice?
    • bonjour, je fais que de crasher et je ne comprend pas la raison pouvez vous m'aider voici le crash log ---- Minecraft Crash Report ---- // I let you down. Sorry :( Time: 2025-03-01 07:14:22 Description: Unexpected error java.lang.NullPointerException: Cannot assign field "f_112792_" because "net.minecraft.client.Minecraft.m_91087_().f_91060_.f_109469_.f_110843_" is null     at com.github.L_Ender.cataclysm.client.event.ClientEvent.updateAllChunks(ClientEvent.java:259) ~[L_Enders_Cataclysm-2.56-%201.20.1.jar%23261!/:2.56- 1.20.1] {re:classloading,pl:runtimedistcleaner:A}     at com.github.L_Ender.cataclysm.client.event.ClientEvent.onRenderWorldLastEvent(ClientEvent.java:274) ~[L_Enders_Cataclysm-2.56-%201.20.1.jar%23261!/:2.56- 1.20.1] {re:classloading,pl:runtimedistcleaner:A}     at com.github.L_Ender.cataclysm.client.event.__ClientEvent_onRenderWorldLastEvent_RenderLevelStageEvent.invoke(.dynamic) ~[L_Enders_Cataclysm-2.56-%201.20.1.jar%23261!/:2.56- 1.20.1] {re:classloading,pl:eventbus:B}     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:73) ~[eventbus-6.0.5.jar%2387!/:?] {}     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.5.jar%2387!/:?] {}     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.5.jar%2387!/:?] {}     at net.minecraftforge.client.ForgeHooksClient.dispatchRenderStage(ForgeHooksClient.java:288) ~[forge-1.20.1-47.3.0-universal.jar%23307!/:?] {re:classloading}     at net.minecraft.client.renderer.LevelRenderer.m_109599_(LevelRenderer.java:1158) ~[client-1.20.1-20230612.114412-srg.jar%23302!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.renderer.GameRenderer.m_109089_(GameRenderer.java:1126) ~[client-1.20.1-20230612.114412-srg.jar%23302!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.renderer.GameRenderer.redirect$zgb000$redirectRenderingWorld(GameRenderer.java:3230) ~[client-1.20.1-20230612.114412-srg.jar%23302!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:909) ~[client-1.20.1-20230612.114412-srg.jar%23302!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23302!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23302!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:flywheel.mixins.json:ClientMainMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Suspected Mods:      Cataclysm Mod (cataclysm), Version: 2.56         at TRANSFORMER/[email protected]/com.github.L_Ender.cataclysm.client.event.ClientEvent.updateAllChunks(ClientEvent.java:259)     Immersive Portals (immersive_portals), Version: 3.0.0         Issue tracker URL: https://github.com/Nick1st/SeeThroughPortals/issues         Mixin class: qouteall.imm_ptl.core.mixin.client.render.MixinGameRenderer         Target: net.minecraft.client.renderer.GameRenderer         at TRANSFORMER/[email protected]/net.minecraft.client.renderer.GameRenderer.redirect$zgb000$redirectRenderingWorld(GameRenderer.java:3230) Stacktrace:     at com.github.L_Ender.cataclysm.client.event.ClientEvent.updateAllChunks(ClientEvent.java:259) ~[L_Enders_Cataclysm-2.56-%201.20.1.jar%23261!/:2.56- 1.20.1] {re:classloading,pl:runtimedistcleaner:A}     at com.github.L_Ender.cataclysm.client.event.ClientEvent.onRenderWorldLastEvent(ClientEvent.java:274) ~[L_Enders_Cataclysm-2.56-%201.20.1.jar%23261!/:2.56- 1.20.1] {re:classloading,pl:runtimedistcleaner:A}     at com.github.L_Ender.cataclysm.client.event.__ClientEvent_onRenderWorldLastEvent_RenderLevelStageEvent.invoke(.dynamic) ~[L_Enders_Cataclysm-2.56-%201.20.1.jar%23261!/:2.56- 1.20.1] {re:classloading,pl:eventbus:B}     at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:73) ~[eventbus-6.0.5.jar%2387!/:?] {}     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:315) ~[eventbus-6.0.5.jar%2387!/:?] {}     at net.minecraftforge.eventbus.EventBus.post(EventBus.java:296) ~[eventbus-6.0.5.jar%2387!/:?] {}     at net.minecraftforge.client.ForgeHooksClient.dispatchRenderStage(ForgeHooksClient.java:288) ~[forge-1.20.1-47.3.0-universal.jar%23307!/:?] {re:classloading}     at net.minecraft.client.renderer.LevelRenderer.m_109599_(LevelRenderer.java:1158) ~[client-1.20.1-20230612.114412-srg.jar%23302!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.renderer.GameRenderer.m_109089_(GameRenderer.java:1126) ~[client-1.20.1-20230612.114412-srg.jar%23302!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.renderer.GameRenderer.redirect$zgb000$redirectRenderingWorld(GameRenderer.java:3230) ~[client-1.20.1-20230612.114412-srg.jar%23302!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A} -- Affected level -- Details:     All players: 1 total; [LocalPlayer['mcdel02'/97, l='ClientWorld minecraft:overworld', x=-6686.64, y=136.06, z=-6647.08]]     Chunk stats: Client Chunks (ImmPtl) 5     Level dimension: minecraft:overworld     Level spawn location: World: (-32,63,0), Section: (at 0,15,0 in -2,3,0; chunk contains blocks -32,-64,0 to -17,319,15), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,-64,0 to -1,319,511)     Level time: 1930448 game time, 1956326 day time     Server brand: forge     Server type: Integrated singleplayer server Stacktrace:     at net.minecraft.client.multiplayer.ClientLevel.m_6026_(ClientLevel.java:455) ~[client-1.20.1-20230612.114412-srg.jar%23302!/:?] {re:mixin,xf:fml:xaerominimap:xaero_clientworldclass,pl:runtimedistcleaner:A,re:classloading,xf:fml:xaerominimap:xaero_clientworldclass,pl:mixin:APP:imm_ptl.mixins.json:client.MixinClientLevel,pl:mixin:APP:imm_ptl.mixins.json:client.sound.MixinClientLevel_Sound,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:supplementaries-common.mixins.json:ClientLevelMixin,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2319) ~[client-1.20.1-20230612.114412-srg.jar%23302!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:740) ~[client-1.20.1-20230612.114412-srg.jar%23302!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaerominimap:xaero_minecraftclient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:flywheel.mixins.json:ClientMainMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} -- Last reload -- Details:     Reload number: 1     Reload reason: initial     Finished: Yes     Packs: vanilla, tacz_resources, mod_resources, Moonlight Mods Dynamic Assets, file/Faithfulx32+Addon_Emissive_Ores_1.20+.zip, file/Faithful 64x - Beta 9.zip, file/Lower Fire.zip -- System Details -- Details:     Minecraft Version: 1.20.1     Minecraft Version ID: 1.20.1     Operating System: Windows 10 (amd64) version 10.0     Java Version: 17.0.8, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 1251537656 bytes (1193 MiB) / 4294967296 bytes (4096 MiB) up to 4294967296 bytes (4096 MiB)     CPUs: 12     Processor Vendor: GenuineIntel     Processor Name: 11th Gen Intel(R) Core(TM) i5-11400F @ 2.60GHz     Identifier: Intel64 Family 6 Model 167 Stepping 1     Microarchitecture: Rocket Lake     Frequency (GHz): 2.59     Number of physical packages: 1     Number of physical CPUs: 6     Number of logical CPUs: 12     Graphics card #0 name: AMD Radeon RX 7600 XT     Graphics card #0 vendor: Advanced Micro Devices, Inc. (0x1002)     Graphics card #0 VRAM (MB): 4095.00     Graphics card #0 deviceId: 0x7480     Graphics card #0 versionInfo: DriverVersion=32.0.12033.1030     Memory slot #0 capacity (MB): 8192.00     Memory slot #0 clockSpeed (GHz): 2.13     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 8192.00     Memory slot #1 clockSpeed (GHz): 2.13     Memory slot #1 type: DDR4     Virtual memory max (MB): 34685.17     Virtual memory used (MB): 21369.65     Swap memory total (MB): 18432.00     Swap memory used (MB): 178.00     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx4096m -Xms256m     Launched Version: forge-47.3.0     Backend library: LWJGL version 3.3.1 build 7     Backend API: AMD Radeon RX 7600 XT GL version 4.6.0 Core Profile Context 24.12.1.241127, ATI Technologies Inc.     Window size: 1920x1080     GL Caps: Using framebuffer using OpenGL 3.2     GL debug messages:      Using VBOs: Yes     Is Modded: Definitely; Client brand changed to 'forge'; Server brand changed to 'forge'     Type: Integrated Server (map_client.txt)     Graphics mode: fancy     Resource Packs: vanilla, tacz_resources, mod_resources, Moonlight Mods Dynamic Assets, file/Faithfulx32+Addon_Emissive_Ores_1.20+.zip, file/Faithful 64x - Beta 9.zip, file/Lower Fire.zip (incompatible)     Current Language: en_us     CPU: 12x 11th Gen Intel(R) Core(TM) i5-11400F @ 2.60GHz     Server Running: true     Player Count: 1 / 8; [ServerPlayer['mcdel02'/97, l='ServerWorld minecraft:overworld Survie Surnaturel', x=-6686.64, y=136.06, z=-6647.08]]     Data Packs: vanilla, mod:inventorysorter (incompatible), mod:betterdungeons, mod:kuma_api (incompatible), mod:supermartijn642configlib (incompatible), mod:cucumber, mod:trashslot, mod:jei, mod:nameless_trinkets (incompatible), mod:tacz, mod:incontrol, mod:sophisticatedcore (incompatible), mod:ironjetpacks, mod:yungsapi, mod:mixinextras (incompatible), mod:sophisticatedbackpacks (incompatible), mod:balm, mod:mininggadgets (incompatible), mod:betterfortresses, mod:forge, mod:durabilitytooltip (incompatible), mod:dungeons_arise, mod:repurposed_structures, mod:terrablender, mod:mousetweaks, mod:biomesoplenty (incompatible), mod:ironfurnaces, mod:mysticrift_pharaohs_legacy, mod:spectrelib (incompatible), mod:yungsbridges, mod:lionfishapi (incompatible), mod:cataclysm (incompatible), mod:curios (incompatible), mod:flywheel, mod:create, mod:xaerominimap (incompatible), mod:mes (incompatible), mod:advancednetherite, mod:securitycraft, mod:yungsextras, mod:betterstrongholds, mod:mvs (incompatible), mod:betterendisland, mod:mns (incompatible), mod:t_and_t (incompatible), mod:fastleafdecay, mod:expandability (incompatible), mod:veinmining (incompatible), mod:tacz_c, mod:cristellib (incompatible), tacz_resources, mod:integrated_api, mod:adorabuild_structures (incompatible), mod:additionalstructures, mod:idas, mod:ati_structuresv, mod:moonlight (incompatible), mod:mixinsquared (incompatible), mod:explorify (incompatible), mod:imst_n (incompatible), mod:zeta (incompatible), mod:quark (incompatible), mod:supplementaries, mod:ironcoals (incompatible), Supplementaries Generated Pack, mod:dynamiclights, mod:cloth_config (incompatible), mod:uncraftingtable76 (incompatible), mod:mcpitanlib (incompatible), mod:architectury (incompatible), mod:torchmaster, mod:stalwart_dungeons, mod:ancient_debris_in_overworld, mod:mysticriftsmelt_ancient_debris, mod:mekanism, mod:mekanismgenerators, mod:densemekanism, mod:geckolib, mod:man, mod:waystones, T&T Waystone Patch Pack (incompatible), mod:immersive_portals (incompatible), mod:the_anomaly     Enabled Feature Flags: minecraft:vanilla     World Generation: Stable     ModLauncher: 10.0.9+10.0.9+main.dcd20f30     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:          mixin-0.8.5.jar mixin PLUGINSERVICE          eventbus-6.0.5.jar eventbus PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar slf4jfixer PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE      FML Language Providers:          [email protected]         lowcodefml@null         javafml@null     Mod List:          inventorysorter-1.20.1-23.0.8.jar                 |Simple Inventory Sorter       |inventorysorter               |23.0.8              |DONE      |Manifest: NOSIGNATURE         YungsBetterDungeons-1.20-Forge-4.0.4.jar          |YUNG's Better Dungeons        |betterdungeons                |1.20-Forge-4.0.4    |DONE      |Manifest: NOSIGNATURE         kuma-api-forge-20.1.9-SNAPSHOT.jar                |KumaAPI                       |kuma_api                      |20.1.9-SNAPSHOT     |DONE      |Manifest: NOSIGNATURE         supermartijn642configlib-1.1.8-forge-mc1.20.jar   |SuperMartijn642's Config Libra|supermartijn642configlib      |1.1.8               |DONE      |Manifest: NOSIGNATURE         Cucumber-1.20.1-7.0.13.jar                        |Cucumber Library              |cucumber                      |7.0.13              |DONE      |Manifest: NOSIGNATURE         trashslot-forge-1.20-15.1.1.jar                   |TrashSlot                     |trashslot                     |15.1.1              |DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.20.1-4.7.jar                     |GeckoLib 4                    |geckolib                      |4.7                 |DONE      |Manifest: NOSIGNATURE         jei-1.20.1-forge-15.20.0.106.jar                  |Just Enough Items             |jei                           |15.20.0.106         |DONE      |Manifest: NOSIGNATURE         Nameless Trinkets-1.20.1-1.8.4.jar                |Nameless Trinkets             |nameless_trinkets             |1.20.1-1.7.8        |DONE      |Manifest: NOSIGNATURE         tacz-1.20.1-1.1.4-hotfix-all.jar                  |Timeless & Classics Guns: Zero|tacz                          |1.1.4-hotfix        |DONE      |Manifest: NOSIGNATURE         incontrol-1.20-9.2.11.jar                         |InControl                     |incontrol                     |1.20-9.2.11         |DONE      |Manifest: NOSIGNATURE         dynamiclights-v1.8.2-mc1.17x-1.20x-mod.jar        |Dynamic Lights                |dynamiclights                 |1.8.2+mod           |DONE      |Manifest: NOSIGNATURE         stalwart-dungeons-1.20.1-1.2.8.jar                |Stalwart Dungeons             |stalwart_dungeons             |1.2.8               |DONE      |Manifest: NOSIGNATURE         sophisticatedcore-1.20.1-1.2.20.894.jar           |Sophisticated Core            |sophisticatedcore             |1.2.20.894          |DONE      |Manifest: NOSIGNATURE         IronJetpacks-1.20.1-7.0.8.jar                     |Iron Jetpacks                 |ironjetpacks                  |7.0.8               |DONE      |Manifest: NOSIGNATURE         waystones-forge-1.20.1-14.1.10.jar                |Waystones                     |waystones                     |14.1.10             |DONE      |Manifest: NOSIGNATURE         integrated_api-1.5.2+1.20.1-forge.jar             |Integrated API                |integrated_api                |1.5.2+1.20.1-forge  |DONE      |Manifest: NOSIGNATURE         YungsApi-1.20-Forge-4.0.6.jar                     |YUNG's API                    |yungsapi                      |1.20-Forge-4.0.6    |DONE      |Manifest: NOSIGNATURE         mixinextras-forge-0.2.0-beta.7.jar                |MixinExtras                   |mixinextras                   |0.2.0-beta.7        |DONE      |Manifest: NOSIGNATURE         adorabuild-structures-2.8.0-forge-1.20.1.jar      |AdoraBuild: Structures        |adorabuild_structures         |2.8.0               |DONE      |Manifest: NOSIGNATURE         sophisticatedbackpacks-1.20.1-3.23.6.1210.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |3.23.6.1210         |DONE      |Manifest: NOSIGNATURE         AdditionalStructures-1.20.x-(v.4.2.2).jar         |Additional Structures         |additionalstructures          |4.2.2               |DONE      |Manifest: NOSIGNATURE         balm-forge-1.20.1-7.3.18-all.jar                  |Balm                          |balm                          |7.3.18              |DONE      |Manifest: NOSIGNATURE         mininggadgets-1.15.6.jar                          |Mining Gadgets                |mininggadgets                 |1.15.6              |DONE      |Manifest: NOSIGNATURE         immersive-portals-3.0.0-mc1.20.1-forge.jar        |Immersive Portals             |immersive_portals             |3.0.0               |DONE      |Manifest: NOSIGNATURE         YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar  |YUNG's Better Nether Fortresse|betterfortresses              |1.20-Forge-2.0.6    |DONE      |Manifest: NOSIGNATURE         cloth-config-11.1.136-forge.jar                   |Cloth Config v10 API          |cloth_config                  |11.1.136            |DONE      |Manifest: NOSIGNATURE         forge-1.20.1-47.3.0-universal.jar                 |Forge                         |forge                         |47.3.0              |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         durabilitytooltip-1.1.5-forge-mc1.20.jar          |Durability Tooltip            |durabilitytooltip             |1.1.5               |DONE      |Manifest: NOSIGNATURE         idas_forge-1.10.3+1.20.1.jar                      |Integrated Dungeons and Struct|idas                          |1.10.3+1.20.1       |DONE      |Manifest: NOSIGNATURE         DungeonsArise-1.20.x-2.1.58-release.jar           |When Dungeons Arise           |dungeons_arise                |2.1.58-1.20.x       |DONE      |Manifest: NOSIGNATURE         densemekanism-1.20.1-1.1.0.jar                    |Dense Mekanism                |densemekanism                 |1.1.0               |DONE      |Manifest: NOSIGNATURE         client-1.20.1-20230612.114412-srg.jar             |Minecraft                     |minecraft                     |1.20.1              |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         Pati_structures_1.3.0_forge_1.20.jar              |ATi StructuresV               |ati_structuresv               |1.0.0               |DONE      |Manifest: NOSIGNATURE         AncientDebrisIO-1.20.1-3.jar                      |Ancient Debris In Overworld   |ancient_debris_in_overworld   |3.0                 |DONE      |Manifest: NOSIGNATURE         torchmaster-20.1.9.jar                            |Torchmaster                   |torchmaster                   |20.1.9              |DONE      |Manifest: NOSIGNATURE         repurposed_structures-7.1.15+1.20.1-forge.jar     |Repurposed Structures         |repurposed_structures         |7.1.15+1.20.1-forge |DONE      |Manifest: NOSIGNATURE         TerraBlender-forge-1.20.1-3.0.1.7.jar             |TerraBlender                  |terrablender                  |3.0.1.7             |DONE      |Manifest: NOSIGNATURE         moonlight-1.20-2.13.70-forge.jar                  |Moonlight Library             |moonlight                     |1.20-2.13.70        |DONE      |Manifest: NOSIGNATURE         MouseTweaks-forge-mc1.20.1-2.25.1.jar             |Mouse Tweaks                  |mousetweaks                   |2.25.1              |DONE      |Manifest: NOSIGNATURE         BiomesOPlenty-1.20.1-18.0.0.592.jar               |Biomes O' Plenty              |biomesoplenty                 |18.0.0.592          |DONE      |Manifest: NOSIGNATURE         mixinsquared-forge-0.1.1.jar                      |MixinSquared                  |mixinsquared                  |0.1.1               |DONE      |Manifest: NOSIGNATURE         Explorify v1.6.2 f10-48.jar                       |Explorify                     |explorify                     |1.6.2               |DONE      |Manifest: NOSIGNATURE         ironfurnaces-1.20.1-4.1.6.jar                     |Iron Furnaces                 |ironfurnaces                  |4.1.6               |DONE      |Manifest: NOSIGNATURE         mysticrift_pharaohs_legacy-13.19.28-forge-1.20.1.j|mysticrift_pharaohs_legacy    |mysticrift_pharaohs_legacy    |13.19.28            |DONE      |Manifest: NOSIGNATURE         spectrelib-forge-0.13.15+1.20.1.jar               |SpectreLib                    |spectrelib                    |0.13.15+1.20.1      |DONE      |Manifest: NOSIGNATURE         YungsBridges-1.20-Forge-4.0.3.jar                 |YUNG's Bridges                |yungsbridges                  |1.20-Forge-4.0.3    |DONE      |Manifest: NOSIGNATURE         mysticriftsmelt_ancient_debris-1.2.2-forge-1.20.1.|MysticRift:Smelt Ancient Debri|mysticriftsmelt_ancient_debris|1.2.2               |DONE      |Manifest: NOSIGNATURE         lionfishapi-2.4-Fix.jar                           |LionfishAPI                   |lionfishapi                   |2.4-Fix             |DONE      |Manifest: NOSIGNATURE         imst_n-1.1.0.jar                                  |Immersive Structures:Nether ed|imst_n                        |1.1.0               |DONE      |Manifest: NOSIGNATURE         L_Enders_Cataclysm-2.56- 1.20.1.jar               |Cataclysm Mod                 |cataclysm                     |2.56                |DONE      |Manifest: NOSIGNATURE         curios-forge-5.12.1+1.20.1.jar                    |Curios API                    |curios                        |5.12.1+1.20.1       |DONE      |Manifest: NOSIGNATURE         Mekanism-1.20.1-10.4.14.71.jar                    |Mekanism                      |mekanism                      |10.4.14             |DONE      |Manifest: NOSIGNATURE         MekanismGenerators-1.20.1-10.4.14.71.jar          |Mekanism: Generators          |mekanismgenerators            |10.4.14             |DONE      |Manifest: NOSIGNATURE         flywheel-forge-1.20.1-0.6.11-13.jar               |Flywheel                      |flywheel                      |0.6.11-13           |DONE      |Manifest: NOSIGNATURE         create-1.20.1-0.5.1.j.jar                         |Create                        |create                        |0.5.1.j             |DONE      |Manifest: NOSIGNATURE         Xaeros_Minimap_25.1.0_Forge_1.20.jar              |Xaero's Minimap               |xaerominimap                  |25.1.0              |DONE      |Manifest: NOSIGNATURE         mes-1.3.4-1.20-forge.jar                          |Moog's End Structures         |mes                           |1.3.4-1.20-forge    |DONE      |Manifest: NOSIGNATURE         The-Man-From-The-Fog-1.4-1.20.1.jar               |The Man From The Fog          |man                           |1.4                 |DONE      |Manifest: NOSIGNATURE         advancednetherite-forge-2.1.3-1.20.1.jar          |Advanced Netherite            |advancednetherite             |2.1.3               |DONE      |Manifest: NOSIGNATURE         [1.20.1] SecurityCraft v1.9.12.jar                |SecurityCraft                 |securitycraft                 |1.9.12              |DONE      |Manifest: NOSIGNATURE         Zeta-1.0-24.jar                                   |Zeta                          |zeta                          |1.0-24              |DONE      |Manifest: NOSIGNATURE         Quark-4.0-460.jar                                 |Quark                         |quark                         |4.0-460             |DONE      |Manifest: NOSIGNATURE         supplementaries-1.20-3.1.18.jar                   |Supplementaries               |supplementaries               |1.20-3.1.18         |DONE      |Manifest: NOSIGNATURE         YungsExtras-1.20-Forge-4.0.3.jar                  |YUNG's Extras                 |yungsextras                   |1.20-Forge-4.0.3    |DONE      |Manifest: NOSIGNATURE         YungsBetterStrongholds-1.20-Forge-4.0.3.jar       |YUNG's Better Strongholds     |betterstrongholds             |1.20-Forge-4.0.3    |DONE      |Manifest: NOSIGNATURE         mvs-4.1.4-1.20-forge.jar                          |Moog's Voyager Structures     |mvs                           |4.1.4-1.20-forge    |DONE      |Manifest: NOSIGNATURE         YungsBetterEndIsland-1.20-Forge-2.0.6.jar         |YUNG's Better End Island      |betterendisland               |1.20-Forge-2.0.6    |DONE      |Manifest: NOSIGNATURE         Anomaly-1.1.5-FullShaderSupport.jar               |The Anomaly                   |the_anomaly                   |1.1.5               |DONE      |Manifest: NOSIGNATURE         mns-1.0.3-1.20-forge.jar                          |Moog's Nether Structures      |mns                           |1.0.3-1.20-forge    |DONE      |Manifest: NOSIGNATURE         ironcoals-4.1.6.jar                               |Iron Coals                    |ironcoals                     |4.1.6               |DONE      |Manifest: NOSIGNATURE         Towns-and-Towers-1.12-Fabric+Forge.jar            |Towns and Towers              |t_and_t                       |0.0NONE             |DONE      |Manifest: NOSIGNATURE         FastLeafDecay-32.jar                              |Fast Leaf Decay               |fastleafdecay                 |32                  |DONE      |Manifest: NOSIGNATURE         expandability-9.0.4.jar                           |ExpandAbility                 |expandability                 |9.0.4               |DONE      |Manifest: NOSIGNATURE         veinmining-forge-1.5.0+1.20.1.jar                 |Vein Mining                   |veinmining                    |1.5.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         UncraftingTable-forge-1.4.5.jar                   |Uncrafting Table              |uncraftingtable76             |1.4.5               |DONE      |Manifest: NOSIGNATURE         mcpitanlib-3.1.6-1.20.1-forge.jar                 |MCPitanLib                    |mcpitanlib                    |3.1.6-1.20.1-forge  |DONE      |Manifest: NOSIGNATURE         architectury-9.2.14-forge.jar                     |Architectury                  |architectury                  |9.2.14              |DONE      |Manifest: NOSIGNATURE         tacz_c-1.0.1-forge-1.20.1.jar                     |Timeless and Classics Zero: Cr|tacz_c                        |1.0.1               |DONE      |Manifest: NOSIGNATURE         cristellib-1.1.6-forge.jar                        |Cristel Lib                   |cristellib                    |1.1.6               |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: 11929f75-8d0f-4931-89f3-1fefffb58df6     FML: 47.3     Forge: net.minecraftforge:47.3.0     Flywheel Backend: GL33 Instanced Arrays
    • I am trying to make a Create Above and Beyond server. I downloaded their server pack and then downloaded the forge installer from the forge website, installed the server in the same folder, and then made a .bat file "C:\Program Files\Java\jre1.8.0_441\bin\javaw.exe" -Xmx8192M -Xms8192M -jar forge-1.16.5-36.2.20.jar -nogui pause However when I run this nothing happens not even an error message and it does not make a eula either. I feel like I have checked everything the name is the same for the forge file the program files for Java are in the correct place as well.
  • Topics

×
×
  • Create New...

Important Information

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