Jump to content

Opening a GUI when a player spawns


TLHPoE

Recommended Posts

I have this code, which is suppose to open a GUI if the player has -1 as a race.

package net.rpg.handler;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraftforge.event.entity.EntityJoinWorldEvent;
import net.rpg.RPG;
import net.rpg.helper.DataHelper;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;

public class WorldEventHandler {
@SubscribeEvent
public void EntityJoinWorldEvent(EntityJoinWorldEvent event) {
	if(!event.world.isRemote && event.entity instanceof EntityPlayer) {
		EntityPlayer p = (EntityPlayer) event.entity;
		DataHelper.load(event.world);
		if(DataHelper.getRace(p.getDisplayName()) == -1) {
			p.openGui(RPG.instance, 1, p.worldObj, 0, 0, 0);
		}
	}
}
}

 

The problem is, it crashes. I'm guessing it crashes because maybe the player is unready to open GUIs?

 

Crashlog:

 

---- Minecraft Crash Report ----
// Ouch. That hurt 

Time: 1/28/14 11:10 PM
Description: Ticking memory connection

java.lang.NullPointerException: Ticking memory connection
at cpw.mods.fml.common.network.internal.FMLProxyPacket.func_148833_a(FMLProxyPacket.java:81)
at net.minecraft.network.NetworkManager.processReadPackets(NetworkManager.java:200)
at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:165)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:762)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:650)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:120)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:528)
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:787)


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

-- Head --
Stacktrace:
at cpw.mods.fml.common.network.internal.FMLProxyPacket.func_148833_a(FMLProxyPacket.java:81)
at net.minecraft.network.NetworkManager.processReadPackets(NetworkManager.java:200)

-- Ticking connection --
Details:
Connection: net.minecraft.network.NetworkManager@60ad4fe0
Stacktrace:
at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:165)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:762)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:650)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:120)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:528)
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:787)

-- System Details --
Details:
Minecraft Version: 1.7.2
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.7.0_17, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 863061448 bytes (823 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
AABB Pool Size: 401 (22456 bytes; 0 MB) allocated, 364 (20384 bytes; 0 MB) used
IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95
FML: MCP v9.01-pre FML v7.2.109.1019 Minecraft Forge 10.12.0.1019 5 mods loaded, 5 mods active
mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{7.2.109.1019} [Forge Mod Loader] (forgeSrc-1.7.2-10.12.0.1019.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{10.12.0.1019} [Minecraft Forge] (forgeSrc-1.7.2-10.12.0.1019.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
rpg{1.0} [RPG] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
poe{Build 1} [World of Poe] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Profiler Position: N/A (disabled)
Vec3 Pool Size: 141 (7896 bytes; 0 MB) allocated, 104 (5824 bytes; 0 MB) used
Player Count: 1 / 8; [EntityPlayerMP['Player686'/35, l='New World', x=191.50, y=71.00, z=246.50]]
Type: Integrated Server (map_client.txt)
Is Modded: Definitely; Client brand changed to 'fml,forge'

 

 

Is there any other way to open a GUI when a player first joins?

Kain

Link to comment
Share on other sites

Are you sure the crash is caused by trying to open the gui and not by anything going on in your DataHelper class? Try putting println's between each of your lines and see which ones print before the game crashes; that will at least let you know if it truly is the gui that's causing the crash.

EntityPlayer p = (EntityPlayer) event.entity;
System.out.println("DataHelper pre-load");
DataHelper.load(event.world);
System.out.println("DataHelper post-load");
if(DataHelper.getRace(p.getDisplayName()) == -1) {
System.out.println("Opening race gui");
p.openGui(RPG.instance, 1, p.worldObj, 0, 0, 0);
}

Something like that.

 

If it is, you may want to use the player's position when opening the gui and see if that makes any difference:

p.openGui(RPG.instance, 1, p.worldObj, p.posX, p.posY, p.posZ);

Link to comment
Share on other sites

I added prints:

 

package net.rpg.handler;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraftforge.event.entity.EntityJoinWorldEvent;
import net.rpg.RPG;
import net.rpg.helper.DataHelper;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;

public class WorldEventHandler {
@SubscribeEvent
public void EntityJoinWorldEvent(EntityJoinWorldEvent event) {
	if(!event.world.isRemote && event.entity instanceof EntityPlayer) {
		EntityPlayer p = (EntityPlayer) event.entity;
		DataHelper.load(event.world);
		System.out.println("1");
		if(DataHelper.getRace(p.getDisplayName()) == -1) {
			System.out.println("2");
			p.openGui(RPG.instance, 1, p.worldObj, (int) p.posX, (int) p.posY, (int) p.posZ);
			System.out.println("3");
		}
	}
}
}

 

 

It printed all of them. Also, the position has no effect at all.

 

Here's my GuiHandler:

 

package net.rpg.handler;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
import net.rpg.container.ContainerRaceSelection;
import net.rpg.container.ContainerStats;
import net.rpg.gui.GuiRaceSelection;
import net.rpg.gui.GuiStats;
import cpw.mods.fml.common.network.IGuiHandler;

public class GuiHandler implements IGuiHandler {
@Override
public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {
	switch(ID) {
	case (0):
		return new ContainerStats(player);
	case (1):
		return new ContainerRaceSelection(player);
	}
	return null;
}

@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {
	switch(ID) {
	case (0):
		return new GuiStats(player);
	case (1):
		return new GuiRaceSelection(player);
	}
	return null;
}
}

 

 

Here's my container

 

package net.rpg.container;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.Container;

public class ContainerRaceSelection extends Container {
public ContainerRaceSelection(EntityPlayer p) {
}

@Override
public boolean canInteractWith(EntityPlayer p) {
	return true;
}
}

 

 

And here's my gui

 

package net.rpg.gui;

import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ResourceLocation;
import net.rpg.container.ContainerRaceSelection;

import org.lwjgl.opengl.GL11;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

@SideOnly(Side.CLIENT)
public class GuiRaceSelection extends GuiContainer {
private static final ResourceLocation texture = new ResourceLocation("rpg:textures/gui/blank.png");
private EntityPlayer p;

public GuiRaceSelection(EntityPlayer p) {
	super(new ContainerRaceSelection(p));
	this.p = p;
}

@Override
protected void func_146979_b(int p_146979_1_, int p_146979_2_) {
	String s = "Race Selection";
	this.field_146289_q.drawString(s, this.field_146999_f / 2 - this.field_146289_q.getStringWidth(s) / 2, 6, 4210752);
	s = "~~~~~~~~~~~~~~~~~~~~~~~~";
	this.field_146289_q.drawString(s, this.field_146999_f / 2 - this.field_146289_q.getStringWidth(s) / 2, 17, 4210752);
}

@Override
protected void func_146976_a(float p_146976_1_, int p_146976_2_, int p_146976_3_) {
	GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
	this.field_146297_k.getTextureManager().bindTexture(texture);
	int k = (this.field_146294_l - this.field_146999_f) / 2;
	int l = (this.field_146295_m - this.field_147000_g) / 2;
	this.drawTexturedModalRect(k, l, 0, 0, this.field_146999_f, this.field_147000_g);
}
}

 

Kain

Link to comment
Share on other sites

Crashlog:

 

---- Minecraft Crash Report ----
// Ouch. That hurt 

Time: 1/28/14 11:10 PM
Description: Ticking memory connection

java.lang.NullPointerException: Ticking memory connection
at cpw.mods.fml.common.network.internal.FMLProxyPacket.func_148833_a(FMLProxyPacket.java:81)
at net.minecraft.network.NetworkManager.processReadPackets(NetworkManager.java:200)
at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:165)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:762)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:650)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:120)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:528)
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:787)


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

-- Head --
Stacktrace:
at cpw.mods.fml.common.network.internal.FMLProxyPacket.func_148833_a(FMLProxyPacket.java:81)
at net.minecraft.network.NetworkManager.processReadPackets(NetworkManager.java:200)

-- Ticking connection --
Details:
Connection: net.minecraft.network.NetworkManager@60ad4fe0
Stacktrace:
at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:165)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:762)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:650)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:120)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:528)
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:787)

-- System Details --
Details:
Minecraft Version: 1.7.2
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.7.0_17, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 863061448 bytes (823 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
AABB Pool Size: 401 (22456 bytes; 0 MB) allocated, 364 (20384 bytes; 0 MB) used
IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95
FML: MCP v9.01-pre FML v7.2.109.1019 Minecraft Forge 10.12.0.1019 5 mods loaded, 5 mods active
mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{7.2.109.1019} [Forge Mod Loader] (forgeSrc-1.7.2-10.12.0.1019.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{10.12.0.1019} [Minecraft Forge] (forgeSrc-1.7.2-10.12.0.1019.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
rpg{1.0} [RPG] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
poe{Build 1} [World of Poe] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Profiler Position: N/A (disabled)
Vec3 Pool Size: 141 (7896 bytes; 0 MB) allocated, 104 (5824 bytes; 0 MB) used
Player Count: 1 / 8; [EntityPlayerMP['Player686'/35, l='New World', x=191.50, y=71.00, z=246.50]]
Type: Integrated Server (map_client.txt)
Is Modded: Definitely; Client brand changed to 'fml,forge'

 

Kain

Link to comment
Share on other sites

Ok, I've switched events. Now, the event is registered on the server and not the client.

@SubscribeEvent
public void EntitySpawnEvent(LivingSpawnEvent event) {
	if(event.entity instanceof EntityPlayer) {
		System.out.println("1");
		EntityPlayer player = (EntityPlayer) event.entity;
		if(!player.worldObj.isRemote) {
			System.out.println("2");
			if(DataHelper.getRace(player.getDisplayName()) == -1) {
				System.out.println("3");
				player.openGui(RPG.instance, 0, player.worldObj, (int) player.posX, (int) player.posY, (int) player.posZ);
			}
		}
	}
}

 

For some reason, it never detects the player. There was a print behind the first if statement but it was spamming the console.

Kain

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now


  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • so I try to play a mod called claw but I get a crashed apparently no port for display or something and I looked around here trying mess with stuff and add stuff to the JVM args but nothing is working
    • Crash message:  The game crashed whilst unexpected error Error: java.lang.NullPointerException: Cannot invoke "net.minecraft.client.Camera.m_90583_()" because "net.minecraft.client.Minecraft.m_91290_().f_114358_" is null Crash log: ---- Minecraft Crash Report ---- // My bad. Time: 2023-06-02 18:08:46 Description: Unexpected error java.lang.NullPointerException: Cannot invoke "net.minecraft.client.Camera.m_90583_()" because "net.minecraft.client.Minecraft.m_91290_().f_114358_" is null     at com.supermartijn642.core.render.RenderUtils.getCameraPosition(RenderUtils.java:96) ~[supermartijn642corelib-1.1.9a-forge-mc1.19.2.jar%23605!/:?] {re:classloading}     at com.supermartijn642.movingelevators.elevator.ElevatorGroupRenderer.renderBlocks(ElevatorGroupRenderer.java:52) ~[movingelevators-1.4.3-forge-mc1.19.jar%23551!/:?] {re:mixin,re:classloading}     at net.minecraft.client.renderer.LevelRenderer.handler$bph000$renderChunkLayer(LevelRenderer.java:11795) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,xf:fml:twilightforest:render,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,xf:fml:twilightforest:render,pl:mixin:APP:playerAnimator-common.mixins.json:firstPerson.LevelRendererMixin,pl:mixin:APP:supermartijn642corelib.mixins.json:LevelRendererMixin,pl:mixin:APP:cgm.mixins.json:client.LevelRendererMixin,pl:mixin:APP:pehkui.mixins.json:client.compat115plus.WorldRendererMixin,pl:mixin:APP:wands-common.mixins.json:LevelRendererMixin,pl:mixin:APP:firstperson.mixins.json:WorldRendererMixin,pl:mixin:APP:flywheel.mixins.json:FixFabulousDepthMixin,pl:mixin:APP:flywheel.mixins.json:LevelRendererAccessor,pl:mixin:APP:notenoughanimations.mixins.json:LevelRendererMixin,pl:mixin:APP:entityculling.mixins.json:WorldRendererMixin,pl:mixin:APP:citadel.mixins.json:client.LevelRendererMixin,pl:mixin:APP:patchouli_xplat.mixins.json:client.MixinLevelRenderer,pl:mixin:APP:scannable-common.mixins.json:client.LevelRendererMixin,pl:mixin:APP:movingelevators.mixins.json:LevelRendererMixin,pl:mixin:APP:scena.mixins.json:client.LevelRendererBeforeDebugRenderingHookMixin,pl:mixin:APP:flywheel.mixins.json:LevelRendererMixin,pl:mixin:A}     at net.minecraft.client.renderer.LevelRenderer.m_172993_(LevelRenderer.java:2574) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,xf:fml:twilightforest:render,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,xf:fml:twilightforest:render,pl:mixin:APP:playerAnimator-common.mixins.json:firstPerson.LevelRendererMixin,pl:mixin:APP:supermartijn642corelib.mixins.json:LevelRendererMixin,pl:mixin:APP:cgm.mixins.json:client.LevelRendererMixin,pl:mixin:APP:pehkui.mixins.json:client.compat115plus.WorldRendererMixin,pl:mixin:APP:wands-common.mixins.json:LevelRendererMixin,pl:mixin:APP:firstperson.mixins.json:WorldRendererMixin,pl:mixin:APP:flywheel.mixins.json:FixFabulousDepthMixin,pl:mixin:APP:flywheel.mixins.json:LevelRendererAccessor,pl:mixin:APP:notenoughanimations.mixins.json:LevelRendererMixin,pl:mixin:APP:entityculling.mixins.json:WorldRendererMixin,pl:mixin:APP:citadel.mixins.json:client.LevelRendererMixin,pl:mixin:APP:patchouli_xplat.mixins.json:client.MixinLevelRenderer,pl:mixin:APP:scannable-common.mixins.json:client.LevelRendererMixin,pl:mixin:APP:movingelevators.mixins.json:LevelRendererMixin,pl:mixin:APP:scena.mixins.json:client.LevelRendererBeforeDebugRenderingHookMixin,pl:mixin:APP:flywheel.mixins.json:LevelRendererMixin,pl:mixin:A}     at net.optifine.shaders.ShadersRender.renderShadowMap(ShadersRender.java:454) ~[OptiFine_1.19.2_HD_U_I1_MOD.jar%23691!/:?] {re:classloading}     at net.optifine.shaders.Shaders.beginRender(Shaders.java:4995) ~[OptiFine_1.19.2_HD_U_I1_MOD.jar%23691!/:?] {re:classloading}     at net.minecraft.client.renderer.GameRenderer.m_109089_(GameRenderer.java:1505) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,pl:mixin:APP:pehkui.mixins.json:client.compat115plus.compat1192minus.GameRendererMixin,pl:mixin:APP:do-a-barrel-roll.mixins.json:GameRendererMixin,pl:mixin:APP:fairylights.mixins.json:GameRendererMixin,pl:mixin:APP:tombstone.mixins.json:GameRendererMixin,pl:mixin:APP:cgm.mixins.json:client.GameRendererMixin,pl:mixin:APP:pehkui.mixins.json:client.compat115plus.GameRendererMixin,pl:mixin:A}     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:1191) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,pl:mixin:APP:pehkui.mixins.json:client.compat115plus.compat1192minus.GameRendererMixin,pl:mixin:APP:do-a-barrel-roll.mixins.json:GameRendererMixin,pl:mixin:APP:fairylights.mixins.json:GameRendererMixin,pl:mixin:APP:tombstone.mixins.json:GameRendererMixin,pl:mixin:APP:cgm.mixins.json:client.GameRendererMixin,pl:mixin:APP:pehkui.mixins.json:client.compat115plus.GameRendererMixin,pl:mixin:A}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1115) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:itemphysic.mixins.json:MinecraftMixin,pl:mixin:APP:cgm.mixins.json:client.MinecraftMixin,pl:mixin:APP:bettercombat.mixins.json:client.MinecraftClientAccessor,pl:mixin:APP:bettercombat.mixins.json:client.MinecraftClientInject,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:betterthirdperson.mixins.json:MinecraftMixin,pl:mixin:APP:mixins.ipnext.json:MixinMinecraftClient,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:700) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:itemphysic.mixins.json:MinecraftMixin,pl:mixin:APP:cgm.mixins.json:client.MinecraftMixin,pl:mixin:APP:bettercombat.mixins.json:client.MinecraftClientAccessor,pl:mixin:APP:bettercombat.mixins.json:client.MinecraftClientInject,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:betterthirdperson.mixins.json:MinecraftMixin,pl:mixin:APP:mixins.ipnext.json:MixinMinecraftClient,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.m_239872_(Main.java:212) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:51) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,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.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:27) ~[fmlloader-1.19.2-43.2.11.jar%23101!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2388!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2388!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2388!/:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2388!/:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2388!/:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2388!/:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2388!/:?] {}     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 Stacktrace:     at com.supermartijn642.core.render.RenderUtils.getCameraPosition(RenderUtils.java:96) ~[supermartijn642corelib-1.1.9a-forge-mc1.19.2.jar%23605!/:?] {re:classloading}     at com.supermartijn642.movingelevators.elevator.ElevatorGroupRenderer.renderBlocks(ElevatorGroupRenderer.java:52) ~[movingelevators-1.4.3-forge-mc1.19.jar%23551!/:?] {re:mixin,re:classloading}     at net.minecraft.client.renderer.LevelRenderer.handler$bph000$renderChunkLayer(LevelRenderer.java:11795) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,xf:fml:twilightforest:render,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,xf:fml:twilightforest:render,pl:mixin:APP:playerAnimator-common.mixins.json:firstPerson.LevelRendererMixin,pl:mixin:APP:supermartijn642corelib.mixins.json:LevelRendererMixin,pl:mixin:APP:cgm.mixins.json:client.LevelRendererMixin,pl:mixin:APP:pehkui.mixins.json:client.compat115plus.WorldRendererMixin,pl:mixin:APP:wands-common.mixins.json:LevelRendererMixin,pl:mixin:APP:firstperson.mixins.json:WorldRendererMixin,pl:mixin:APP:flywheel.mixins.json:FixFabulousDepthMixin,pl:mixin:APP:flywheel.mixins.json:LevelRendererAccessor,pl:mixin:APP:notenoughanimations.mixins.json:LevelRendererMixin,pl:mixin:APP:entityculling.mixins.json:WorldRendererMixin,pl:mixin:APP:citadel.mixins.json:client.LevelRendererMixin,pl:mixin:APP:patchouli_xplat.mixins.json:client.MixinLevelRenderer,pl:mixin:APP:scannable-common.mixins.json:client.LevelRendererMixin,pl:mixin:APP:movingelevators.mixins.json:LevelRendererMixin,pl:mixin:APP:scena.mixins.json:client.LevelRendererBeforeDebugRenderingHookMixin,pl:mixin:APP:flywheel.mixins.json:LevelRendererMixin,pl:mixin:A}     at net.minecraft.client.renderer.LevelRenderer.m_172993_(LevelRenderer.java:2574) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,xf:fml:twilightforest:render,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,xf:fml:twilightforest:render,pl:mixin:APP:playerAnimator-common.mixins.json:firstPerson.LevelRendererMixin,pl:mixin:APP:supermartijn642corelib.mixins.json:LevelRendererMixin,pl:mixin:APP:cgm.mixins.json:client.LevelRendererMixin,pl:mixin:APP:pehkui.mixins.json:client.compat115plus.WorldRendererMixin,pl:mixin:APP:wands-common.mixins.json:LevelRendererMixin,pl:mixin:APP:firstperson.mixins.json:WorldRendererMixin,pl:mixin:APP:flywheel.mixins.json:FixFabulousDepthMixin,pl:mixin:APP:flywheel.mixins.json:LevelRendererAccessor,pl:mixin:APP:notenoughanimations.mixins.json:LevelRendererMixin,pl:mixin:APP:entityculling.mixins.json:WorldRendererMixin,pl:mixin:APP:citadel.mixins.json:client.LevelRendererMixin,pl:mixin:APP:patchouli_xplat.mixins.json:client.MixinLevelRenderer,pl:mixin:APP:scannable-common.mixins.json:client.LevelRendererMixin,pl:mixin:APP:movingelevators.mixins.json:LevelRendererMixin,pl:mixin:APP:scena.mixins.json:client.LevelRendererBeforeDebugRenderingHookMixin,pl:mixin:APP:flywheel.mixins.json:LevelRendererMixin,pl:mixin:A}     at net.optifine.shaders.ShadersRender.renderShadowMap(ShadersRender.java:454) ~[OptiFine_1.19.2_HD_U_I1_MOD.jar%23691!/:?] {re:classloading}     at net.optifine.shaders.Shaders.beginRender(Shaders.java:4995) ~[OptiFine_1.19.2_HD_U_I1_MOD.jar%23691!/:?] {re:classloading}     at net.minecraft.client.renderer.GameRenderer.m_109089_(GameRenderer.java:1505) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,pl:mixin:APP:pehkui.mixins.json:client.compat115plus.compat1192minus.GameRendererMixin,pl:mixin:APP:do-a-barrel-roll.mixins.json:GameRendererMixin,pl:mixin:APP:fairylights.mixins.json:GameRendererMixin,pl:mixin:APP:tombstone.mixins.json:GameRendererMixin,pl:mixin:APP:cgm.mixins.json:client.GameRendererMixin,pl:mixin:APP:pehkui.mixins.json:client.compat115plus.GameRendererMixin,pl:mixin:A} -- Affected level -- Details:     All players: 1 total; [LocalPlayer['kingnetkobra'/1441, l='ClientLevel', x=-1215.29, y=84.62, z=1681.97]]     Chunk stats: 2209, 1537     Level dimension: minecraft:overworld     Level spawn location: World: (96,63,0), Section: (at 0,15,0 in 6,3,0; chunk contains blocks 96,-64,0 to 111,319,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)     Level time: 421906 game time, 3451 day time     Server brand: forge     Server type: Integrated singleplayer server Stacktrace:     at net.minecraft.client.multiplayer.ClientLevel.m_6026_(ClientLevel.java:581) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:pehkui.mixins.json:client.ClientWorldMixin,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:entityculling.mixins.json:ClientWorldMixin,pl:mixin:APP:citadel.mixins.json:client.ClientLevelMixin,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:A}     at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2280) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:itemphysic.mixins.json:MinecraftMixin,pl:mixin:APP:cgm.mixins.json:client.MinecraftMixin,pl:mixin:APP:bettercombat.mixins.json:client.MinecraftClientAccessor,pl:mixin:APP:bettercombat.mixins.json:client.MinecraftClientInject,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:betterthirdperson.mixins.json:MinecraftMixin,pl:mixin:APP:mixins.ipnext.json:MixinMinecraftClient,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:722) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:itemphysic.mixins.json:MinecraftMixin,pl:mixin:APP:cgm.mixins.json:client.MinecraftMixin,pl:mixin:APP:bettercombat.mixins.json:client.MinecraftClientAccessor,pl:mixin:APP:bettercombat.mixins.json:client.MinecraftClientInject,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:betterthirdperson.mixins.json:MinecraftMixin,pl:mixin:APP:mixins.ipnext.json:MixinMinecraftClient,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:iceberg.mixins.json:MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.m_239872_(Main.java:212) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:51) ~[client-1.19.2-20220805.130853-srg.jar%23643!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,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.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:27) ~[fmlloader-1.19.2-43.2.11.jar%23101!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2388!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2388!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2388!/:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2388!/:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2388!/:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2388!/:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2388!/:?] {}     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: Default, Mod Resources, simplehats_hatdl.zip -- System Details -- Details:     Minecraft Version: 1.19.2     Minecraft Version ID: 1.19.2     Operating System: Windows 10 (amd64) version 10.0     Java Version: 17.0.3, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 3869862808 bytes (3690 MiB) / 10083106816 bytes (9616 MiB) up to 12884901888 bytes (12288 MiB)     CPUs: 16     Processor Vendor: GenuineIntel     Processor Name: Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz     Identifier: Intel64 Family 6 Model 158 Stepping 13     Microarchitecture: Coffee Lake     Frequency (GHz): 3.60     Number of physical packages: 1     Number of physical CPUs: 8     Number of logical CPUs: 16     Graphics card #0 name: NVIDIA GeForce RTX 2080 SUPER     Graphics card #0 vendor: NVIDIA (0x10de)     Graphics card #0 VRAM (MB): 4095.00     Graphics card #0 deviceId: 0x1e81     Graphics card #0 versionInfo: DriverVersion=31.0.15.3129     Memory slot #0 capacity (MB): 16384.00     Memory slot #0 clockSpeed (GHz): 3.20     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 16384.00     Memory slot #1 clockSpeed (GHz): 3.20     Memory slot #1 type: DDR4     Virtual memory max (MB): 40688.11     Virtual memory used (MB): 36377.66     Swap memory total (MB): 7988.93     Swap memory used (MB): 1884.74     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx12288m -Xms256m     Launched Version: forge-43.2.11     Backend library: LWJGL version 3.3.1 build 7     Backend API: NVIDIA GeForce RTX 2080 SUPER/PCIe/SSE2 GL version 3.2.0 NVIDIA 531.29, NVIDIA Corporation     Window size: 1024x768     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, mod_resources, resources/simplehats_hatdl.zip     Current Language: English (US)     CPU: 16x Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz     Server Running: true     Player Count: 1 / 8; [ServerPlayer['kingnetkobra'/1441, l='ServerLevel[Moj Svet]', x=-1215.29, y=84.62, z=1681.97]]     Data Packs: vanilla, mod:supermartijn642configlib (incompatible), mod:quarryplus, mod:oldguns (incompatible), mod:scena (incompatible), mod:playeranimator (incompatible), mod:prefab, mod:mcwwindows, mod:musicplayer, mod:modnametooltip (incompatible), mod:looot (incompatible), mod:forgeendertech, mod:ctm (incompatible), mod:reauth (incompatible), mod:additionalguns, mod:shrink (incompatible), mod:vinery, mod:chancecubes, mod:pickupnotifier (incompatible), mod:balm (incompatible), mod:immersive_armors (incompatible), mod:jeresources, mod:cloth_config (incompatible), mod:shetiphiancore (incompatible), mod:rpgsmw, mod:advancementplaques (incompatible), mod:repurposed_structures, mod:toolstats (incompatible), mod:do_a_barrel_roll (incompatible), mod:structurecompass, mod:mcwtrpdoors, mod:transparent (incompatible), mod:supermartijn642corelib (incompatible), mod:fairylights (incompatible), mod:curios, mod:alexs_armoury, mod:angelring (incompatible), mod:tombstone, mod:dragonenchants (incompatible), mod:constructionwand, mod:mcwroofs, mod:cfm (incompatible), mod:mcwfurnitures, mod:itemphysic (incompatible), mod:fallingtree, mod:geckolib3 (incompatible), mod:darkpaintings (incompatible), mod:mcwlights, mod:elytraslot, mod:clienttweaks (incompatible), mod:stylisheffects (incompatible), mod:blockswapper (incompatible), mod:nameless_trinkets (incompatible), mod:visualworkbench (incompatible), mod:act (incompatible), mod:caelus (incompatible), mod:bdlib, mod:hat (incompatible), mod:adhooks, mod:structuresplus, mod:bagofholding (incompatible), mod:medieval_paintings, mod:imst, mod:medieval_craft_weapons, mod:lucky (incompatible), mod:terrablender, mod:mousetweaks, mod:bettercombat (incompatible), mod:campfiresleeper, mod:firstpersonmod (incompatible), mod:spectrelib (incompatible), mod:domum_ornamentum, mod:viescraftmachines (incompatible), mod:paintings (incompatible), mod:notenoughanimations (incompatible), mod:luckytntmod, mod:marbleds_arsenal, mod:polymorph, mod:justenoughprofessions, mod:instantblocks (incompatible), mod:sit, mod:entityculling, mod:backpacked (incompatible), mod:cgm (incompatible), mod:medieval_deco, mod:effective_fg (incompatible), mod:structurize, mod:fps (incompatible), mod:fastfurnace (incompatible), mod:damagetilt (incompatible), mod:puzzleslib (incompatible), mod:grapplemod (incompatible), mod:extendedcrafting (incompatible), mod:additionalbanners (incompatible), mod:naturalist, mod:doggytalents (incompatible), mod:dynamiclights (incompatible), mod:sophisticatedcore (incompatible), mod:horseexpert (incompatible), mod:glassential (incompatible), mod:medieval_craft_structures, mod:scorchedguns, mod:controlling (incompatible), mod:prism, mod:placebo (incompatible), mod:citadel, mod:alexsmobs (incompatible), mod:gunblades (incompatible), mod:mixinextras (incompatible), mod:waystone_towers, mod:bookshelf (incompatible), mod:sophisticatedbackpacks (incompatible), mod:uteamcore, mod:twigs (incompatible), mod:buildinggadgets (incompatible), mod:mcwdoors, mod:jeed (incompatible), mod:sworddisplay, mod:additionalstructures, mod:fpsreducer, mod:flying_boots, mod:knight_quest, mod:dummmmmmy (incompatible), mod:signtools, mod:twilightforest (incompatible), mod:mcwbridges, mod:mageflame, mod:gottschcore (incompatible), mod:usefulbackpacks, mod:ambientsounds (incompatible), mod:mcwfences, mod:mining_dimension (incompatible), mod:simplylight (incompatible), mod:medievalmusic (incompatible), mod:patchouli (incompatible), mod:blockui, mod:multipiston, mod:luckytntlib, mod:collective, mod:simplehats (incompatible), mod:oreexcavation (incompatible), mod:tiab (incompatible), mod:betterthirdperson, mod:lostcities (incompatible), mod:elevatorid (incompatible), mod:gobber2, mod:usefulhats, mod:apexguns, mod:buildersaddition (incompatible), mod:eatinganimation (incompatible), mod:forge, mod:silentgear, mod:commonality, mod:appleskin, mod:flatcoloredblocks (incompatible), mod:architectury (incompatible), mod:wands, mod:jecalculation, mod:jei (incompatible), mod:framework (incompatible), mod:smallships (incompatible), mod:t_and_t, mod:gamemenumodoption, mod:dreadsteel (incompatible), mod:betteradvancements (incompatible), mod:portablehole (incompatible), mod:cucumber (incompatible), mod:platforms (incompatible), mod:scannable (incompatible), mod:moguns (incompatible), mod:waystones (incompatible), mod:buildersdelight (incompatible), mod:ageofweapons, mod:mcwpaintings, mod:journeymap (incompatible), mod:alternative_angel_ring, mod:artifacts, mod:configured (incompatible), mod:decorative_blocks (incompatible), mod:magistuarmory (incompatible), mod:betteranimalsplus (incompatible), mod:mcjtylib (incompatible), mod:notenoughwands (incompatible), mod:waveycapes (incompatible), mod:dbm, mod:terralith, mod:mininggadgets (incompatible), mod:skinlayers3d (incompatible), mod:fasterladderclimbing (incompatible), mod:craftingtweaks (incompatible), mod:simplyswords (incompatible), mod:enchdesc (incompatible), mod:moonlight (incompatible), mod:silentlib (incompatible), mod:jade (incompatible), mod:creativecore (incompatible), mod:days_in_the_middle_ages, mod:similsaxtranstructors, mod:movingelevators (incompatible), mod:weaponmaster (incompatible), mod:iceberg (incompatible), mod:reliquary (incompatible), mod:legendarytooltips (incompatible), mod:creative_items (incompatible), mod:storagedrawers (incompatible), mod:immersive_paintings (incompatible), mod:statues, mod:minecolonies (incompatible), mod:mvs, mod:ferritecore (incompatible), mod:apexcore, mod:fantasyfurniture, mod:extendedcreativeinventory, mod:silentgems (incompatible), mod:craftablehorsearmour (incompatible), mod:expandability (incompatible), mod:cardboardbox (incompatible), mod:overloadedarmorbar (incompatible), mod:chiselsandbits (incompatible), mod:presencefootsteps, builtin/mod_support/ctm, t_and_t_waystones_patch_1.19.2.zip, mod:guardvillagers (incompatible), mod:buildpaste, mod:morevillagers, mod:worldedit (incompatible), mod:mcwpaths, mod:upgradednetherite_items (incompatible), mod:upgradednetherite (incompatible), mod:upgradednetherite_ultimate (incompatible), mod:upgradedcore (incompatible), mod:upgradednetherite_creative (incompatible), mod:ironchest (incompatible), mod:enderitemod (incompatible), mod:betterdungeons, mod:yungsapi, mod:yungsbridges, mod:yungsextras, mod:adchimneys, mod:bettermineshafts, mod:catalogue (incompatible), mod:flywheel (incompatible), mod:betterwitchhuts, mod:betteroceanmonuments, mod:dustrial_decor (incompatible), mod:betterstrongholds, mod:betterdeserttemples, mod:engineersdecor, mod:minecraftcapes (incompatible), mod:kotlinforforge (incompatible), mod:inventoryprofilesnext (incompatible), mod:libipn (incompatible), mod:pehkui (incompatible), mod:pehkui_resizer, mod:doapi (incompatible)     World Generation: Stable     OptiFine Version: OptiFine_1.19.2_HD_U_I1     OptiFine Build: 20221213-150857     Render Distance Chunks: 20     Mipmaps: 4     Anisotropic Filtering: 1     Antialiasing: 0     Multitexture: false     Shaders: ComplementaryReimagined_r2.0.3.zip     OpenGlVersion: 3.2.0 NVIDIA 531.29     OpenGlRenderer: NVIDIA GeForce RTX 2080 SUPER/PCIe/SSE2     OpenGlVendor: NVIDIA Corporation     CpuCount: 16     ModLauncher: 10.0.8+10.0.8+main.0ef7e830     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:          mixin-0.8.5.jar mixin PLUGINSERVICE          eventbus-6.0.3.jar eventbus PLUGINSERVICE          fmlloader-1.19.2-43.2.11.jar slf4jfixer PLUGINSERVICE          fmlloader-1.19.2-43.2.11.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.19.2-43.2.11.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.19.2-43.2.11.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.19.2-43.2.11.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.8.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.8.jar OptiFine TRANSFORMATIONSERVICE          modlauncher-10.0.8.jar fml TRANSFORMATIONSERVICE      FML Language Providers:          minecraft@1.0         javafml@null         kotlinforforge@3.12.0         lowcodefml@null         kotori_scala@2.13.10-build-10     Mod List:          YungsBetterDungeons-1.19.2-Forge-3.2.2.jar        |YUNG's Better Dungeons        |betterdungeons                |1.19.2-Forge-3.2.2  |DONE      |Manifest: NOSIGNATURE         supermartijn642configlib-1.1.6b-forge-mc1.19.jar  |SuperMartijn642's Config Libra|supermartijn642configlib      |1.1.6b              |DONE      |Manifest: NOSIGNATURE         AdditionalEnchantedMiner-1.19.2-1192.1.1.jar      |QuarryPlus                    |quarryplus                    |1192.1.1            |DONE      |Manifest: 1a:13:52:63:6f:dc:0c:ad:7f:8a:64:ac:46:58:8a:0c:90:ea:2c:5d:11:ac:4c:d4:62:85:c7:d1:00:fa:9c:76         oldguns-1.19.2-3.7.1-39.jar                       |Old Guns Mod                  |oldguns                       |1.19.2-3.7.1-39.2   |DONE      |Manifest: NOSIGNATURE         scena-forge-1.0.95.jar                            |Scena                         |scena                         |1.0.95              |DONE      |Manifest: NOSIGNATURE         player-animation-lib-forge-1.0.2.jar              |Player Animator               |playeranimator                |1.0.2               |DONE      |Manifest: NOSIGNATURE         prefab-1.9.2.5.jar                                |Prefab                        |prefab                        |1.9.2.5             |DONE      |Manifest: NOSIGNATURE         mcw-windows-2.1.1-mc1.19.2forge.jar               |Macaw's Windows               |mcwwindows                    |2.1.1               |DONE      |Manifest: NOSIGNATURE         music_player-1.19.2-2.5.1.202.jar                 |Music Player                  |musicplayer                   |2.5.1.202           |DONE      |Manifest: f4:a6:0b:ee:cb:8a:1a:ea:9f:9d:45:91:8f:8b:b3:ae:26:f3:bf:05:86:1d:90:9e:f6:32:2a:1a:ed:1d:ce:b0         modnametooltip-1.19-1.19.0.jar                    |Mod Name Tooltip              |modnametooltip                |1.19.0              |DONE      |Manifest: NOSIGNATURE         looot-1.19.2-1.2.0.1.jar                          |Looot                         |looot                         |1.2.0.1             |DONE      |Manifest: NOSIGNATURE         ForgeEndertech-1.19.2-10.0.6.0-build.0865.jar     |ForgeEndertech                |forgeendertech                |10.0.6.0            |DONE      |Manifest: NOSIGNATURE         CTM-1.19.2-1.1.6+8.jar                            |ConnectedTexturesMod          |ctm                           |1.19.2-1.1.6+8      |DONE      |Manifest: NOSIGNATURE         ReAuth-1.19-Forge-4.0.7.jar                       |ReAuth                        |reauth                        |4.0.7               |DONE      |Manifest: 3d:06:1e:e5:da:e2:ff:ae:04:00:be:45:5b:ff:fd:70:65:00:67:0b:33:87:a6:5f:af:20:3c:b6:a1:35:ca:7e         YungsApi-1.19.2-Forge-3.8.9.jar                   |YUNG's API                    |yungsapi                      |1.19.2-Forge-3.8.9  |DONE      |Manifest: NOSIGNATURE         additional-guns-0.8.2-1.19.2.jar                  |Additional Guns               |additionalguns                |0.8.2               |DONE      |Manifest: NOSIGNATURE         upgradednetherite_items-1.19.2-4.1.0.1-release.jar|Upgraded Netherite : Items    |upgradednetherite_items       |1.19.2-4.1.0.1-relea|DONE      |Manifest: NOSIGNATURE         Shrink-1.19-1.3.5.jar                             |Shrink                        |shrink                        |1.3.5               |DONE      |Manifest: NOSIGNATURE         guardvillagers-1.19.2-1.5.5.jar                   |Guard Villagers               |guardvillagers                |1.19.2-1.5.5        |DONE      |Manifest: NOSIGNATURE         ChanceCubes-1.19.2-5.0.2.475.jar                  |Chance Cubes                  |chancecubes                   |1.19.2-5.0.2.475    |DONE      |Manifest: NOSIGNATURE         PickUpNotifier-v4.2.4-1.19.2-Forge.jar            |Pick Up Notifier              |pickupnotifier                |4.2.4               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         balm-forge-1.19.2-4.5.7.jar                       |Balm                          |balm                          |4.5.7               |DONE      |Manifest: NOSIGNATURE         immersive_armors-1.5.5+1.19.2-forge.jar           |Immersive Armors              |immersive_armors              |1.5.5+1.19.2        |DONE      |Manifest: NOSIGNATURE         JustEnoughResources-1.19.2-1.2.2.200.jar          |Just Enough Resources         |jeresources                   |1.2.2.200           |DONE      |Manifest: NOSIGNATURE         cloth-config-8.2.88-forge.jar                     |Cloth Config v8 API           |cloth_config                  |8.2.88              |DONE      |Manifest: NOSIGNATURE         shetiphiancore-forge-1.19.0-3.11.3.02.jar         |ShetiPhian-Core               |shetiphiancore                |3.11.3.02           |DONE      |Manifest: NOSIGNATURE         RPG_style_more_weapons_4.7.5.jar                  |RPG_style_More_Weapons        |rpgsmw                        |4.7.5               |DONE      |Manifest: NOSIGNATURE         BuildPasteMod-1.19.2v1.9.5x.jar                   |BuildPaste Mod                |buildpaste                    |1.9.5               |DONE      |Manifest: NOSIGNATURE         upgradednetherite-1.19.2-5.1.0.9-release.jar      |Upgraded Netherite            |upgradednetherite             |1.19.2-5.1.0.9-relea|DONE      |Manifest: NOSIGNATURE         AdvancementPlaques-1.19.2-1.4.7.jar               |Advancement Plaques           |advancementplaques            |1.4.7               |DONE      |Manifest: NOSIGNATURE         repurposed_structures_forge-6.3.24+1.19.2.jar     |Repurposed Structures         |repurposed_structures         |6.3.24+1.19.2       |DONE      |Manifest: NOSIGNATURE         morevillagers-forge-1.19-4.0.3.jar                |More Villagers                |morevillagers                 |4.0.3               |DONE      |Manifest: NOSIGNATURE         ToolStats-Forge-1.19.2-12.0.2.jar                 |ToolStats                     |toolstats                     |12.0.2              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         do-a-barrel-roll-2.6.2+1.19.2-forge.jar           |Do A Barrel Roll              |do_a_barrel_roll              |2.6.2+1.19.2        |DONE      |Manifest: NOSIGNATURE         StructureCompass-1.19.2-1.4.2.jar                 |Structure Compass Mod         |structurecompass              |1.4.2               |DONE      |Manifest: NOSIGNATURE         mcw-trapdoors-1.1.0-mc1.19.2forge.jar             |Macaw's Trapdoors             |mcwtrpdoors                   |1.1.0               |DONE      |Manifest: NOSIGNATURE         transparent-5.1.2+1.19-forge.jar                  |Transparent                   |transparent                   |5.1.2               |DONE      |Manifest: NOSIGNATURE         MinecraftCapes Forge 1.19.2-12.2.2.jar            |MinecraftCapes Mod            |minecraftcapes                |12.2.2              |DONE      |Manifest: NOSIGNATURE         supermartijn642corelib-1.1.9a-forge-mc1.19.2.jar  |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.9a              |DONE      |Manifest: NOSIGNATURE         YungsBridges-1.19.2-Forge-3.1.0.jar               |YUNG's Bridges                |yungsbridges                  |1.19.2-Forge-3.1.0  |DONE      |Manifest: NOSIGNATURE         fairylights-6.0.0-1.19.2.jar                      |Fairy Lights                  |fairylights                   |6.0.0               |DONE      |Manifest: NOSIGNATURE         curios-forge-1.19.2-5.1.4.1.jar                   |Curios API                    |curios                        |1.19.2-5.1.4.1      |DONE      |Manifest: NOSIGNATURE         Alexs Armoury v1.4.1-1.19.2.jar                   |Alex's Armoury                |alexs_armoury                 |1.4.1               |DONE      |Manifest: NOSIGNATURE         YungsExtras-1.19.2-Forge-3.1.0.jar                |YUNG's Extras                 |yungsextras                   |1.19.2-Forge-3.1.0  |DONE      |Manifest: NOSIGNATURE         AngelRing2-1.19.2-2.1.5.jar                       |Angel Ring 2                  |angelring                     |2.1.5               |DONE      |Manifest: NOSIGNATURE         tombstone-8.2.9-1.19.2.jar                        |Corail Tombstone              |tombstone                     |8.2.9               |DONE      |Manifest: NOSIGNATURE         dragon_enchants-1.0.4-1.19.2.jar                  |Dragon Enchants               |dragonenchants                |1.0.4               |DONE      |Manifest: NOSIGNATURE         worldedit-mod-7.2.12.jar                          |WorldEdit                     |worldedit                     |7.2.12+6240-87f4ae1 |DONE      |Manifest: NOSIGNATURE         constructionwand-1.19.2-2.10.jar                  |Construction Wand             |constructionwand              |1.19.2-2.10         |DONE      |Manifest: NOSIGNATURE         mcw-roofs-2.2.3-mc1.19.2forge.jar                 |Macaw's Roofs                 |mcwroofs                      |2.2.3               |DONE      |Manifest: NOSIGNATURE         cfm-7.0.0-pre35-1.19.2.jar                        |MrCrayfish's Furniture Mod    |cfm                           |7.0.0-pre35         |DONE      |Manifest: NOSIGNATURE         mcw-furniture-3.1.0-mc1.19.2forge.jar             |Macaw's Furniture             |mcwfurnitures                 |3.1.0               |DONE      |Manifest: NOSIGNATURE         ItemPhysic_FORGE_v1.6.6_mc1.19.2.jar              |ItemPhysic                    |itemphysic                    |1.6.6               |DONE      |Manifest: NOSIGNATURE         AdChimneys-1.19.2-9.1.10.0-build.0865.jar         |Advanced Chimneys             |adchimneys                    |9.1.10.0            |DONE      |Manifest: NOSIGNATURE         FallingTree-1.19.2-3.10.0.jar                     |FallingTree                   |fallingtree                   |3.10.0              |DONE      |Manifest: 3c:8e:df:6c:df:a6:2a:9f:af:64:ea:04:9a:cf:65:92:3b:54:93:0e:96:50:b4:52:e1:13:42:18:2b:ae:40:29         YungsBetterMineshafts-1.19.2-Forge-3.2.0.jar      |YUNG's Better Mineshafts      |bettermineshafts              |1.19.2-Forge-3.2.0  |DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.19-3.1.40.jar                    |GeckoLib                      |geckolib3                     |3.1.40              |DONE      |Manifest: NOSIGNATURE         DarkPaintings-Forge-1.19.2-13.1.5.jar             |DarkPaintings                 |darkpaintings                 |13.1.5              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         mcw-lights-1.0.5-mc1.19.2forge.jar                |Macaw's Lights and Lamps      |mcwlights                     |1.0.5               |DONE      |Manifest: NOSIGNATURE         elytraslot-forge-6.1.1+1.19.2.jar                 |Elytra Slot                   |elytraslot                    |6.1.1+1.19.2        |DONE      |Manifest: NOSIGNATURE         clienttweaks-forge-1.19.2-8.1.2.jar               |Client Tweaks                 |clienttweaks                  |8.1.2               |DONE      |Manifest: NOSIGNATURE         StylishEffects-v4.3.4-1.19.2-Forge.jar            |Stylish Effects               |stylisheffects                |4.3.4               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         Block_Swapper-1.19-1.1.jar                        |Block Swapper                 |blockswapper                  |1.1                 |DONE      |Manifest: NOSIGNATURE         Nameless Trinkets-1.19.2-1.6.11.jar               |Nameless Trinkets             |nameless_trinkets             |1.19.2-1.6.11       |DONE      |Manifest: NOSIGNATURE         VisualWorkbench-v4.2.4-1.19.2-Forge.jar           |Visual Workbench              |visualworkbench               |4.2.4               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         Pehkui-3.7.5+1.19.2-forge.jar                     |Pehkui                        |pehkui                        |3.7.5+1.19.2-forge  |DONE      |Manifest: NOSIGNATURE         ACT-2.7.0.jar                                     |Advanced creative tab 2       |act                           |2.7.0               |DONE      |Manifest: NOSIGNATURE         caelus-forge-1.19.2-3.0.0.6.jar                   |Caelus API                    |caelus                        |1.19.2-3.0.0.6      |DONE      |Manifest: NOSIGNATURE         bdlib-1.25.0.5-mc1.19.2.jar                       |BdLib                         |bdlib                         |1.25.0.5            |DONE      |Manifest: NOSIGNATURE         hats-and-cosmetics-1.4-1.19.2.jar                 |Hats and Cosmetics            |hat                           |1.4                 |DONE      |Manifest: NOSIGNATURE         AdHooks-1.19.2-9.0.3.0-build.0543.jar             |Advanced Hook Launchers       |adhooks                       |9.0.3.0             |DONE      |Manifest: NOSIGNATURE         Structures Plus II 1.19.2.jar                     |structuresplus2               |structuresplus                |1.0.0               |DONE      |Manifest: NOSIGNATURE         BagOfHolding-v4.1.6-1.19.2-Forge.jar              |Bag Of Holding                |bagofholding                  |4.1.6               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         catalogue-1.7.0-1.19.2.jar                        |Catalogue                     |catalogue                     |1.7.0               |DONE      |Manifest: NOSIGNATURE         medieval_paintings-1.19.2-7.0.jar                 |Medieval Paintings            |medieval_paintings            |7.0                 |DONE      |Manifest: NOSIGNATURE         [Universal]Immersive Structures-2.0.7a.jar        |Immersive Structure           |imst                          |2.0.7a              |DONE      |Manifest: NOSIGNATURE         mcw-paths-1.0.2forge-mc1.19.2.jar                 |Macaw's Paths and Pavings     |mcwpaths                      |1.0.2               |DONE      |Manifest: NOSIGNATURE         Medieval_Craft_(Weapons)-1.1.1_1.19.2.jar         |Medieval_craft_weapons        |medieval_craft_weapons        |1.0.0               |DONE      |Manifest: NOSIGNATURE         ironchest-1.19.2-14.2.7.jar                       |Iron Chests                   |ironchest                     |1.19.2-14.2.7       |DONE      |Manifest: NOSIGNATURE         lucky-block-forge-1.19.2-13.0.jar                 |Lucky Block                   |lucky                         |1.19.2-13.0         |DONE      |Manifest: NOSIGNATURE         TerraBlender-forge-1.19.2-2.0.1.136.jar           |TerraBlender                  |terrablender                  |2.0.1.136           |DONE      |Manifest: NOSIGNATURE         MouseTweaks-forge-mc1.19-2.23.jar                 |Mouse Tweaks                  |mousetweaks                   |2.23                |DONE      |Manifest: NOSIGNATURE         bettercombat-forge-1.7.1+1.19.jar                 |Better Combat                 |bettercombat                  |1.7.1+1.19          |DONE      |Manifest: NOSIGNATURE         CampfireResting1.1.2.jar                          |CampfireSleeper               |campfiresleeper               |1.0.0               |DONE      |Manifest: NOSIGNATURE         firstperson-forge-2.2.3-mc1.19.2.jar              |FirstPersonModel Mod          |firstpersonmod                |2.2.3-mc1.19.2      |DONE      |Manifest: NOSIGNATURE         spectrelib-forge-0.11.0+1.19.jar                  |SpectreLib                    |spectrelib                    |0.11.0+1.19         |DONE      |Manifest: NOSIGNATURE         domum_ornamentum-1.19-1.0.76-ALPHA-universal.jar  |Domum Ornamentum              |domum_ornamentum              |1.19-1.0.76-ALPHA   |DONE      |Manifest: NOSIGNATURE         viescraftmachines-1.19.2-2.0.0.jar                |ViesCraft Machines            |viescraftmachines             |2.0.0               |DONE      |Manifest: NOSIGNATURE         kffmod-3.12.0.jar                                 |Kotlin For Forge              |kotlinforforge                |3.12.0              |DONE      |Manifest: NOSIGNATURE         Paintings-forge-1.19.2-10.2.4.0.jar               |Paintings ++                  |paintings                     |10.2.4.0            |DONE      |Manifest: NOSIGNATURE         notenoughanimations-forge-1.6.2-mc1.19.2.jar      |NotEnoughAnimations Mod       |notenoughanimations           |1.6.2               |DONE      |Manifest: NOSIGNATURE         flywheel-forge-1.19.2-0.6.8.a.jar                 |Flywheel                      |flywheel                      |0.6.8.a             |DONE      |Manifest: NOSIGNATURE         luckytntmod-1.19.2-1.0.jar                        |Lucky TNT Mod                 |luckytntmod                   |1.0                 |DONE      |Manifest: NOSIGNATURE         MA-1.19.2-R1.4.3 - Copy.jar                       |Marbled's Arsenal             |marbleds_arsenal              |1.4.3               |DONE      |Manifest: NOSIGNATURE         polymorph-forge-0.46.1+1.19.2.jar                 |Polymorph                     |polymorph                     |0.46.1+1.19.2       |DONE      |Manifest: NOSIGNATURE         JustEnoughProfessions-forge-1.19.2-2.0.2.jar      |Just Enough Professions (JEP) |justenoughprofessions         |2.0.2               |DONE      |Manifest: NOSIGNATURE         instantblocks-forge-1.19.2-1.6.5.jar              |Instant Blocks                |instantblocks                 |1.6.5               |DONE      |Manifest: NOSIGNATURE         sit-1.19-1.3.3.jar                                |Sit                           |sit                           |1.3.3               |DONE      |Manifest: NOSIGNATURE         entityculling-forge-1.6.1-mc1.19.2.jar            |EntityCulling                 |entityculling                 |1.6.1               |DONE      |Manifest: NOSIGNATURE         backpacked-2.1.12-1.19.2.jar                      |Backpacked                    |backpacked                    |2.1.12              |DONE      |Manifest: NOSIGNATURE         cgm-1.3.4-1.19.2.jar                              |MrCrayfish's Gun Mod          |cgm                           |1.3.4               |DONE      |Manifest: NOSIGNATURE         Medieval Decoration Forge v.1.0 1.19.jar          |PlayTics Deco                 |medieval_deco                 |1.0                 |DONE      |Manifest: NOSIGNATURE         effective_fg-1.3.4.jar                            |Effective (Forge)             |effective_fg                  |1.3.4               |DONE      |Manifest: NOSIGNATURE         structurize-1.19.2-1.0.492-ALPHA.jar              |Structurize                   |structurize                   |1.19.2-1.0.492-ALPHA|DONE      |Manifest: NOSIGNATURE         FPS-Monitor-1.19.2-1.3.0.jar                      |FPS Monitor                   |fps                           |1.3.0               |DONE      |Manifest: NOSIGNATURE         FastFurnace-1.19.2-7.0.0.jar                      |FastFurnace                   |fastfurnace                   |7.0.0               |DONE      |Manifest: NOSIGNATURE         upgradednetherite_ultimate-1.19.2-4.1.0.4-release.|Upgraded Netherite : Ultimerit|upgradednetherite_ultimate    |1.19.2-4.1.0.4-relea|DONE      |Manifest: NOSIGNATURE         DamageTilt-1.19-forge-0.1.2.jar                   |DamageTilt                    |damagetilt                    |0.1.2               |DONE      |Manifest: NOSIGNATURE         PuzzlesLib-v4.4.0-1.19.2-Forge.jar                |Puzzles Lib                   |puzzleslib                    |4.4.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         grappling_hook_mod-1.19.2-1.19.2-v13.jar          |Grappling Hook Mod            |grapplemod                    |1.19.2-v13          |DONE      |Manifest: NOSIGNATURE         YungsBetterWitchHuts-1.19.2-Forge-2.1.0.jar       |YUNG's Better Witch Huts      |betterwitchhuts               |1.19.2-Forge-2.1.0  |DONE      |Manifest: NOSIGNATURE         ExtendedCrafting-1.19.2-5.1.5.jar                 |Extended Crafting             |extendedcrafting              |5.1.5               |DONE      |Manifest: NOSIGNATURE         AdditionalBanners-Forge-1.19.2-10.1.7.jar         |AdditionalBanners             |additionalbanners             |10.1.7              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         naturalist-forge-3.0.3a-1.19.2.jar                |Naturalist                    |naturalist                    |3.0.3a              |DONE      |Manifest: NOSIGNATURE         DoggyTalents-1.19.2-2.6.10.jar                    |Doggy Talents 2               |doggytalents                  |2.6.10              |DONE      |Manifest: NOSIGNATURE         YungsBetterOceanMonuments-1.19.2-Forge-2.1.0.jar  |YUNG's Better Ocean Monuments |betteroceanmonuments          |1.19.2-Forge-2.1.0  |DONE      |Manifest: NOSIGNATURE         dynamiclights-1.19.2.1.jar                        |Dynamic Lights                |dynamiclights                 |1.19.2.1            |DONE      |Manifest: NOSIGNATURE         sophisticatedcore-1.19.2-0.5.57.275.jar           |Sophisticated Core            |sophisticatedcore             |1.19.2-0.5.57.275   |DONE      |Manifest: NOSIGNATURE         HorseExpert-v4.0.0-1.19.2-Forge.jar               |Horse Expert                  |horseexpert                   |4.0.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         glassential-forge-1.19-1.2.4.jar                  |Glassential                   |glassential                   |1.19-1.2.4          |DONE      |Manifest: NOSIGNATURE         Medieval_Craft_(structures)-2.0.1-1.19.2.jar      |Medieval craft_structures     |medieval_craft_structures     |2.0.1               |DONE      |Manifest: NOSIGNATURE         scorchedguns-1.12-1.19.2.jar                      |Scorched Guns                 |scorchedguns                  |0.7.2               |DONE      |Manifest: NOSIGNATURE         Controlling-forge-1.19.2-10.0+7.jar               |Controlling                   |controlling                   |10.0+7              |DONE      |Manifest: NOSIGNATURE         Prism-1.19.1-1.0.2.jar                            |Prism                         |prism                         |1.0.2               |DONE      |Manifest: NOSIGNATURE         Placebo-1.19.2-7.2.0.jar                          |Placebo                       |placebo                       |7.2.0               |DONE      |Manifest: NOSIGNATURE         citadel-2.1.4-1.19.jar                            |Citadel                       |citadel                       |2.1.4               |DONE      |Manifest: NOSIGNATURE         alexsmobs-1.21.1.jar                              |Alex's Mobs                   |alexsmobs                     |1.21.1              |DONE      |Manifest: NOSIGNATURE         gunblades-forge-1.19-41.0.100-1.0.1.jar           |Gunblades                     |gunblades                     |1.0.1               |DONE      |Manifest: NOSIGNATURE         mixinextras-forge-0.2.0-beta.6.jar                |MixinExtras                   |mixinextras                   |0.2.0-beta.6        |DONE      |Manifest: NOSIGNATURE         waystone_towers-1.19.2-FORGE-1.0.9.jar            |Waystone Towers               |waystone_towers               |1.0.9               |DONE      |Manifest: NOSIGNATURE         Bookshelf-Forge-1.19.2-16.3.20.jar                |Bookshelf                     |bookshelf                     |16.3.20             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         sophisticatedbackpacks-1.19.2-3.18.47.836.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |1.19.2-3.18.47.836  |DONE      |Manifest: NOSIGNATURE         u_team_core-1.19.2-4.4.3.236.jar                  |U Team Core                   |uteamcore                     |4.4.3.236           |DONE      |Manifest: f4:a6:0b:ee:cb:8a:1a:ea:9f:9d:45:91:8f:8b:b3:ae:26:f3:bf:05:86:1d:90:9e:f6:32:2a:1a:ed:1d:ce:b0         twigs-forge-1.19.2-3.0.1.jar                      |Twigs                         |twigs                         |1.19.2-3.0.1        |DONE      |Manifest: NOSIGNATURE         buildinggadgets-3.16.2-build.22+mc1.19.2.jar      |Building Gadgets              |buildinggadgets               |3.16.2-build.22+mc1.|DONE      |Manifest: NOSIGNATURE         mcw-doors-1.0.9forge-mc1.19.2.jar                 |Macaw's Doors                 |mcwdoors                      |1.0.9               |DONE      |Manifest: NOSIGNATURE         jeed-1.19.2-2.1.3.jar                             |Just Enough Painting Previews |jeed                          |1.19.2-2.1.3        |DONE      |Manifest: NOSIGNATURE         sworddisplay-1.19.2-1.2.0.jar                     |Sword Displays                |sworddisplay                  |1.19.2-1.2.0        |DONE      |Manifest: NOSIGNATURE         Rex's-AdditionalStructures-1.19.x-(v.4.0.3).jar   |Additional Structures         |additionalstructures          |4.0.3               |DONE      |Manifest: NOSIGNATURE         FpsReducer2-forge-1.19.2-2.1.jar                  |FPS Reducer                   |fpsreducer                    |1.19.2-2.1          |DONE      |Manifest: NOSIGNATURE         flying_boots-1.19.2-1.0.1.jar                     |Flying Boots                  |flying_boots                  |1.0.1               |DONE      |Manifest: NOSIGNATURE         KnightQuest1.2.6.Patch.jar                        |Knight Quest                  |knight_quest                  |1.2.6               |DONE      |Manifest: NOSIGNATURE         dummmmmmy-1.19.2-1.7.1.jar                        |MmmMmmMmmmmm                  |dummmmmmy                     |1.19.2-1.7.1        |DONE      |Manifest: NOSIGNATURE         SignTools-forge.1.19.2-1.0.3.jar                  |Sign Tools                    |signtools                     |1.0.3               |DONE      |Manifest: NOSIGNATURE         twilightforest-1.19.2-4.2.1518-universal.jar      |The Twilight Forest           |twilightforest                |4.2.1518            |DONE      |Manifest: NOSIGNATURE         mcw-bridges-2.0.7-mc1.19.2forge.jar               |Macaw's Bridges               |mcwbridges                    |2.0.7               |DONE      |Manifest: NOSIGNATURE         MageFlame-mc1.19.2-f43.2.0-v1.4.0.jar             |Mage Flame                    |mageflame                     |1.4.0               |DONE      |Manifest: NOSIGNATURE         GottschCore-mc1.19.2-f43.2.0-v2.0.5.jar           |GottschCore                   |gottschcore                   |2.0.5               |DONE      |Manifest: NOSIGNATURE         useful_backpacks-1.19.2-1.14.1.107.jar            |Useful Backpacks              |usefulbackpacks               |1.14.1.107          |DONE      |Manifest: f4:a6:0b:ee:cb:8a:1a:ea:9f:9d:45:91:8f:8b:b3:ae:26:f3:bf:05:86:1d:90:9e:f6:32:2a:1a:ed:1d:ce:b0         DustrialDecor-1.3.3-1.19.2.jar                    |'Dustrial Decor               |dustrial_decor                |1.3.2               |DONE      |Manifest: NOSIGNATURE         AmbientSounds_FORGE_v5.2.13_mc1.19.2.jar          |Ambient Sounds                |ambientsounds                 |5.2.13              |DONE      |Manifest: NOSIGNATURE         mcw-fences-1.0.7-mc1.19.2forge.jar                |Macaw's Fences and Walls      |mcwfences                     |1.0.7               |DONE      |Manifest: NOSIGNATURE         mining_dimension-1.19.2-1.0.0.jar                 |Mining World                  |mining_dimension              |1.19.2-1.0.0        |DONE      |Manifest: NOSIGNATURE         simplylight-1.19.2-1.4.5-build.42.jar             |Simply Light                  |simplylight                   |1.19.2-1.4.5-build.4|DONE      |Manifest: NOSIGNATURE         zmedievalmusic-1.19.2-2.0.jar                     |medievalmusic mod             |medievalmusic                 |1.19.2-2.0          |DONE      |Manifest: NOSIGNATURE         Pehkui+Resizer+V2.1.0___1.19.2.jar                |Pehkui Resizer                |pehkui_resizer                |2.1.0               |DONE      |Manifest: NOSIGNATURE         Patchouli-1.19.2-77.jar                           |Patchouli                     |patchouli                     |1.19.2-77           |DONE      |Manifest: NOSIGNATURE         blockui-1.19-0.0.69-ALPHA.jar                     |UI Library Mod                |blockui                       |1.19-0.0.69-ALPHA   |DONE      |Manifest: NOSIGNATURE         multipiston-1.19.2-1.2.21-ALPHA.jar               |Multi-Piston                  |multipiston                   |1.19.2-1.2.21-ALPHA |DONE      |Manifest: NOSIGNATURE         luckytntlib-1.19.2-43.2.11.1.jar                  |Lucky TNT Lib                 |luckytntlib                   |43.2.11.1           |DONE      |Manifest: NOSIGNATURE         collective-1.19.2-6.53.jar                        |Collective                    |collective                    |6.53                |DONE      |Manifest: NOSIGNATURE         simplehats-forge-1.19.2-0.1.6.jar                 |SimpleHats                    |simplehats                    |1.19.2-0.1.6        |DONE      |Manifest: NOSIGNATURE         OreExcavation-1.11.166.jar                        |OreExcavation                 |oreexcavation                 |1.11.166            |DONE      |Manifest: NOSIGNATURE         time-in-a-bottle-3.0.1-mc1.19.jar                 |Time In A Bottle              |tiab                          |3.0.1-mc1.19        |DONE      |Manifest: NOSIGNATURE         BetterThirdPerson-Forge-1.19-1.9.0.jar            |Better Third Person           |betterthirdperson             |1.9.0               |DONE      |Manifest: NOSIGNATURE         lostcities-1.19-6.0.17.jar                        |LostCities                    |lostcities                    |1.19-6.0.17         |DONE      |Manifest: NOSIGNATURE         elevatorid-1.19.2-1.8.9.jar                       |Elevator Mod                  |elevatorid                    |1.19.2-1.8.9        |DONE      |Manifest: NOSIGNATURE         Gobber2-Forge-1.19.2-2.7.28.jar                   |Gobber 2                      |gobber2                       |2.7.28              |DONE      |Manifest: NOSIGNATURE         YungsBetterStrongholds-1.19.2-Forge-3.2.0.jar     |YUNG's Better Strongholds     |betterstrongholds             |1.19.2-Forge-3.2.0  |DONE      |Manifest: NOSIGNATURE         usefulhats-1.19.2-3.0.2.0.jar                     |Useful Hats                   |usefulhats                    |1.19.2-3.0.2.0      |DONE      |Manifest: NOSIGNATURE         ApexGunAddon-1.19.x-0.0.1.jar                     |Apex Guns                     |apexguns                      |0.0.1               |DONE      |Manifest: NOSIGNATURE         buildersaddition-1.19.2-20220926a.jar             |Builders Crafts & Addition    |buildersaddition              |1.19.2-20220926a    |DONE      |Manifest: NOSIGNATURE         eatinganimation-1.19-3.2.0.jar                    |Eating Animation              |eatinganimation               |3.0.0               |DONE      |Manifest: NOSIGNATURE         forge-1.19.2-43.2.11-universal.jar                |Forge                         |forge                         |43.2.11             |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         silent-gear-1.19.2-3.2.2.jar                      |Silent Gear                   |silentgear                    |3.2.2               |DONE      |Manifest: NOSIGNATURE         client-1.19.2-20220805.130853-srg.jar             |Minecraft                     |minecraft                     |1.19.2              |DONE      |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         commonality-1.19.2-4.2.1.jar                      |Commonality                   |commonality                   |4.2.1               |DONE      |Manifest: NOSIGNATURE         appleskin-forge-mc1.19-2.4.2.jar                  |AppleSkin                     |appleskin                     |2.4.2+mc1.19        |DONE      |Manifest: NOSIGNATURE         flat-colored-blocks-forge-1.0.11.jar              |flat-colored-blocks           |flatcoloredblocks             |1.0.11              |DONE      |Manifest: NOSIGNATURE         InventoryProfilesNext-forge-1.19-1.10.2.jar       |Inventory Profiles Next       |inventoryprofilesnext         |1.10.2              |DONE      |Manifest: NOSIGNATURE         architectury-6.5.85-forge.jar                     |Architectury                  |architectury                  |6.5.85              |DONE      |Manifest: NOSIGNATURE         doapi-1.0.4.jar                                   |Lets Do Api                   |doapi                         |1.0.4               |DONE      |Manifest: NOSIGNATURE         vinery-forge-1.2.11.jar                           |Vinery                        |vinery                        |1.2.11              |DONE      |Manifest: NOSIGNATURE         enderitemod-1.4.1-1.19.2.jar                      |Enderite Mod                  |enderitemod                   |1.4.1               |DONE      |Manifest: NOSIGNATURE         BuildingWands-mc1.19.2-2.6.6-release-forge.jar    |Building Wands                |wands                         |2.6.6-release       |DONE      |Manifest: NOSIGNATURE         jecalculation-forge-1.19.2-4.0.2.jar              |Just Enough Calculation       |jecalculation                 |4.0.2               |DONE      |Manifest: NOSIGNATURE         jei-1.19.2-forge-11.6.0.1015.jar                  |Just Enough Items             |jei                           |11.6.0.1015         |DONE      |Manifest: NOSIGNATURE         framework-0.4.2-1.19.2.jar                        |Framework                     |framework                     |0.4.2               |DONE      |Manifest: NOSIGNATURE         smallships-forge-1.19.2-2.0.0a2.2.jar             |Small Ships                   |smallships                    |2.0.0a2.2           |DONE      |Manifest: NOSIGNATURE         Towns-and-Towers-v.1.10-_FORGE-1.19.2_.jar        |Towns and Towers              |t_and_t                       |1.10                |DONE      |Manifest: NOSIGNATURE         GameMenuModOption-1.19-1.18.jar                   |Game Menu Mod Option          |gamemenumodoption             |1.18                |DONE      |Manifest: NOSIGNATURE         dreadsteel-1.19.2-1.1.4.2.jar                     |Dreadsteel                    |dreadsteel                    |1.19.2-1.1.4.2      |DONE      |Manifest: NOSIGNATURE         BetterAdvancements-1.19.2-0.2.2.142.jar           |Better Advancements           |betteradvancements            |0.2.2.142           |DONE      |Manifest: NOSIGNATURE         PortableHole-v4.0.0-1.19.2-Forge.jar              |Portable Hole                 |portablehole                  |4.0.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         Cucumber-1.19.2-6.0.6.jar                         |Cucumber Library              |cucumber                      |6.0.6               |DONE      |Manifest: NOSIGNATURE         platforms-forge-1.19.0-1.10.2.01.jar              |Platforms                     |platforms                     |1.10.2.01           |DONE      |Manifest: NOSIGNATURE         scannable-MC1.19.2-forge-1.7.7+dc5ea09.jar        |Scannable                     |scannable                     |1.7.7+dc5ea09       |DONE      |Manifest: NOSIGNATURE         MoGuns-1.9.2-1.19.2.jar                           |Mo' Guns                      |moguns                        |1.9.2               |DONE      |Manifest: NOSIGNATURE         waystones-forge-1.19.2-11.4.0.jar                 |Waystones                     |waystones                     |11.4.0              |DONE      |Manifest: NOSIGNATURE         BuildersDelight-1.19.2-v.1.1.jar                  |Builder's Delight             |buildersdelight               |1.1                 |DONE      |Manifest: NOSIGNATURE         AgeOfWeapons-Reforged-1.19.2-(v.0.7.3).jar        |Age of Weapons - Reforged     |ageofweapons                  |0.7.3               |DONE      |Manifest: NOSIGNATURE         mcw-paintings-1.0.4-mc1.19.2.jar                  |Macaw's Paintings             |mcwpaintings                  |1.0.4               |DONE      |Manifest: NOSIGNATURE         journeymap-1.19.2-5.9.7-forge.jar                 |Journeymap                    |journeymap                    |5.9.7               |DONE      |Manifest: NOSIGNATURE         alternative_angel_ring_1.19.2-1.1.0.jar           |Alternative Angel Ring        |alternative_angel_ring        |1.1.0               |DONE      |Manifest: NOSIGNATURE         artifacts-1.19.2-5.0.2.jar                        |Artifacts                     |artifacts                     |1.19.2-5.0.2        |DONE      |Manifest: NOSIGNATURE         configured-2.1.1-1.19.2.jar                       |Configured                    |configured                    |2.1.1               |DONE      |Manifest: NOSIGNATURE         Decorative Blocks-forge-1.19.2-3.0.0.jar          |Decorative Blocks             |decorative_blocks             |3.0.0               |DONE      |Manifest: NOSIGNATURE         [1.19.2-forge]-Epic-Knights-7.11.jar              |Epic Knights Mod              |magistuarmory                 |7.11                |DONE      |Manifest: NOSIGNATURE         betteranimalsplus-1.19.2-11.0.10-forge.jar        |Better Animals Plus           |betteranimalsplus             |1.19.2-11.0.10      |DONE      |Manifest: NOSIGNATURE         mcjtylib-1.19-7.2.5.jar                           |McJtyLib                      |mcjtylib                      |1.19-7.2.5          |DONE      |Manifest: NOSIGNATURE         notenoughwands-1.19-5.0.2.jar                     |Not Enough Wands              |notenoughwands                |1.19-5.0.2          |DONE      |Manifest: NOSIGNATURE         YungsBetterDesertTemples-1.19.2-Forge-2.2.2.jar   |YUNG's Better Desert Temples  |betterdeserttemples           |1.19.2-Forge-2.2.2  |DONE      |Manifest: NOSIGNATURE         waveycapes-forge-1.3.2-mc1.19.2.jar               |WaveyCapes Mod                |waveycapes                    |1.3.2               |DONE      |Manifest: NOSIGNATURE         Dispenser Bazooka Mod-1.2.1-1.19.jar              |Dispenser Bazooka Mod         |dbm                           |1.2.0               |DONE      |Manifest: NOSIGNATURE         Terralith_1.19.3_v2.3.8.jar                       |Terralith                     |terralith                     |2.3.8               |DONE      |Manifest: NOSIGNATURE         mininggadgets-1.13.0.jar                          |Mining Gadgets                |mininggadgets                 |1.13.0              |DONE      |Manifest: NOSIGNATURE         3dskinlayers-forge-1.5.2-mc1.19.1.jar             |3dSkinLayers                  |skinlayers3d                  |1.5.2               |DONE      |Manifest: NOSIGNATURE         FasterLadderClimbing-1.19.2-0.2.7.jar             |Faster Ladder Climbing        |fasterladderclimbing          |0.2.7               |DONE      |Manifest: NOSIGNATURE         craftingtweaks-forge-1.19.2-15.1.7.jar            |CraftingTweaks                |craftingtweaks                |15.1.7              |DONE      |Manifest: NOSIGNATURE         simplyswords-forge-1.46.0-1.19.2.jar              |Simply Swords                 |simplyswords                  |1.46.0-1.19.2       |DONE      |Manifest: NOSIGNATURE         libIPN-forge-1.19-3.0.1.jar                       |libIPN                        |libipn                        |3.0.1               |DONE      |Manifest: NOSIGNATURE         EnchantmentDescriptions-Forge-1.19.2-13.0.14.jar  |EnchantmentDescriptions       |enchdesc                      |13.0.14             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         moonlight-1.19.2-2.2.35-forge.jar                 |Moonlight Library             |moonlight                     |1.19.2-2.2.35       |DONE      |Manifest: NOSIGNATURE         silent-lib-1.19.2-7.0.3.jar                       |Silent Lib                    |silentlib                     |7.0.3               |DONE      |Manifest: NOSIGNATURE         Jade-1.19.1-forge-8.8.1.jar                       |Jade                          |jade                          |8.8.1               |DONE      |Manifest: NOSIGNATURE         CreativeCore_FORGE_v2.9.3_mc1.19.2.jar            |CreativeCore                  |creativecore                  |2.9.3               |DONE      |Manifest: NOSIGNATURE         Forge 1.19.2 Minecraft Middle Ages 0.0.3.jar      |Days in the Middle Ages       |days_in_the_middle_ages       |0.0.2               |DONE      |Manifest: NOSIGNATURE         similsaxtranstructors-1.19-1.0.24.jar             |Similsax Transtructors - Build|similsaxtranstructors         |1.19-1.0.24         |DONE      |Manifest: NOSIGNATURE         movingelevators-1.4.3-forge-mc1.19.jar            |Moving Elevators              |movingelevators               |1.4.3               |DONE      |Manifest: NOSIGNATURE         weaponmaster-multi-forge-1.19.x-3.0.3.jar         |YDM's Weapon Master           |weaponmaster                  |3.0.3               |DONE      |Manifest: NOSIGNATURE         Iceberg-1.19.2-forge-1.1.4.jar                    |Iceberg                       |iceberg                       |1.1.4               |DONE      |Manifest: NOSIGNATURE         reliquary-1.19.2-2.0.20.1166.jar                  |Reliquary                     |reliquary                     |1.19.2-2.0.20.1166  |DONE      |Manifest: NOSIGNATURE         LegendaryTooltips-1.19.2-forge-1.4.0.jar          |Legendary Tooltips            |legendarytooltips             |1.4.0               |DONE      |Manifest: NOSIGNATURE         creativeitems-1.19.2-1.0.4.jar                    |Creative Items                |creative_items                |1.0.4               |DONE      |Manifest: NOSIGNATURE         StorageDrawers-1.19-11.1.2.jar                    |Storage Drawers               |storagedrawers                |11.1.2              |DONE      |Manifest: NOSIGNATURE         immersive_paintings-0.6.0+1.19.2-forge.jar        |Immersive Paintings           |immersive_paintings           |0.6.0+1.19.2        |DONE      |Manifest: NOSIGNATURE         Statues-1.19.2-0.3.2.6.jar                        |Statues Mod                   |statues                       |0.3.2.6             |DONE      |Manifest: NOSIGNATURE         upgradedcore-1.19.2-4.1.0.1-release.jar           |Upgraded Core                 |upgradedcore                  |1.19.2-4.1.0.1-relea|DONE      |Manifest: NOSIGNATURE         minecolonies-1.19.2-1.0.1429-BETA.jar             |MineColonies                  |minecolonies                  |1.19.2-1.0.1429-BETA|DONE      |Manifest: NOSIGNATURE         mvs-3.2-1.19.2.jar                                |Moog's Voyager Structures     |mvs                           |3.2-1.19.2          |DONE      |Manifest: NOSIGNATURE         ferritecore-5.0.3-forge.jar                       |Ferrite Core                  |ferritecore                   |5.0.3               |DONE      |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a         engineersdecor-1.19.2-forge-1.3.28.jar            |Engineer's Decor              |engineersdecor                |1.3.28              |DONE      |Manifest: bf:30:76:97:e4:58:41:61:2a:f4:30:d3:8f:4c:e3:71:1d:14:c4:a1:4e:85:36:e3:1d:aa:2f:cb:22:b0:04:9b         apexcore-1.19.2-7.3.1.jar                         |ApexCore                      |apexcore                      |7.3.1               |DONE      |Manifest: NOSIGNATURE         fantasyfurniture-1.19.2-6.7.0.jar                 |Fantasy's Furniture           |fantasyfurniture              |6.7.0               |DONE      |Manifest: NOSIGNATURE         extendedcreativeinventory-1.19.2-2.1.jar          |Extended Creative Inventory   |extendedcreativeinventory     |2.1                 |DONE      |Manifest: NOSIGNATURE         upgradednetherite_creative-1.19.2-4.1.0.1-release.|Upgraded Netherite : Creative |upgradednetherite_creative    |1.19.2-4.1.0.1-relea|DONE      |Manifest: NOSIGNATURE         silents-gems-1.19.2-4.4.2.jar                     |Silent's Gems: Base           |silentgems                    |4.4.2               |DONE      |Manifest: NOSIGNATURE         Craftable Horse Armour  Saddle-1.19-1.9.jar       |CHA&S - Craftable Horse Armour|craftablehorsearmour          |1.9                 |DONE      |Manifest: NOSIGNATURE         expandability-forge-7.0.0.jar                     |ExpandAbility                 |expandability                 |7.0.0               |DONE      |Manifest: NOSIGNATURE         TheCardboardBoxMod-1.19.2-1.0.jar                 |The Cardboard Box Mod         |cardboardbox                  |1.19.2-1.0          |DONE      |Manifest: NOSIGNATURE         overloadedarmorbar-1.19.3-7.1.jar                 |Overloaded Armor Bar          |overloadedarmorbar            |1.19.3-7.1          |DONE      |Manifest: NOSIGNATURE         chisels-and-bits-forge-1.3.135.jar                |chisels-and-bits              |chiselsandbits                |1.3.135             |DONE      |Manifest: NOSIGNATURE         PresenceFootsteps-1.19.2-1.6.4.1-forge.jar        |Presence Footsteps (Forge)    |presencefootsteps             |1.19.2-1.6.4.1      |DONE      |Manifest: NOSIGNATURE     Flywheel Backend: Off     Crash Report UUID: 385f8827-531b-4057-99f1-f7107b2e097d     FML: 43.2     Forge: net.minecraftforge:43.2.11
    • I use the exampleentity model as it's basically, an example. also in order for it to work(sorry for not clarifying again), you need to add in your Entity class  the protected void populateDefaultEquipmentSlots(DifficultyInstance difficultyInstance) { super.populateDefaultEquipmentSlots(difficultyInstance); this.setItemSlot(EquipmentSlot.MAINHAND, new ItemStack(Items.DIAMOND_SWORD.get())); this.setItemSlot(EquipmentSlot.HEAD, new ItemStack(Items.DIAMOND_HELMET.get())); this.setItemSlot(EquipmentSlot.CHEST, new ItemStack(Items.DIAMOND_CHESTPLATE.get())); this.setItemSlot(EquipmentSlot.LEGS, new ItemStack(Items.DIAMOND_LEGGINGS.get())); this.setItemSlot(EquipmentSlot.FEET, new ItemStack(Items.DIAMOND_BOOTS.get())); } //This adds the items in your entity's respective slots, here I'm using for an example diamond items  In your model, you need to extend the HumanoidModel class, and it should look like this
    • If it is not too much of a bother, can you point me to some resources that better explain those two concepts, biome modifiers and EntityJoinLevelEvent. Thank you for the advice!  
  • Topics

×
×
  • Create New...

Important Information

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