Jump to content

Recommended Posts

Posted

I have a basic EntityFile and i added the possibility that u can load vehicles from a .txt file. Now i need to register a new instance of my generic vehicle rendering class to an entityclass. This entityclass should be a slightly changed version of the basic VehicleClass. So i need to add the vehiclename to the class to make it anotherclass with a new renderer. Since Entityclasses can only have one bound renderer. Sorry if i missspell something im german ( half german -half english)

Posted

But somehow the Flansmod maker makes this too. He just need the vehiclefile and then it generates everything by itself. Probably like if i just make new instances and load the models to a global list and search for them in the renderer every time.

Like Map<String,IModelCustom>=new HashMap<String,IModelCustom>

While the String takes in the VehicleName and then when the entityvehicle.class is rendered, it will get the IModelCustom from a method?

Posted

Renderer is assigned to Entity.class, not an instance. Period.

 

If you are loading other entities from .txt you should STILL have one renderer for all of them, you will just make renderer correspond to given name of entity. (e.g return model from entity's NBT).

 

What you can do is to use Forge's class loader to load new classes into your mod (like an non-@Mod addon to your mod).

You can use reflection to load any .class in runtime and then register it.

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

Posted

No - you don't understand me. DAMN - I have one renderer. Only thing i need is to have a possibility to save different cars with their values. Cuz if i load new cars from .txt every time i need to somehow keep the data. SO what to do? Okay wit - probably im wrong so - i tried some reflection and it didn't work properly.

Posted

It's either me not getting what you need, or you not describing what you need correctly.

Java is not dynamic language (okay, reflection kinda is, but that is not 'simple java'), you can't "just" grab something and modify it (talking about classes).

 

Anyway, what you probably need is to change your design.

Loading part:

1. You read .txt files

2. You save that data to some class that will hold it for you, e.g "VehicleStructure".

3. You save those objects in some Map<String, VehicleStructure>.

5. You make some nice wrapping for getting that data.

 

Entity part (your VaehicleBase):

1. When player spawns vehicle, you search your map for name player provided and you apply that loaded-from-txt data (stored in VehicleStructure) to your VehicleBase.

2. Your Renderer is asigned to VehicleBase and uses VehicleStructure field (assigned to VehicleBase instance) to render stuff.

3. And yes - you need to synchronize it. (spawn packet).

 

Also - you can then save that VehicleStructure to world (WorldSaveData) or even entity itself. So that would answer your:

i need to somehow keep the data.

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

Posted

Okay - ill try to describe it in detail what i do right now:

 

1. I load the files

2. The data from the files is stored in a VehicleFile.class

3. The VehicleFile classes are stored in the VehicleList

4. The ClientProxy loops through the list and generates a new item for each vehicle, generating a json file with the containing texture etc.

 

From there i don't know how to carry on...

 

 

Posted

I was just going through this thought process myself. I'm making a bunch of entities that look different (different textures and slightly different models) but otherwise mostly act the same.

 

You basically have two different approaches that I can think of to handle this:

 

1) create one "super" renderer class, and one "super" model class. For each of these you make a constructor that takes in all the things that would make an entity different. For example, your constructor to the renderer can have different textures, your constructor to the model could have an enum to indicate whether your car should be a minivan, truck, etc. Then the code for each of these classes would take that information and change behavior accordingly. So creating different instances would be as easy as just passing different textures and other parameters when you register the renderer with the model in your proxy.

 

2) Create a renderer and/or model class for every different case. While this sounds like a bit of work, it actually only takes a couple seconds to copy a class in Eclipse. My only tip is to make sure you get the original class working well before copying it a bunch of times, otherwise each time you have to fix a bug it will require editing more classes. But anyway, it really isn't that much work to copy classes and edit to your liking.

 

In your case of customizing the vehicles based on a txt file resource, I would suggest the first approach. You can simply make your renderer and model classes to have constructors that take the info from the txt file.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Posted

Yea im doing that look:

SuperEntityClass:

 

 

package itsamysterious.mods.reallifemod.core.vehicles;

 

import net.minecraft.entity.Entity;

import net.minecraft.nbt.NBTTagCompound;

import net.minecraft.util.BlockPos;

import net.minecraft.world.World;

 

public class EntityVehicle extends Entity {

public VehicleFile file;

public double backWheelRotation;

public double wheelRotL;

 

public EntityVehicle(World world,VehicleFile file, BlockPos pos) {

super(world);

this.file=file;

this.setPosition(pos.getX(), pos.getY()+1, pos.getZ());

this.setSize(1, 1);

}

 

@Override

protected void entityInit() {

}

 

@Override

public void onUpdate(){

super.onUpdate();

}

 

@Override

public void updateRiderPosition() {

super.updateRiderPosition();

double rad=Math.toRadians(rotationYaw);

double newX=posX+Math.sin(rad)*file.ridersPosition.x;

double newY=posY+Math.cos(rad)*file.ridersPosition.y;

double newZ=posZ+Math.cos(rad)*file.ridersPosition.z;

riddenByEntity.setPosition(newX,newY,newZ);

};

 

@Override

protected void readEntityFromNBT(NBTTagCompound tagCompund){

NBTTagCompound vehicleTag = tagCompund.getCompoundTag("VehicleTag");

}

 

@Override

protected void writeEntityToNBT(NBTTagCompound tagCompound) {

NBTTagCompound vehicleTag = new NBTTagCompound();

tagCompound.setTag("VehicleTag", vehicleTag);

vehicleTag.setString("VehicleName", file.vehicleName);

}

 

}

 

 

 

 

SuperRenderer

 

 

package itsamysterious.mods.reallifemod.core.rendering.Entities;

 

import java.util.HashMap;

import java.util.Map;

 

import org.lwjgl.opengl.GL11;

 

import itsamysterious.mods.reallifemod.client.forgeobjmodelported.AdvancedModelLoader;

import itsamysterious.mods.reallifemod.client.forgeobjmodelported.IModelCustom;

import itsamysterious.mods.reallifemod.core.vehicles.EntityVehicle;

import itsamysterious.mods.reallifemod.core.vehicles.VehicleFile;

import itsamysterious.mods.reallifemod.init.Reference;

import net.minecraft.client.Minecraft;

import net.minecraft.client.renderer.entity.Render;

import net.minecraft.client.renderer.entity.RenderManager;

import net.minecraft.entity.Entity;

import net.minecraft.util.ResourceLocation;

 

public class RenderVehicle extends Render{

private Class<?extends EntityVehicle> entityClass;

private static Map <String,IModelCustom> models = new HashMap<String, IModelCustom>();

private ResourceLocation texture;

 

public RenderVehicle(RenderManager renderManager) {

super(renderManager);

}

 

public void doRender(Entity entity, double x, double y, double z, float p_76986_8_, float partialTicks) {

this.renderVehicle((EntityVehicle)entity, x, y, z, p_76986_8_, partialTicks);

};

 

private void renderVehicle(EntityVehicle entity, double x, double y, double z, float p_76986_8_,

float partialTicks) {

VehicleFile f = entity.file;

Minecraft.getMinecraft().renderEngine.bindTexture(this.texture);

GL11.glPushMatrix();

GL11.glTranslated(x, y, z);

GL11.glRotated(entity.rotationYaw, 0, 1, 0);

GL11.glRotated(entity.rotationPitch, 1, 0, 0);

GL11.glPushMatrix();

getmodel(f).renderPart(f.modelName);

GL11.glPopMatrix();

//Rearaxis

GL11.glPushMatrix();

GL11.glRotated(entity.backWheelRotation, 1, 0, 0);

GL11.glTranslated(f.wheelPosBack.x+f.wheelPosLeft.x, f.wheelPosBack.y, f.wheelPosBack.z);

getmodel(f).renderPart(f.wheelsName);

GL11.glPopMatrix();

 

//Frontwheel L

GL11.glPushMatrix();

GL11.glRotated(entity.wheelRotL, 1, 0, 0);

GL11.glTranslated(f.wheelPosLeft.x, f.wheelPosLeft.y, f.wheelPosLeft.z);

getmodel(f).renderPart(f.wheelsName);

GL11.glPopMatrix();

 

//Frontwheel R

GL11.glPushMatrix();

GL11.glRotated(entity.wheelRotL, 1, 0, 0);

GL11.glTranslated(f.wheelPosLeft.x, f.wheelPosLeft.y, f.wheelPosLeft.z);

getmodel(f).renderPart(f.wheelsName);

GL11.glPopMatrix();

 

//

GL11.glPopMatrix();

}

 

private IModelCustom getmodel(VehicleFile f) {

return models.get(f.vehicleName);

}

 

@Override

protected ResourceLocation getEntityTexture(Entity entity) {

return texture;

}

 

public static void registerModel(VehicleFile f){

models.put(f.vehicleName, AdvancedModelLoader.loadModel(new ResourceLocation("reallifemod:models/vehicle/"+f.modelName+".obj")));

}

 

}

 

 

 

 

Class that stores the VehicleFiles:

 

 

package itsamysterious.mods.reallifemod.core.vehicles;

 

import java.util.ArrayList;

import java.util.List;

 

import itsamysterious.mods.noteblocksplus.proxies.ClientProxy;

import itsamysterious.mods.reallifemod.RealLifeMod;

 

public class Vehicles {

public static List<VehicleFile> vehicles = new ArrayList<VehicleFile>();

 

public static void addVehicle(VehicleFile f){

vehicles.add(f);

System.out.println("Succesfully loaded "+f.vehicleName+"!");

}

 

public static void setupVehicles(){

for(VehicleFile f:vehicles){

RealLifeMod.proxy.registerVehicle(f);

}

}

}

 

 

 

 

Posted

Okay, now im getting that strange error:

 

 

[17:39:13] [main/INFO] [GradleStart]: username: ItsAMysterious

[17:39:13] [main/INFO] [GradleStart]: Extra: []

[17:39:13] [main/INFO] [GradleStart]: Found and added coremod: api.player.forge.RenderPlayerAPIPlugin

[17:39:13] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/MO/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken, {REDACTED}, --version, 1.8, --username, ItsAMysterious, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]

[17:39:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker

[17:39:13] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker

[17:39:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker

[17:39:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker

[17:39:13] [main/INFO] [FML]: Forge Mod Loader version 8.0.69.1354 for Minecraft 1.8 loading

[17:39:13] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_51, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jre1.8.0_51

[17:39:13] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

[17:39:13] [main/INFO] [FML]: Found a command line coremod : api.player.forge.RenderPlayerAPIPlugin

[17:39:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker

[17:39:13] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin

[17:39:13] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin

[17:39:13] [main/INFO] [GradleStart]: Injecting location in coremod api.player.forge.RenderPlayerAPIPlugin

[17:39:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[17:39:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[17:39:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[17:39:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[17:39:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[17:39:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[17:39:14] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

[17:39:19] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing

[17:39:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[17:39:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[17:39:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[17:39:20] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[17:39:20] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker

[17:39:20] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker

[17:39:20] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}

[17:39:25] [Client thread/INFO]: Setting user: ItsAMysterious

[17:39:32] [Client thread/INFO]: LWJGL Version: 2.9.1

[17:39:34] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization

[17:39:34] [Client thread/INFO] [FML]: MinecraftForge v11.14.1.1354 Initialized

[17:39:35] [Client thread/INFO] [FML]: Replaced 204 ore recipies

[17:39:35] [Client thread/INFO] [FML]: Preloading CrashReport classes

[17:39:35] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization

[17:39:35] [Client thread/WARN] [FML]: Enabling removal of erroring Entities - USE AT YOUR OWN RISK

[17:39:35] [Client thread/INFO] [FML]: Searching D:\Programmieren\Real Life Mod-Update To 1.8\eclipse\mods for mods

[17:39:40] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load

[17:39:41] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, RenderPlayerAPI, reallifemod] at CLIENT

[17:39:41] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, RenderPlayerAPI, reallifemod] at SERVER

[17:39:42] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Real Life Mod

[17:39:42] [Client thread/INFO] [FML]: Processing ObjectHolder annotations

[17:39:42] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations

[17:39:43] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0

[17:39:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.RealLifeMod:loadCoreModules:139]: Reflected:private final java.util.List net.minecraft.client.Minecraft.defaultResourcePacks

[17:39:44] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.RealLifeMod:loadVehicles:147]: D:\Programmieren\Real Life Mod-Update To 1.8\eclipse\.\RLM\vehicles

[17:39:44] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.vehicles.VehicleFile:loadFromFile:44]: The maxSpeed has been set to:100

[17:39:44] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.vehicles.VehicleFile:loadFromFile:49]: The reverseSpeed has been set to:20

[17:39:44] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.vehicles.VehicleFile:loadFromFile:54]:  1,1,1

[17:39:44] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.vehicles.Vehicles:addVehicle:14]: Succesfully loaded lamborghini!

[17:39:53] [Client thread/INFO] [FML]: Applying holder lookups

[17:39:53] [Client thread/INFO] [FML]: Holder lookups applied

[17:39:54] [Client thread/INFO] [sTDOUT]: [tv.twitch.StandardCoreAPI:<init>:16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's.

[17:39:54] [Client thread/ERROR]: Couldn't initialize twitch stream

[17:39:54] [sound Library Loader/INFO]: Starting up SoundSystem...

[17:39:55] [Thread-7/INFO]: Initializing LWJGL OpenAL

[17:39:55] [Thread-7/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[17:39:55] [Thread-7/INFO]: OpenAL initialized.

[17:39:55] [sound Library Loader/INFO]: Sound engine started

[17:40:18] [Client thread/INFO]: Created: 512x512 textures-atlas

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=east not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=east not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#inventory not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=west not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=north not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=south not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=south not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=east not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:item.lamborghini#inventory not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=north not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#inventory not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#inventory not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=west not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=west not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=north not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=south not found

[17:40:19] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockparquet#inventory not found

[17:40:22] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods

[17:40:22] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Real Life Mod

[17:40:22] [Client thread/INFO]: SoundSystem shutting down...

[17:40:22] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

[17:40:22] [sound Library Loader/INFO]: Starting up SoundSystem...

[17:40:23] [Thread-9/INFO]: Initializing LWJGL OpenAL

[17:40:23] [Thread-9/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[17:40:23] [Thread-9/INFO]: OpenAL initialized.

[17:40:23] [sound Library Loader/INFO]: Sound engine started

[17:40:40] [Client thread/INFO]: Created: 512x512 textures-atlas

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=east not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=east not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#inventory not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=west not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=north not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=south not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=south not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=east not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:item.lamborghini#inventory not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=north not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#inventory not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#inventory not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=west not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=west not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=north not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=south not found

[17:40:40] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockparquet#inventory not found

[17:42:38] [server thread/INFO]: Starting integrated minecraft server version 1.8

[17:42:38] [server thread/INFO]: Generating keypair

[17:42:38] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance

[17:42:38] [server thread/INFO] [FML]: Applying holder lookups

[17:42:38] [server thread/INFO] [FML]: Holder lookups applied

[17:42:39] [server thread/INFO] [FML]: Loading dimension 0 (TestPackethandling) (net.minecraft.server.integrated.IntegratedServer@6eca0f71)

[17:42:39] [server thread/INFO] [FML]: Loading dimension 1 (TestPackethandling) (net.minecraft.server.integrated.IntegratedServer@6eca0f71)

[17:42:39] [server thread/INFO] [FML]: Loading dimension -1 (TestPackethandling) (net.minecraft.server.integrated.IntegratedServer@6eca0f71)

[17:42:39] [server thread/INFO]: Preparing start region for level 0

[17:42:40] [server thread/INFO]: Preparing spawn area: 6%

[17:42:41] [server thread/INFO]: Preparing spawn area: 45%

[17:42:41] [server thread/WARN]: Skipping Entity with id reallifemod.Entitylamborghini

[17:42:42] [server thread/INFO]: Preparing spawn area: 96%

[17:42:43] [server thread/INFO]: Changing view distance to 5, from 10

[17:42:44] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2

[17:42:44] [Netty Server IO #1/INFO] [FML]: Client protocol version 2

[17:42:44] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],[email protected]

[17:42:44] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established

[17:42:44] [server thread/INFO] [FML]: [server thread] Server side modded connection established

[17:42:44] [server thread/INFO]: ItsAMysterious[local:E:cce5b9d8] logged in with entity id 319 at (-201.86187966637706, 69.0, 261.91435732675336)

[17:42:44] [server thread/INFO]: ItsAMysterious joined the game

[17:42:45] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:45] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:45] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:45] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:46] [server thread/INFO]: Saving and pausing game...

[17:42:46] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/Overworld

[17:42:47] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/Nether

[17:42:47] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/The End

[17:42:47] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:47] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:47] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:47] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:47] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:47] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:47] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:47] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:47] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:47] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:47] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:47] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:47] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:47] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:47] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:47] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:47] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:47] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2549ms behind, skipping 50 tick(s)

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:48] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:49] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.client.ClientProxy$1newItem:onItemRightClick:126]: Placing lamborghini

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.client.ClientProxy$1newItem:onItemRightClick:126]: Placing lamborghini

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:50] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[17:42:54] [Client thread/WARN]: Needed to grow BufferBuilder buffer: Old size 8388608 bytes, new size 10485760 bytes.

[17:42:54] [Client thread/WARN]: Needed to grow BufferBuilder buffer: Old size 10485760 bytes, new size 12582912 bytes.

[17:42:55] [server thread/INFO]: Stopping server

[17:42:55] [server thread/INFO]: Saving players

[17:42:55] [server thread/INFO]: Saving worlds

[17:42:55] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/Overworld

[17:42:55] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/Nether

[17:42:55] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/The End

[17:43:02] [server thread/INFO] [FML]: Unloading dimension 0

[17:43:02] [server thread/INFO] [FML]: Unloading dimension -1

[17:43:02] [server thread/INFO] [FML]: Unloading dimension 1

[17:43:02] [server thread/INFO] [FML]: Applying holder lookups

[17:43:02] [server thread/INFO] [FML]: Holder lookups applied

[17:43:03] [Client thread/FATAL]: Reported exception thrown!

net.minecraft.util.ReportedException: Post-rendering entity in world

at net.minecraft.client.renderer.entity.RenderManager.doRenderEntity(RenderManager.java:425) ~[RenderManager.class:?]

at net.minecraft.client.renderer.entity.RenderManager.renderEntityStatic(RenderManager.java:334) ~[RenderManager.class:?]

at net.minecraft.client.renderer.entity.RenderManager.renderEntitySimple(RenderManager.java:301) ~[RenderManager.class:?]

at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:657) ~[RenderGlobal.class:?]

at net.minecraft.client.renderer.EntityRenderer.renderWorldPass(EntityRenderer.java:1350) ~[EntityRenderer.class:?]

at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1263) ~[EntityRenderer.class:?]

at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1088) ~[EntityRenderer.class:?]

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1107) ~[Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:376) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_51]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_51]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_51]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_51]

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 net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]

at GradleStart.main(Unknown Source) [start/:?]

Caused by: java.lang.NullPointerException

at net.minecraft.client.renderer.entity.Render.doRenderShadowAndFire(Render.java:307) ~[Render.class:?]

at net.minecraft.client.renderer.entity.RenderManager.doRenderEntity(RenderManager.java:388) ~[RenderManager.class:?]

... 17 more

[17:43:03] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:660]: ---- Minecraft Crash Report ----

// My bad.

 

Time: 06.08.15 17:43

Description: Post-rendering entity in world

 

java.lang.NullPointerException: Post-rendering entity in world

at net.minecraft.client.renderer.entity.Render.doRenderShadowAndFire(Render.java:307)

at net.minecraft.client.renderer.entity.RenderManager.doRenderEntity(RenderManager.java:388)

at net.minecraft.client.renderer.entity.RenderManager.renderEntityStatic(RenderManager.java:334)

at net.minecraft.client.renderer.entity.RenderManager.renderEntitySimple(RenderManager.java:301)

at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:657)

at net.minecraft.client.renderer.EntityRenderer.renderWorldPass(EntityRenderer.java:1350)

at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1263)

at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1088)

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1107)

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

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

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

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

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

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

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

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

at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

at GradleStart.main(Unknown Source)

 

 

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

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

 

-- Head --

Stacktrace:

at net.minecraft.client.renderer.entity.Render.doRenderShadowAndFire(Render.java:307)

 

-- Entity being rendered --

Details:

Entity Type: reallifemod.EntityLamborghini (itsamysterious.mods.reallifemod.core.vehicles.EntityVehicle)

Entity ID: 416

Entity Name: entity.reallifemod.EntityLamborghini.name

Entity's Exact location: -204,00, 69,00, 264,00

Entity's Block location: -204,00,69,00,264,00 - World: (-204,69,264), Chunk: (at 4,4,8 in -13,16; contains blocks -208,0,256 to -193,255,271), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)

Entity's Momentum: 0,00, 0,00, 0,00

Entity's Rider: ~~ERROR~~ NullPointerException: null

Entity's Vehicle: ~~ERROR~~ NullPointerException: null

 

-- Renderer details --

Details:

Assigned renderer: itsamysterious.mods.reallifemod.core.rendering.Entities.RenderVehicle@463aa3da

Location: -2,14,0,00,2,09 - World: (-3,0,2), Chunk: (at 13,0,2 in -1,0; contains blocks -16,0,0 to -1,255,15), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)

Rotation: 0.0

Delta: 0.86281586

Stacktrace:

at net.minecraft.client.renderer.entity.RenderManager.doRenderEntity(RenderManager.java:388)

at net.minecraft.client.renderer.entity.RenderManager.renderEntityStatic(RenderManager.java:334)

at net.minecraft.client.renderer.entity.RenderManager.renderEntitySimple(RenderManager.java:301)

at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:657)

at net.minecraft.client.renderer.EntityRenderer.renderWorldPass(EntityRenderer.java:1350)

at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1263)

 

-- Affected level --

Details:

Level name: MpServer

All players: 1 total; [EntityPlayerSP['ItsAMysterious'/319, l='MpServer', x=-201,86, y=69,00, z=261,91]]

Chunk stats: MultiplayerChunkCache: 121, 121

Level seed: 0

Level generator: ID 00 - default, ver 1. Features enabled: false

Level generator options:

Level spawn location: -184,00,64,00,256,00 - World: (-184,64,256), Chunk: (at 8,4,0 in -12,16; contains blocks -192,0,256 to -177,255,271), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)

Level time: 6984 game time, 6984 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: creative (ID 1). Hardcore: false. Cheats: false

Forced entities: 96 total; [EntityCow['Cow'/128, l='MpServer', x=-195,38, y=70,00, z=229,59], EntityCow['Cow'/129, l='MpServer', x=-207,59, y=68,00, z=250,78], EntityCow['Cow'/130, l='MpServer', x=-198,66, y=69,00, z=253,56], EntityCow['Cow'/131, l='MpServer', x=-206,69, y=69,00, z=283,81], EntityZombie['Zombie'/143, l='MpServer', x=-186,16, y=29,00, z=183,50], EntityZombie['Zombie'/144, l='MpServer', x=-185,13, y=29,00, z=183,47], EntityBat['Bat'/145, l='MpServer', x=-181,91, y=33,31, z=185,50], EntityBat['Bat'/146, l='MpServer', x=-176,28, y=41,00, z=188,66], EntityBat['Bat'/147, l='MpServer', x=-177,34, y=39,88, z=187,53], EntityCow['Cow'/148, l='MpServer', x=-178,50, y=85,00, z=189,78], EntityCreeper['Creeper'/149, l='MpServer', x=-178,50, y=40,00, z=206,50], EntityChicken['Chicken'/150, l='MpServer', x=-176,50, y=82,00, z=193,50], EntityChicken['Chicken'/151, l='MpServer', x=-177,50, y=82,00, z=193,50], EntitySkeleton['Skeleton'/152, l='MpServer', x=-178,31, y=10,05, z=212,69], EntityEnderman['Enderman'/153, l='MpServer', x=-179,66, y=20,00, z=215,06], EntitySkeleton['Skeleton'/154, l='MpServer', x=-179,50, y=40,00, z=211,50], EntitySkeleton['Skeleton'/155, l='MpServer', x=-177,50, y=40,00, z=210,50], EntityEnderman['Enderman'/156, l='MpServer', x=-177,66, y=19,00, z=231,06], EntityCow['Cow'/157, l='MpServer', x=-184,38, y=69,00, z=269,25], EntityCow['Cow'/158, l='MpServer', x=-177,78, y=70,00, z=333,59], EntityCow['Cow'/159, l='MpServer', x=-177,16, y=70,00, z=337,53], EntityCow['Cow'/160, l='MpServer', x=-180,31, y=70,00, z=341,53], EntityVehicle['entity.reallifemod.EntityLamborghini.name'/416, l='MpServer', x=-204,00, y=69,00, z=264,00], EntityCreeper['Creeper'/169, l='MpServer', x=-173,63, y=47,00, z=187,28], EntityCreeper['Creeper'/170, l='MpServer', x=-173,50, y=47,00, z=188,19], EntityZombie['Zombie'/171, l='MpServer', x=-161,94, y=28,00, z=205,50], EntityCreeper['Creeper'/172, l='MpServer', x=-176,41, y=19,97, z=230,44], EntityCreeper['Creeper'/173, l='MpServer', x=-170,53, y=20,00, z=216,81], EntityCreeper['Creeper'/174, l='MpServer', x=-175,09, y=40,00, z=209,53], EntityCreeper['Creeper'/175, l='MpServer', x=-173,00, y=40,00, z=208,50], EntityCow['Cow'/176, l='MpServer', x=-175,47, y=71,00, z=238,53], EntityCow['Cow'/177, l='MpServer', x=-162,81, y=71,00, z=240,28], EntityCow['Cow'/178, l='MpServer', x=-165,47, y=71,00, z=242,00], EntityCow['Cow'/179, l='MpServer', x=-167,88, y=71,00, z=255,16], EntitySkeleton['Skeleton'/184, l='MpServer', x=-159,78, y=21,00, z=201,75], EntityZombie['Zombie'/185, l='MpServer', x=-148,72, y=18,00, z=197,44], EntityChicken['Chicken'/186, l='MpServer', x=-157,28, y=75,00, z=205,59], EntitySpider['Spider'/58, l='MpServer', x=-277,50, y=23,00, z=330,50], EntityCow['Cow'/187, l='MpServer', x=-145,47, y=71,00, z=237,28], EntitySkeleton['Skeleton'/59, l='MpServer', x=-264,59, y=10,00, z=256,81], EntityCow['Cow'/188, l='MpServer', x=-146,31, y=71,00, z=239,53], EntitySquid['Squid'/60, l='MpServer', x=-255,50, y=59,03, z=282,47], EntityCow['Cow'/189, l='MpServer', x=-155,00, y=76,00, z=334,13], EntityPlayerSP['ItsAMysterious'/319, l='MpServer', x=-201,86, y=69,00, z=261,91], EntitySkeleton['Skeleton'/193, l='MpServer', x=-142,09, y=35,00, z=191,50], EntityZombie['Zombie'/195, l='MpServer', x=-130,34, y=20,00, z=200,06], EntityCreeper['Creeper'/197, l='MpServer', x=-137,63, y=21,00, z=213,00], EntityChicken['Chicken'/198, l='MpServer', x=-128,63, y=72,00, z=234,56], EntitySkeleton['Skeleton'/70, l='MpServer', x=-243,59, y=34,00, z=203,06], EntityChicken['Chicken'/199, l='MpServer', x=-134,25, y=72,00, z=234,88], EntityCow['Cow'/71, l='MpServer', x=-244,56, y=90,00, z=198,53], EntityBat['Bat'/72, l='MpServer', x=-243,47, y=27,10, z=210,25], EntityCow['Cow'/200, l='MpServer', x=-142,91, y=71,00, z=247,97], EntityCow['Cow'/73, l='MpServer', x=-255,63, y=78,00, z=225,06], EntityChicken['Chicken'/201, l='MpServer', x=-129,59, y=72,00, z=256,38], EntityCow['Cow'/74, l='MpServer', x=-241,19, y=71,00, z=224,22], EntityChicken['Chicken'/202, l='MpServer', x=-135,38, y=72,00, z=258,31], EntitySquid['Squid'/75, l='MpServer', x=-256,47, y=61,19, z=283,19], EntityZombie['Zombie'/203, l='MpServer', x=-129,28, y=10,00, z=286,09], EntitySquid['Squid'/76, l='MpServer', x=-255,66, y=61,41, z=281,44], EntityChicken['Chicken'/204, l='MpServer', x=-139,34, y=75,00, z=312,31], EntitySquid['Squid'/77, l='MpServer', x=-253,28, y=62,09, z=276,13], EntityCow['Cow'/78, l='MpServer', x=-245,81, y=63,00, z=272,59], EntitySkeleton['Skeleton'/86, l='MpServer', x=-227,09, y=16,00, z=187,47], EntityCreeper['Creeper'/88, l='MpServer', x=-237,41, y=20,00, z=195,00], EntityCow['Cow'/89, l='MpServer', x=-233,44, y=84,00, z=209,13], EntityZombie['Zombie'/90, l='MpServer', x=-237,28, y=55,00, z=246,81], EntityZombie['Zombie'/218, l='MpServer', x=-130,06, y=20,00, z=202,53], EntityCreeper['Creeper'/91, l='MpServer', x=-228,72, y=56,00, z=250,66], EntityZombie['Zombie'/219, l='MpServer', x=-124,75, y=20,00, z=200,78], EntityCreeper['Creeper'/92, l='MpServer', x=-227,97, y=56,00, z=243,56], EntityCreeper['Creeper'/93, l='MpServer', x=-228,31, y=56,00, z=251,56], EntityZombie['Zombie'/221, l='MpServer', x=-127,50, y=50,00, z=204,50], EntitySkeleton['Skeleton'/222, l='MpServer', x=-122,94, y=42,00, z=213,91], EntityZombie['Zombie'/225, l='MpServer', x=-123,72, y=42,00, z=214,69], EntitySkeleton['Skeleton'/228, l='MpServer', x=-125,06, y=13,00, z=291,53], EntitySkeleton['Skeleton'/229, l='MpServer', x=-125,72, y=13,00, z=290,19], EntityZombie['Zombie'/103, l='MpServer', x=-214,56, y=20,19, z=206,91], EntitySkeleton['Skeleton'/104, l='MpServer', x=-212,50, y=57,00, z=207,06], EntityZombie['Zombie'/105, l='MpServer', x=-218,06, y=20,50, z=212,47], EntitySkeleton['Skeleton'/106, l='MpServer', x=-208,50, y=28,00, z=232,88], EntityBat['Bat'/107, l='MpServer', x=-209,06, y=29,38, z=243,69], EntityBat['Bat'/108, l='MpServer', x=-216,41, y=19,10, z=231,50], EntityCow['Cow'/109, l='MpServer', x=-222,06, y=71,00, z=241,56], EntityCow['Cow'/110, l='MpServer', x=-217,09, y=78,00, z=232,88], EntityCow['Cow'/111, l='MpServer', x=-215,22, y=67,00, z=247,22], EntityCow['Cow'/112, l='MpServer', x=-218,28, y=67,00, z=245,00], EntityCow['Cow'/113, l='MpServer', x=-222,56, y=69,00, z=242,50], EntityCow['Cow'/114, l='MpServer', x=-208,06, y=69,00, z=266,97], EntityCow['Cow'/115, l='MpServer', x=-219,59, y=66,00, z=290,72], EntitySkeleton['Skeleton'/121, l='MpServer', x=-188,00, y=29,00, z=188,47], EntityZombie['Zombie'/122, l='MpServer', x=-200,94, y=24,00, z=184,47], EntityEnderman['Enderman'/124, l='MpServer', x=-194,56, y=41,00, z=206,91], EntityChicken['Chicken'/125, l='MpServer', x=-200,19, y=73,00, z=192,47], EntityEnderman['Enderman'/126, l='MpServer', x=-195,72, y=41,00, z=211,69], EntityEnderman['Enderman'/127, l='MpServer', x=-194,59, y=41,00, z=211,69]]

Retry entities: 0 total; []

Server brand: fml,forge

Server type: Integrated singleplayer server

Stacktrace:

at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:392)

at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2600)

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

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

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

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

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

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

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

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

at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

at GradleStart.main(Unknown Source)

 

-- System Details --

Details:

Minecraft Version: 1.8

Operating System: Windows 8.1 (amd64) version 6.3

Java Version: 1.8.0_51, Oracle Corporation

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

Memory: 610446512 bytes (582 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)

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

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

FML: MCP v9.10 FML v8.0.69.1354 Minecraft Forge 11.14.1.1354 5 mods loaded, 5 mods active

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

FML{8.0.69.1354} [Forge Mod Loader] (forgeSrc-1.8-11.14.1.1354.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

Forge{11.14.1.1354} [Minecraft Forge] (forgeSrc-1.8-11.14.1.1354.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

RenderPlayerAPI{1.4} [Render Player API] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

reallifemod{0.32} [Real Life Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

Loaded coremods (and transformers):

RenderPlayerAPIPlugin (RenderPlayerAPI-1.8-1.4.jar)

  api.player.forge.RenderPlayerAPITransformer

Launched Version: 1.8

LWJGL: 2.9.1

OpenGL: GeForce GTX 760/PCIe/SSE2 GL version 4.5.0 NVIDIA 353.62, NVIDIA Corporation

GL Caps: Using GL 1.3 multitexturing.

Using GL 1.3 texture combiners.

Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.

Shaders are available because OpenGL 2.1 is supported.

VBOs are available because OpenGL 1.5 is supported.

 

Using VBOs: Yes

Is Modded: Definitely; Client brand changed to 'fml,forge'

Type: Client (map_client.txt)

Resource Packs: []

Current Language: English (UK)

Profiler Position: N/A (disabled)

[17:43:03] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:660]: #@!@# Game crashed! Crash report saved to: #@!@# D:\Programmieren\Real Life Mod-Update To 1.8\eclipse\.\crash-reports\crash-2015-08-06_17.43.03-client.txt

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

Java HotSpot 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release

 

 

 

Posted

Jabelar,

I tended to go your option 2, but I am finding updating to 1.8 is making me second guess that.  It is annoying to go into each one and adjust it.  With a master one, I could just fix it in one place.

Long time Bukkit & Forge Programmer

Happy to try and help

Posted

Heres a version without debug println's

 

 

[17:42:55] [server thread/INFO]: Stopping server

[17:42:55] [server thread/INFO]: Saving players

[17:42:55] [server thread/INFO]: Saving worlds

[17:42:55] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/Overworld

[17:42:55] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/Nether

[17:42:55] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/The End

[17:43:02] [server thread/INFO] [FML]: Unloading dimension 0

[17:43:02] [server thread/INFO] [FML]: Unloading dimension -1

[17:43:02] [server thread/INFO] [FML]: Unloading dimension 1

[17:43:02] [server thread/INFO] [FML]: Applying holder lookups

[17:43:02] [server thread/INFO] [FML]: Holder lookups applied

[17:43:03] [Client thread/FATAL]: Reported exception thrown!

net.minecraft.util.ReportedException: Post-rendering entity in world

  at net.minecraft.client.renderer.entity.RenderManager.doRenderEntity(RenderManager.java:425) ~[RenderManager.class:?]

  at net.minecraft.client.renderer.entity.RenderManager.renderEntityStatic(RenderManager.java:334) ~[RenderManager.class:?]

  at net.minecraft.client.renderer.entity.RenderManager.renderEntitySimple(RenderManager.java:301) ~[RenderManager.class:?]

  at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:657) ~[RenderGlobal.class:?]

  at net.minecraft.client.renderer.EntityRenderer.renderWorldPass(EntityRenderer.java:1350) ~[EntityRenderer.class:?]

  at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1263) ~[EntityRenderer.class:?]

  at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1088) ~[EntityRenderer.class:?]

  at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1107) ~[Minecraft.class:?]

  at net.minecraft.client.Minecraft.run(Minecraft.java:376) [Minecraft.class:?]

  at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?]

  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_51]

  at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_51]

  at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_51]

  at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_51]

  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 net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]

  at GradleStart.main(Unknown Source) [start/:?]

Caused by: java.lang.NullPointerException

  at net.minecraft.client.renderer.entity.Render.doRenderShadowAndFire(Render.java:307) ~[Render.class:?]

  at net.minecraft.client.renderer.entity.RenderManager.doRenderEntity(RenderManager.java:388) ~[RenderManager.class:?]

  ... 17 more

[17:43:03] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:660]: ---- Minecraft Crash Report ----

// My bad.

 

Time: 06.08.15 17:43

Description: Post-rendering entity in world

 

java.lang.NullPointerException: Post-rendering entity in world

  at net.minecraft.client.renderer.entity.Render.doRenderShadowAndFire(Render.java:307)

  at net.minecraft.client.renderer.entity.RenderManager.doRenderEntity(RenderManager.java:388)

  at net.minecraft.client.renderer.entity.RenderManager.renderEntityStatic(RenderManager.java:334)

  at net.minecraft.client.renderer.entity.RenderManager.renderEntitySimple(RenderManager.java:301)

  at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:657)

  at net.minecraft.client.renderer.EntityRenderer.renderWorldPass(EntityRenderer.java:1350)

  at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1263)

  at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1088)

  at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1107)

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

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

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

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

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

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

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

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

  at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

  at GradleStart.main(Unknown Source)

 

 

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

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

 

-- Head --

Stacktrace:

  at net.minecraft.client.renderer.entity.Render.doRenderShadowAndFire(Render.java:307)

 

-- Entity being rendered --

Details:

  Entity Type: reallifemod.EntityLamborghini (itsamysterious.mods.reallifemod.core.vehicles.EntityVehicle)

  Entity ID: 416

  Entity Name: entity.reallifemod.EntityLamborghini.name

  Entity's Exact location: -204,00, 69,00, 264,00

  Entity's Block location: -204,00,69,00,264,00 - World: (-204,69,264), Chunk: (at 4,4,8 in -13,16; contains blocks -208,0,256 to -193,255,271), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)

  Entity's Momentum: 0,00, 0,00, 0,00

  Entity's Rider: ~~ERROR~~ NullPointerException: null

  Entity's Vehicle: ~~ERROR~~ NullPointerException: null

 

-- Renderer details --

Details:

  Assigned renderer: itsamysterious.mods.reallifemod.core.rendering.Entities.RenderVehicle@463aa3da

  Location: -2,14,0,00,2,09 - World: (-3,0,2), Chunk: (at 13,0,2 in -1,0; contains blocks -16,0,0 to -1,255,15), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)

  Rotation: 0.0

  Delta: 0.86281586

Stacktrace:

  at net.minecraft.client.renderer.entity.RenderManager.doRenderEntity(RenderManager.java:388)

  at net.minecraft.client.renderer.entity.RenderManager.renderEntityStatic(RenderManager.java:334)

  at net.minecraft.client.renderer.entity.RenderManager.renderEntitySimple(RenderManager.java:301)

  at net.minecraft.client.renderer.RenderGlobal.renderEntities(RenderGlobal.java:657)

  at net.minecraft.client.renderer.EntityRenderer.renderWorldPass(EntityRenderer.java:1350)

  at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1263)

 

-- Affected level --

Details:

  Level name: MpServer

  All players: 1 total; [EntityPlayerSP['ItsAMysterious'/319, l='MpServer', x=-201,86, y=69,00, z=261,91]]

  Chunk stats: MultiplayerChunkCache: 121, 121

  Level seed: 0

  Level generator: ID 00 - default, ver 1. Features enabled: false

  Level generator options:

  Level spawn location: -184,00,64,00,256,00 - World: (-184,64,256), Chunk: (at 8,4,0 in -12,16; contains blocks -192,0,256 to -177,255,271), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)

  Level time: 6984 game time, 6984 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: creative (ID 1). Hardcore: false. Cheats: false

  Forced entities: 96 total; [EntityCow['Cow'/128, l='MpServer', x=-195,38, y=70,00, z=229,59], EntityCow['Cow'/129, l='MpServer', x=-207,59, y=68,00, z=250,78], EntityCow['Cow'/130, l='MpServer', x=-198,66, y=69,00, z=253,56], EntityCow['Cow'/131, l='MpServer', x=-206,69, y=69,00, z=283,81], EntityZombie['Zombie'/143, l='MpServer', x=-186,16, y=29,00, z=183,50], EntityZombie['Zombie'/144, l='MpServer', x=-185,13, y=29,00, z=183,47], EntityBat['Bat'/145, l='MpServer', x=-181,91, y=33,31, z=185,50], EntityBat['Bat'/146, l='MpServer', x=-176,28, y=41,00, z=188,66], EntityBat['Bat'/147, l='MpServer', x=-177,34, y=39,88, z=187,53], EntityCow['Cow'/148, l='MpServer', x=-178,50, y=85,00, z=189,78], EntityCreeper['Creeper'/149, l='MpServer', x=-178,50, y=40,00, z=206,50], EntityChicken['Chicken'/150, l='MpServer', x=-176,50, y=82,00, z=193,50], EntityChicken['Chicken'/151, l='MpServer', x=-177,50, y=82,00, z=193,50], EntitySkeleton['Skeleton'/152, l='MpServer', x=-178,31, y=10,05, z=212,69], EntityEnderman['Enderman'/153, l='MpServer', x=-179,66, y=20,00, z=215,06], EntitySkeleton['Skeleton'/154, l='MpServer', x=-179,50, y=40,00, z=211,50], EntitySkeleton['Skeleton'/155, l='MpServer', x=-177,50, y=40,00, z=210,50], EntityEnderman['Enderman'/156, l='MpServer', x=-177,66, y=19,00, z=231,06], EntityCow['Cow'/157, l='MpServer', x=-184,38, y=69,00, z=269,25], EntityCow['Cow'/158, l='MpServer', x=-177,78, y=70,00, z=333,59], EntityCow['Cow'/159, l='MpServer', x=-177,16, y=70,00, z=337,53], EntityCow['Cow'/160, l='MpServer', x=-180,31, y=70,00, z=341,53], EntityVehicle['entity.reallifemod.EntityLamborghini.name'/416, l='MpServer', x=-204,00, y=69,00, z=264,00], EntityCreeper['Creeper'/169, l='MpServer', x=-173,63, y=47,00, z=187,28], EntityCreeper['Creeper'/170, l='MpServer', x=-173,50, y=47,00, z=188,19], EntityZombie['Zombie'/171, l='MpServer', x=-161,94, y=28,00, z=205,50], EntityCreeper['Creeper'/172, l='MpServer', x=-176,41, y=19,97, z=230,44], EntityCreeper['Creeper'/173, l='MpServer', x=-170,53, y=20,00, z=216,81], EntityCreeper['Creeper'/174, l='MpServer', x=-175,09, y=40,00, z=209,53], EntityCreeper['Creeper'/175, l='MpServer', x=-173,00, y=40,00, z=208,50], EntityCow['Cow'/176, l='MpServer', x=-175,47, y=71,00, z=238,53], EntityCow['Cow'/177, l='MpServer', x=-162,81, y=71,00, z=240,28], EntityCow['Cow'/178, l='MpServer', x=-165,47, y=71,00, z=242,00], EntityCow['Cow'/179, l='MpServer', x=-167,88, y=71,00, z=255,16], EntitySkeleton['Skeleton'/184, l='MpServer', x=-159,78, y=21,00, z=201,75], EntityZombie['Zombie'/185, l='MpServer', x=-148,72, y=18,00, z=197,44], EntityChicken['Chicken'/186, l='MpServer', x=-157,28, y=75,00, z=205,59], EntitySpider['Spider'/58, l='MpServer', x=-277,50, y=23,00, z=330,50], EntityCow['Cow'/187, l='MpServer', x=-145,47, y=71,00, z=237,28], EntitySkeleton['Skeleton'/59, l='MpServer', x=-264,59, y=10,00, z=256,81], EntityCow['Cow'/188, l='MpServer', x=-146,31, y=71,00, z=239,53], EntitySquid['Squid'/60, l='MpServer', x=-255,50, y=59,03, z=282,47], EntityCow['Cow'/189, l='MpServer', x=-155,00, y=76,00, z=334,13], EntityPlayerSP['ItsAMysterious'/319, l='MpServer', x=-201,86, y=69,00, z=261,91], EntitySkeleton['Skeleton'/193, l='MpServer', x=-142,09, y=35,00, z=191,50], EntityZombie['Zombie'/195, l='MpServer', x=-130,34, y=20,00, z=200,06], EntityCreeper['Creeper'/197, l='MpServer', x=-137,63, y=21,00, z=213,00], EntityChicken['Chicken'/198, l='MpServer', x=-128,63, y=72,00, z=234,56], EntitySkeleton['Skeleton'/70, l='MpServer', x=-243,59, y=34,00, z=203,06], EntityChicken['Chicken'/199, l='MpServer', x=-134,25, y=72,00, z=234,88], EntityCow['Cow'/71, l='MpServer', x=-244,56, y=90,00, z=198,53], EntityBat['Bat'/72, l='MpServer', x=-243,47, y=27,10, z=210,25], EntityCow['Cow'/200, l='MpServer', x=-142,91, y=71,00, z=247,97], EntityCow['Cow'/73, l='MpServer', x=-255,63, y=78,00, z=225,06], EntityChicken['Chicken'/201, l='MpServer', x=-129,59, y=72,00, z=256,38], EntityCow['Cow'/74, l='MpServer', x=-241,19, y=71,00, z=224,22], EntityChicken['Chicken'/202, l='MpServer', x=-135,38, y=72,00, z=258,31], EntitySquid['Squid'/75, l='MpServer', x=-256,47, y=61,19, z=283,19], EntityZombie['Zombie'/203, l='MpServer', x=-129,28, y=10,00, z=286,09], EntitySquid['Squid'/76, l='MpServer', x=-255,66, y=61,41, z=281,44], EntityChicken['Chicken'/204, l='MpServer', x=-139,34, y=75,00, z=312,31], EntitySquid['Squid'/77, l='MpServer', x=-253,28, y=62,09, z=276,13], EntityCow['Cow'/78, l='MpServer', x=-245,81, y=63,00, z=272,59], EntitySkeleton['Skeleton'/86, l='MpServer', x=-227,09, y=16,00, z=187,47], EntityCreeper['Creeper'/88, l='MpServer', x=-237,41, y=20,00, z=195,00], EntityCow['Cow'/89, l='MpServer', x=-233,44, y=84,00, z=209,13], EntityZombie['Zombie'/90, l='MpServer', x=-237,28, y=55,00, z=246,81], EntityZombie['Zombie'/218, l='MpServer', x=-130,06, y=20,00, z=202,53], EntityCreeper['Creeper'/91, l='MpServer', x=-228,72, y=56,00, z=250,66], EntityZombie['Zombie'/219, l='MpServer', x=-124,75, y=20,00, z=200,78], EntityCreeper['Creeper'/92, l='MpServer', x=-227,97, y=56,00, z=243,56], EntityCreeper['Creeper'/93, l='MpServer', x=-228,31, y=56,00, z=251,56], EntityZombie['Zombie'/221, l='MpServer', x=-127,50, y=50,00, z=204,50], EntitySkeleton['Skeleton'/222, l='MpServer', x=-122,94, y=42,00, z=213,91], EntityZombie['Zombie'/225, l='MpServer', x=-123,72, y=42,00, z=214,69], EntitySkeleton['Skeleton'/228, l='MpServer', x=-125,06, y=13,00, z=291,53], EntitySkeleton['Skeleton'/229, l='MpServer', x=-125,72, y=13,00, z=290,19], EntityZombie['Zombie'/103, l='MpServer', x=-214,56, y=20,19, z=206,91], EntitySkeleton['Skeleton'/104, l='MpServer', x=-212,50, y=57,00, z=207,06], EntityZombie['Zombie'/105, l='MpServer', x=-218,06, y=20,50, z=212,47], EntitySkeleton['Skeleton'/106, l='MpServer', x=-208,50, y=28,00, z=232,88], EntityBat['Bat'/107, l='MpServer', x=-209,06, y=29,38, z=243,69], EntityBat['Bat'/108, l='MpServer', x=-216,41, y=19,10, z=231,50], EntityCow['Cow'/109, l='MpServer', x=-222,06, y=71,00, z=241,56], EntityCow['Cow'/110, l='MpServer', x=-217,09, y=78,00, z=232,88], EntityCow['Cow'/111, l='MpServer', x=-215,22, y=67,00, z=247,22], EntityCow['Cow'/112, l='MpServer', x=-218,28, y=67,00, z=245,00], EntityCow['Cow'/113, l='MpServer', x=-222,56, y=69,00, z=242,50], EntityCow['Cow'/114, l='MpServer', x=-208,06, y=69,00, z=266,97], EntityCow['Cow'/115, l='MpServer', x=-219,59, y=66,00, z=290,72], EntitySkeleton['Skeleton'/121, l='MpServer', x=-188,00, y=29,00, z=188,47], EntityZombie['Zombie'/122, l='MpServer', x=-200,94, y=24,00, z=184,47], EntityEnderman['Enderman'/124, l='MpServer', x=-194,56, y=41,00, z=206,91], EntityChicken['Chicken'/125, l='MpServer', x=-200,19, y=73,00, z=192,47], EntityEnderman['Enderman'/126, l='MpServer', x=-195,72, y=41,00, z=211,69], EntityEnderman['Enderman'/127, l='MpServer', x=-194,59, y=41,00, z=211,69]]

  Retry entities: 0 total; []

  Server brand: fml,forge

  Server type: Integrated singleplayer server

Stacktrace:

  at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:392)

  at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2600)

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

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

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

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

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

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

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

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

  at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

  at GradleStart.main(Unknown Source)

 

-- System Details --

Details:

  Minecraft Version: 1.8

  Operating System: Windows 8.1 (amd64) version 6.3

  Java Version: 1.8.0_51, Oracle Corporation

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

  Memory: 610446512 bytes (582 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)

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

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

  FML: MCP v9.10 FML v8.0.69.1354 Minecraft Forge 11.14.1.1354 5 mods loaded, 5 mods active

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

  FML{8.0.69.1354} [Forge Mod Loader] (forgeSrc-1.8-11.14.1.1354.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

  Forge{11.14.1.1354} [Minecraft Forge] (forgeSrc-1.8-11.14.1.1354.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

  RenderPlayerAPI{1.4} [Render Player API] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

  reallifemod{0.32} [Real Life Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

  Loaded coremods (and transformers):

RenderPlayerAPIPlugin (RenderPlayerAPI-1.8-1.4.jar)

  api.player.forge.RenderPlayerAPITransformer

  Launched Version: 1.8

  LWJGL: 2.9.1

  OpenGL: GeForce GTX 760/PCIe/SSE2 GL version 4.5.0 NVIDIA 353.62, NVIDIA Corporation

  GL Caps: Using GL 1.3 multitexturing.

Using GL 1.3 texture combiners.

Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.

Shaders are available because OpenGL 2.1 is supported.

VBOs are available because OpenGL 1.5 is supported.

 

  Using VBOs: Yes

  Is Modded: Definitely; Client brand changed to 'fml,forge'

  Type: Client (map_client.txt)

  Resource Packs: []

  Current Language: English (UK)

  Profiler Position: N/A (disabled)

[17:43:03] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:660]: #@!@# Game crashed! Crash report saved to: #@!@# D:\Programmieren\Real Life Mod-Update To 1.8\eclipse\.\crash-reports\crash-2015-08-06_17.43.03-client.txt

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

Java HotSpot 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release

 

 

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I just removed that mod as well and it's still stuck on 100% loading and does still not go past it. all of my modded maps are so unplayable, i like, have no idea what to do https://mclo.gs/XHWCu5M
    • Here is the newest crash report because I've been trying to fix the problem for hours, please help me also its "error code -1"   ---- Minecraft Crash Report ---- // Daisy, daisy... Time: 2024-11-27 15:43:43 Description: Rendering screen java.lang.NoClassDefFoundError: org/spongepowered/asm/synthetic/args/Args$1     at net.minecraft.client.gui.GuiGraphics.m_280677_(GuiGraphics.java:562) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.GuiGraphics.renderTooltip(GuiGraphics.java:556) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_280072_(AbstractContainerScreen.java:163) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:attributeslib.mixins.json:client.AbstractContainerScreenMixin,pl:mixin:APP:majruszlibrary-forge.mixins.json:MixinAbstractContainerScreen,plasmixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.inventoasasry.CreativeModeInventoryScreen.m_88315_(CreativeModeInventoryScreen.java:650) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.Screen.m_280264_(Screen.java:109) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:patchouli_xplat.mixins.json:client.AccessorScreen,pl:mixin:APP:CustomCursor-comm-common.mixins.json:ScreenIgnoreRenderAfterOverlayMixin,pl:mixin:APP:CustomCursor-comm-common.mixins.json:ScreenMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraftforge.client.ForgeHooksClient.drawScreenInternal(ForgeHooksClient.java:427) ~[forge-1.20.1-47.3.0-universal.jar%23355!/:?] {re:classloading,re:mixin}     at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:420) ~[forge-1.20.1-47.3.0-universal.jar%23355!/:?] {re:classloading,re:mixin}     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:965) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:jeg.mixins.json:client.GameRendererMixin,pl:mixin:APP:alexscaves.mixins.json:client.GameRendererMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.compat.MixinGameRenderer,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:alexscaves.mixins.json:client.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinMinecraft,pl:mixin:APP:jeg.mixins.json:client.MinecraftMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:alexscaves.mixins.json:client.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinMinecraft,pl:mixin:APP:jeg.mixins.json:client.MinecraftMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:classloading,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:?] {} Caused by: java.lang.ClassNotFoundException: org.spongepowered.asm.synthetic.args.Args$1     at jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) ~[?:?] {}     at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {}     at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:137) ~[securejarhandler-2.1.10.jar:?] {}     at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {}     at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:137) ~[securejarhandler-2.1.10.jar:?] {}     at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {}     ... 26 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Suspected Mods: NONE Stacktrace:     at net.minecraft.client.gui.GuiGraphics.m_280677_(GuiGraphics.java:562) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.GuiGraphics.renderTooltip(GuiGraphics.java:556) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_280072_(AbstractContainerScreen.java:163) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:attributeslib.mixins.json:client.AbstractContainerScreenMixin,pl:mixin:APP:majruszlibrary-forge.mixins.json:MixinAbstractContainerScreen,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.inventory.CreativeModeInventoryScreen.m_88315_(CreativeModeInventoryScreen.java:650) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraft.client.gui.screens.Screen.m_280264_(Screen.java:109) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:patchouli_xplat.mixins.json:client.AccessorScreen,pl:mixin:APP:CustomCursor-comm-common.mixins.json:ScreenIgnoreRenderAfterOverlayMixin,pl:mixin:APP:CustomCursor-comm-common.mixins.json:ScreenMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraftforge.client.ForgeHooksClient.drawScreenInternal(ForgeHooksClient.java:427) ~[forge-1.20.1-47.3.0-universal.jar%23355!/:?] {re:classloading,re:mixin}     at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:420) ~[forge-1.20.1-47.3.0-universal.jar%23355!/:?] {re:classloading,re:mixin} -- Screen render details -- Details:     Screen name: net.minecraft.client.gui.screens.inventory.CreativeModeInventoryScreen     Mouse location: Scaled: (273, 153). Absolute: (546.000000, 307.000000)     Screen size: Scaled: (547, 308). Absolute: (1093, 615). Scale factor of 2.000000 Stacktrace:     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:965) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:jeg.mixins.json:client.GameRendererMixin,pl:mixin:APP:alexscaves.mixins.json:client.GameRendererMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.compat.MixinGameRenderer,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:alexscaves.mixins.json:client.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinMinecraft,pl:mixin:APP:jeg.mixins.json:client.MinecraftMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:alexscaves.mixins.json:client.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinMinecraft,pl:mixin:APP:jeg.mixins.json:client.MinecraftMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:classloading,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:?] {} -- Affected level -- Details:     All players: 1 total; [LocalPlayer['muglad'/4, l='ClientLevel', x=11.34, y=-62.50, z=7.05]]     Chunk stats: 529, 313     Level dimension: minecraft:overworld     Level spawn location: World: (0,-63,0), Section: (at 0,1,0 in 0,-4,0; chunk contains blocks 0,-64,0 to 15,319,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)     Level time: 522 game time, 522 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%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:citadel.mixins.json:client.ClientLevelMixin,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinClientLevel,pl:mixin:APP:starlight.mixins.json:client.world.ClientLevelMixin,pl:mixin:APP:alexscaves.mixins.json:client.ClientLevelMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2319) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:alexscaves.mixins.json:client.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinMinecraft,pl:mixin:APP:jeg.mixins.json:client.MinecraftMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:735) ~[client-1.20.1-20230612.114412-srg.jar%23350!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:alexscaves.mixins.json:client.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.world_leaks.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:bugfix.concurrency.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.blast_search_trees.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftMixin,pl:mixin:APP:modernfix-common.mixins.json:feature.measure_time.MinecraftMixin,pl:mixin:APP:modernfix-forge.mixins.json:feature.measure_time.MinecraftMixin_Forge,pl:mixin:APP:bookshelf.common.mixins.json:accessors.client.AccessorMinecraft,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:monolib.mixins.json:MinecraftMixin,pl:mixin:APP:majruszlibrary-common.mixins.json:MixinMinecraft,pl:mixin:APP:jeg.mixins.json:client.MinecraftMixin,pl:mixin:APP:immediatelyfast-common.mixins.json:core.MixinMinecraftClient,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:classloading,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, mod_resources -- System Details -- Details:     Minecraft Version: 1.20.1     Minecraft Version ID: 1.20.1     Operating System: Windows 11 (amd64) version 10.0     Java Version: 17.0.8, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 1400903168 bytes (1336 MiB) / 3370123264 bytes (3214 MiB) up to 4261412864 bytes (4064 MiB)     CPUs: 4     Processor Vendor: GenuineIntel     Processor Name: 11th Gen Intel(R) Core(TM) i3-1115G4 @ 3.00GHz     Identifier: Intel64 Family 6 Model 140 Stepping 1     Microarchitecture: Tiger Lake     Frequency (GHz): 3.00     Number of physical packages: 1     Number of physical CPUs: 2     Number of logical CPUs: 4     Graphics card #0 name: Intel(R) UHD Graphics     Graphics card #0 vendor: Intel Corporation (0x8086)     Graphics card #0 VRAM (MB): 128.00     Graphics card #0 deviceId: 0x9a78     Graphics card #0 versionInfo: DriverVersion=31.0.101.5186     Memory slot #0 capacity (MB): 4096.00     Memory slot #0 clockSpeed (GHz): 3.20     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 4096.00     Memory slot #1 clockSpeed (GHz): 3.20     Memory slot #1 type: DDR4     Virtual memory max (MB): 19346.77     Virtual memory used (MB): 17116.04     Swap memory total (MB): 11511.14     Swap memory used (MB): 2066.14     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx4064m -Xms256m     Launched Version: forge-47.3.0     Backend library: LWJGL version 3.3.1 build 7     Backend API: Intel(R) UHD Graphics GL version 4.6.0 - Build 31.0.101.5186, Intel     Window size: 1093x615     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: fast     Resource Packs:      Current Language: en_us     CPU: 4x 11th Gen Intel(R) Core(TM) i3-1115G4 @ 3.00GHz     Server Running: true     Player Count: 1 / 8; [ServerPlayer['muglad'/4, l='ServerLevel[New Worldassssssssssssasasas]', x=11.34, y=-62.50, z=7.05]]     Data Packs: vanilla, mod:elevated_enchantment, mod:treechopper (incompatible), mod:quarryplus, mod:geckolib, mod:playeranimator (incompatible), mod:placebo (incompatible), mod:modernfix (incompatible), mod:citadel (incompatible), mod:mixinextras (incompatible), mod:morebuckets, mod:botanypotstiers (incompatible), mod:bookshelf, mod:ironshulkerbox, mod:ironbookshelves, mod:raw_iron_block_can_be_heated, mod:iron_extra_things, mod:cloth_config (incompatible), mod:more_villager_trades, mod:ironbows (incompatible), mod:industrialforegoing (incompatible), mod:farmersdelight, mod:iron_ender_chests, mod:ironfurnaces, mod:structurecompass, mod:lionfishapi (incompatible), mod:mysticaladaptations, mod:maxxam_aiot, mod:structureexpansion (incompatible), mod:patchouli (incompatible), mod:ironchests (incompatible), mod:advancednetherite, mod:mysticalagriculturedelight, mod:gk_unbreakable (incompatible), mod:attributeslib (incompatible), mod:mysticalcustomization, mod:mifa, mod:resourcefullib (incompatible), mod:veinst, mod:architectury (incompatible), mod:squatgrow (incompatible), mod:xenotech (incompatible), mod:monolib (incompatible), mod:disenchanting_table (incompatible), mod:more_bows_and_arrows (incompatible), mod:hasteenchantment, mod:quad (incompatible), mod:ironcoals (incompatible), mod:framework, mod:nebs (incompatible), mod:majruszlibrary (incompatible), mod:fixed_netherite, mod:x_player_info (incompatible), mod:cucumber, mod:jeg (incompatible), mod:ironladders, mod:attributefix (incompatible), mod:configlibtxf, mod:fortune_on_netherite_forge, mod:caelus (incompatible), mod:enchantment_reveal (incompatible), mod:botanypots (incompatible), mod:starlight (incompatible), mod:grand_enchantment_table, mod:iron_bushes, mod:iron_fishing_rods, mod:puzzlesaccessapi, mod:forge, mod:more_wandering_trades, mod:mctb (incompatible), mod:mteg (incompatible), mod:mysticalagriculture, mod:mysticalagradditions, mod:matc, mod:mysticriftsmelt_ancient_debris, mod:more_underground_structures, mod:lucky (incompatible), mod:aurorasarsenal (incompatible), mod:alexscaves, mod:more_useful_copper (incompatible), mod:enchdesc (incompatible), mod:customcursorcomm (incompatible), mod:titanium (incompatible), mod:mysterious_mountain_lib (incompatible), mod:ironspawners, mod:enchlevellangpatch (incompatible), mod:vtaw_mw (incompatible), mod:mr_reds_morestructures, mod:watching, mod:ironbarrels, mod:mysticalexpansion, mod:easy_emerald, mod:more_beautiful_torches (incompatible), mod:universalenchants, mod:immediatelyfast (incompatible), mod:moremobvariants, mod:ferritecore (incompatible), mod:mvw, mod:puzzleslib, mod:overpowered_creative_items, mod:overloadedarmorbar (incompatible), mod:overflowingbars     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         [email protected]         javafml@null     Mod List:          Elevated enchantment-forge_1.20.1.jar             |Elevated enchantment          |elevated_enchantment          |1.0.0               |DONE      |Manifest: NOSIGNATURE         treechopper-1.0.0.jar                             |TreeChopper                   |treechopper                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         AdditionalEnchantedMiner-1.20.1-1201.1.90.jar     |QuarryPlus                    |quarryplus                    |1201.1.90           |DONE      |Manifest: ef:50:af:b3:03:e0:3e:70:a7:ef:78:77:a5:4d:d4:b5:07:ec:df:9d:d6:f3:12:13:c9:3c:cd:9a:0a:3e:6b:43         geckolib-forge-1.20.1-4.4.9.jar                   |GeckoLib 4                    |geckolib                      |4.4.9               |DONE      |Manifest: NOSIGNATURE         player-animation-lib-forge-1.0.2-rc1+1.20.jar     |Player Animator               |playeranimator                |1.0.2-rc1+1.20      |DONE      |Manifest: NOSIGNATURE         Placebo-1.20.1-8.6.2.jar                          |Placebo                       |placebo                       |8.6.2               |DONE      |Manifest: NOSIGNATURE         modernfix-forge-5.19.5+mc1.20.1.jar               |ModernFix                     |modernfix                     |5.19.5+mc1.20.1     |DONE      |Manifest: NOSIGNATURE         citadel-2.6.0-1.20.1.jar                          |Citadel                       |citadel                       |2.6.0               |DONE      |Manifest: NOSIGNATURE         mixinextras-forge-0.4.1.jar                       |MixinExtras                   |mixinextras                   |0.4.1               |DONE      |Manifest: NOSIGNATURE         MoreBuckets-1.20.1-4.0.4.jar                      |More Buckets                  |morebuckets                   |4.0.4               |DONE      |Manifest: NOSIGNATURE         BotanyPotsTiers-Forge-1.20.1-6.0.1.jar            |BotanyPotsTiers               |botanypotstiers               |6.0.1               |DONE      |Manifest: NOSIGNATURE         Bookshelf-Forge-1.20.1-20.2.13.jar                |Bookshelf                     |bookshelf                     |20.2.13             |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         ironshulkerbox-1.20.1-5.3.2.jar                   |Iron Shulker Boxes            |ironshulkerbox                |1.20.1-5.3.2        |DONE      |Manifest: NOSIGNATURE         ironbookshelves-1.20.1-1.4.0-forge.jar            |Iron Bookshelves              |ironbookshelves               |1.20.1-1.4.0-forge  |DONE      |Manifest: NOSIGNATURE         raw_iron_block_can_heated-1.0.0-forge-1.20.1.jar  |Raw Iron Block can be heated  |raw_iron_block_can_be_heated  |1.0.0               |DONE      |Manifest: NOSIGNATURE         Iron Extra Things 1.0.6.jar                       |Iron Extra Things             |iron_extra_things             |1.0.5               |DONE      |Manifest: NOSIGNATURE         cloth-config-11.1.136-forge.jar                   |Cloth Config v10 API          |cloth_config                  |11.1.136            |DONE      |Manifest: NOSIGNATURE         More Villager Trades 1.0.0 - 1.20.1.jar           |More Villager Trades          |more_villager_trades          |1.0.0               |DONE      |Manifest: NOSIGNATURE         ironbows-1.20.1-FORGE-1.10.jar                    |Iron Bows (Forge)             |ironbows                      |1.20.1-FORGE-1.10   |DONE      |Manifest: NOSIGNATURE         industrial-foregoing-1.20.1-3.5.19.jar            |Industrial Foregoing          |industrialforegoing           |3.5.19              |DONE      |Manifest: NOSIGNATURE         FarmersDelight-1.20.1-1.2.5.jar                   |Farmer's Delight              |farmersdelight                |1.20.1-1.2.5        |DONE      |Manifest: NOSIGNATURE         iron_ender_chests-1.20-1.0.3.jar                  |Iron Ender Chests             |iron_ender_chests             |1.20-1.0.3          |DONE      |Manifest: NOSIGNATURE         ironfurnaces-1.20.1-4.1.6.jar                     |Iron Furnaces                 |ironfurnaces                  |4.1.6               |DONE      |Manifest: NOSIGNATURE         StructureCompass-1.20.1-2.1.0.jar                 |Structure Compass Mod         |structurecompass              |2.1.0               |DONE      |Manifest: NOSIGNATURE         lionfishapi-2.4-Fix.jar                           |LionfishAPI                   |lionfishapi                   |2.4-Fix             |DONE      |Manifest: NOSIGNATURE         MysticalAdaptations-1.20.1-1.0.1.jar              |Mystical Adaptations          |mysticaladaptations           |1.20.1-1.0.1        |DONE      |Manifest: NOSIGNATURE         AIOT 1.20.1 (v2.3) by 96maxxam69.jar              |maxxam AIOTs                  |maxxam_aiot                   |2.3                 |DONE      |Manifest: NOSIGNATURE         structure-expansion-2.0.1-build.11.jar            |Structure Expansion           |structureexpansion            |2.0.1-build.11      |DONE      |Manifest: NOSIGNATURE         Patchouli-1.20.1-84-FORGE.jar                     |Patchouli                     |patchouli                     |1.20.1-84-FORGE     |DONE      |Manifest: NOSIGNATURE         ironchests-5.0.2-forge.jar                        |Iron Chests: Restocked        |ironchests                    |5.0.2               |DONE      |Manifest: NOSIGNATURE         advancednetherite-forge-2.1.3-1.20.1.jar          |Advanced Netherite            |advancednetherite             |2.1.3               |DONE      |Manifest: NOSIGNATURE         mysticalagriculturedelight-1.0.2-1.20.1.jar       |Mystical Agriculture Delight  |mysticalagriculturedelight    |1.0.2-1.20.1        |DONE      |Manifest: NOSIGNATURE         gk_unbreakable-2.7.jar                            |Simple Unbreakable Tools      |gk_unbreakable                |2.7                 |DONE      |Manifest: NOSIGNATURE         ApothicAttributes-1.20.1-1.3.7.jar                |Apothic Attributes            |attributeslib                 |1.3.7               |DONE      |Manifest: NOSIGNATURE         MysticalCustomization-1.20.1-5.0.2.jar            |Mystical Customization        |mysticalcustomization         |5.0.2               |DONE      |Manifest: NOSIGNATURE         mifa-forge-1.20.x-1.1.1.jar                       |More Industrial Foregoing Addo|mifa                          |1.1.1               |DONE      |Manifest: NOSIGNATURE         resourcefullib-forge-1.20-2.0.6.jar               |Resourceful Lib               |resourcefullib                |2.0.6               |DONE      |Manifest: NOSIGNATURE         veinst-1.0.0.jar                                  |Veinst                        |veinst                        |1.0.0               |DONE      |Manifest: NOSIGNATURE         architectury-9.2.14-forge.jar                     |Architectury                  |architectury                  |9.2.14              |DONE      |Manifest: NOSIGNATURE         squatgrow-forge-5.3.0+mc1.20.1.jar                |Squat Grow                    |squatgrow                     |5.3.0+mc1.20.1      |DONE      |Manifest: NOSIGNATURE         xenotech-1.20.1-1.17.jar                          |XenoTech                      |xenotech                      |1.20.1-1.17         |DONE      |Manifest: NOSIGNATURE         monolib-forge-1.20.1-1.4.1.jar                    |MonoLib                       |monolib                       |1.4.1               |DONE      |Manifest: NOSIGNATURE         disenchanting_table-merged-1.20.1-3.1.0.jar       |Dis-Enchanting Table          |disenchanting_table           |3.1.0               |DONE      |Manifest: NOSIGNATURE         more_bows_and_arrows-merged-1.20.1-3.2.0.jar      |More Bows and Arrows          |more_bows_and_arrows          |3.2.0               |DONE      |Manifest: NOSIGNATURE         Haste Enchantment 1.0.0 - 1.20.1.jar              |Haste Enchantment             |hasteenchantment              |1.0.0               |DONE      |Manifest: NOSIGNATURE         Quad-1.2.9+1.20.4-Forge.jar                       |Quad                          |quad                          |1.2.9               |DONE      |Manifest: NOSIGNATURE         ironcoals-4.1.6.jar                               |Iron Coals                    |ironcoals                     |4.1.6               |DONE      |Manifest: NOSIGNATURE         framework-forge-1.20.1-0.7.12.jar                 |Framework                     |framework                     |0.7.12              |DONE      |Manifest: 0d:78:5f:44:c0:47:0c:8c:e2:63:a3:04:43:d4:12:7d:b0:7c:35:37:dc:40:b1:c1:98:ec:51:eb:3b:3c:45:99         NekosEnchantedBooks-1.20.1-1.8.0.jar              |Neko's Enchanted Books        |nebs                          |1.8.0               |DONE      |Manifest: NOSIGNATURE         majrusz-library-forge-1.20.1-7.0.8.jar            |Majrusz Library               |majruszlibrary                |7.0.8               |DONE      |Manifest: NOSIGNATURE         ReworkedNetheriteV2.jar                           |Fixed netherite               |fixed_netherite               |1.0.0               |DONE      |Manifest: NOSIGNATURE         X-PlayerInfo-1.20.1-1.0.8.1-SNAPSHOT.jar          |X-PlayerInfo                  |x_player_info                 |1.20.1-1.0.8.1-SNAPS|DONE      |Manifest: NOSIGNATURE         Cucumber-1.20.1-7.0.13.jar                        |Cucumber Library              |cucumber                      |7.0.13              |DONE      |Manifest: NOSIGNATURE         JustEnoughGuns-0.8.0-1.20.1.jar                   |Just Enough Guns              |jeg                           |0.8.0               |DONE      |Manifest: NOSIGNATURE         ironladders-1.20.1-2.5.10-forge.jar               |Iron Ladders                  |ironladders                   |2.5.10              |DONE      |Manifest: NOSIGNATURE         AttributeFix-Forge-1.20.1-21.0.4.jar              |AttributeFix                  |attributefix                  |21.0.4              |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         configlibtxf-4.2.5-forge.jar                      |ConfigLib TXF                 |configlibtxf                  |4.2.5-forge         |DONE      |Manifest: NOSIGNATURE         fortune_on_netherite_1.1.0_forge_1.20.1.jar       |Fortune on Netherite forge    |fortune_on_netherite_forge    |1.0.0               |DONE      |Manifest: NOSIGNATURE         caelus-forge-3.2.0+1.20.1.jar                     |Caelus API                    |caelus                        |3.2.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         Enchantment-Reveal-1.20.1-Forge.jar               |Enchantment Reveal            |enchantment_reveal            |1.0.0               |DONE      |Manifest: NOSIGNATURE         BotanyPots-Forge-1.20.1-13.0.39.jar               |BotanyPots                    |botanypots                    |13.0.39             |DONE      |Manifest: NOSIGNATURE         starlight-1.1.2+forge.1cda73c.jar                 |Starlight                     |starlight                     |1.1.2+forge.1cda73c |DONE      |Manifest: NOSIGNATURE         Grand Enchantment Table 1.0.0 - 1.20.1.jar        |Grand Enchantment Table       |grand_enchantment_table       |1.0.0               |DONE      |Manifest: NOSIGNATURE         Iron Bushes 1.0.0 - 1.20.1.jar                    |Iron Bushes                   |iron_bushes                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         Iron Fishing Rods 1.0.0 - 1.20.1.jar              |Iron Fishing Rods             |iron_fishing_rods             |1.0.0               |DONE      |Manifest: NOSIGNATURE         puzzlesaccessapi-forge-8.0.7.jar                  |Puzzles Access Api            |puzzlesaccessapi              |8.0.7               |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         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         More Wandering Trades 1.0.0 - 1.20.1.jar          |More Wandering Trades         |more_wandering_trades         |1.0.0               |DONE      |Manifest: NOSIGNATURE         [1.20.1]MoreCraftingTables-5.1.3.jar              |More Crafting Tables Mod      |mctb                          |1.20.1              |DONE      |Manifest: NOSIGNATURE         M'TEG-1.1.0-1.20.1.jar                            |Mo' Than Enough Guns          |mteg                          |1.1.0               |DONE      |Manifest: NOSIGNATURE         MysticalAgriculture-1.20.1-7.0.14.jar             |Mystical Agriculture          |mysticalagriculture           |7.0.14              |DONE      |Manifest: NOSIGNATURE         MysticalAgradditions-1.20.1-7.0.6.jar             |Mystical Agradditions         |mysticalagradditions          |7.0.6               |DONE      |Manifest: NOSIGNATURE         matc-1.6.0.jar                                    |Mystical Agriculture Tiered Cr|matc                          |1.6.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         mysticriftsmelt_ancient_debris-1.2.2-forge-1.20.1.|MysticRift:Smelt Ancient Debri|mysticriftsmelt_ancient_debris|1.2.2               |DONE      |Manifest: NOSIGNATURE         more_undrground_structures_1.20.1_8.1.jar         |more underground structures   |more_underground_structures   |7.1.0               |DONE      |Manifest: NOSIGNATURE         lucky-block-forge-1.20.1-13.0.jar                 |Lucky Block                   |lucky                         |1.20.1-13.0         |DONE      |Manifest: NOSIGNATURE         Aurora's-Arsenal-1.0.0-1.20.1.jar                 |Aurora's Arsenal              |aurorasarsenal                |1.0.0               |DONE      |Manifest: NOSIGNATURE         alexscaves-2.0.2.jar                              |Alex's Caves                  |alexscaves                    |2.0.2               |DONE      |Manifest: NOSIGNATURE         more_useful_copper-merged-1.20.1-1.2.0.jar        |More Useful Copper            |more_useful_copper            |1.2.0               |DONE      |Manifest: NOSIGNATURE         EnchantmentDescriptions-Forge-1.20.1-17.1.19.jar  |EnchantmentDescriptions       |enchdesc                      |17.1.19             |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         CustomCursor-comm-1.2.0-forge.jar                 |customcursorcomm              |customcursorcomm              |1.0-SNAPSHOT        |DONE      |Manifest: NOSIGNATURE         titanium-1.20.1-3.8.32.jar                        |Titanium                      |titanium                      |3.8.32              |DONE      |Manifest: NOSIGNATURE         mysterious_mountain_lib-1.5.17-1.20.1.jar         |Mysterious Mountain Lib       |mysterious_mountain_lib       |1.5.17-1.20.1       |DONE      |Manifest: NOSIGNATURE         ironspawners-1.0.0.jar                            |Iron Spawners                 |ironspawners                  |1.0.0               |DONE      |Manifest: NOSIGNATURE         enchlevel-langpatch-2.2.8.jar                     |Enchantment Level Language Pat|enchlevellangpatch            |2.2.8               |DONE      |Manifest: NOSIGNATURE         vtaw_mw-forge-1.20.1-1.0.4.jar                    |Variant Tools and Weaponry - E|vtaw_mw                       |1.0.4               |DONE      |Manifest: NOSIGNATURE         reds-more-structures-1.0.8-common.jar             |Red’s More Structures         |mr_reds_morestructures        |1.0.8               |DONE      |Manifest: NOSIGNATURE         From-The-Fog-1.20-v1.9.2-Forge-Fabric.jar         |From The Fog                  |watching                      |1.9.2               |DONE      |Manifest: NOSIGNATURE         IronBarrels1.20.1-V1.0.jar                        |IronBarrelsUpdated            |ironbarrels                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         MysticalExpansion-1.20.1-1.0.0.jar                |Mystical Expansion            |mysticalexpansion             |1.0.0               |DONE      |Manifest: NOSIGNATURE         EasyEmerald-Forge-1.20.1-1.5.8.jar                |Easy Emerald                  |easy_emerald                  |1.5.8               |DONE      |Manifest: NOSIGNATURE         more_beautiful_torches-merged-1.20.1-3.0.0.jar    |More Beautiful Torches!       |more_beautiful_torches        |3.0.0               |DONE      |Manifest: NOSIGNATURE         UniversalEnchants-v8.0.0-1.20.1-Forge.jar         |Universal Enchants            |universalenchants             |8.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         ImmediatelyFast-Forge-1.3.2+1.20.4.jar            |ImmediatelyFast               |immediatelyfast               |1.3.2+1.20.4        |DONE      |Manifest: NOSIGNATURE         moremobvariants-forge+1.20.1-1.3.0.1.jar          |More Mob Variants             |moremobvariants               |1.3.0.1             |DONE      |Manifest: NOSIGNATURE         ferritecore-6.0.1-forge.jar                       |Ferrite Core                  |ferritecore                   |6.0.1               |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         Mvw-2.3.3c.jar                                    |MoreVanillaWeapons            |mvw                           |2.3.3c              |DONE      |Manifest: NOSIGNATURE         PuzzlesLib-v8.1.25-1.20.1-Forge.jar               |Puzzles Lib                   |puzzleslib                    |8.1.25              |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         Overpowered Creative Items.jar                    |Overpowered Creative Items    |overpowered_creative_items    |1.0.0               |DONE      |Manifest: NOSIGNATURE         overloadedarmorbar-1.20.1-1.jar                   |Overloaded Armor Bar          |overloadedarmorbar            |1.20.1-1            |DONE      |Manifest: NOSIGNATURE         OverflowingBars-v8.0.1-1.20.1-Forge.jar           |Overflowing Bars              |overflowingbars               |8.0.1               |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     Crash Report UUID: ccaf101c-823f-47b9-9c2f-7d3d0db92823     FML: 47.3     Forge: net.minecraftforge:47.3.0
    • You could try posting a log (if there is no log at all, it may be the launcher you are using, the FAQ may have info on how to enable the log) as described in the FAQ, however this will probably need to be reported to/remedied by the mod author.
    • So me and a couple of friends are playing with a shitpost mod pack and one of the mods in the pack is corail tombstone and for some reason there is a problem with it, where on death to fire the player will get kicked out of the server and the tombstone will not spawn basically deleting an entire inventory, it doesn't matter what type of fire it is, whether it's from vanilla fire/lava, or from modded fire like ice&fire/lycanites and it's common enough to where everyone on the server has experienced at least once or twice and it doesn't give any crash log. a solution to this would be much appreciated thank you!
  • Topics

×
×
  • Create New...

Important Information

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