Jump to content

[UNSOLVED]Load Vehicles from Files -> Need help with strange Error


ItsAMysteriousYT

Recommended Posts

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)

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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...

 

 

Link to comment
Share on other sites

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/

Link to comment
Share on other sites

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);

}

}

}

 

 

 

 

Link to comment
Share on other sites

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

 

 

 

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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

 

 

Link to comment
Share on other sites

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Crash log and latest.txt https://paste.ee/p/7t93I
    • I don't know what do about this I tried support. This happens when I go into a server and I don't own it. I have the exact same mods, same version, same everything. I have enough ram on Minecraft.   Logs: content://media/external/downloads/1000004919 
    • (here is the crash report) The game crashed whilst mouseclicked event handler Error: java.lang.NoSuchFieldError: EMPTY_ID (wen i try to create a world) https://paste.ee/p/hfoDP
    • 3 mods from a modpack i found on curseforge (for minecraft) are having an error when loading. I did not make this modpack my self but i have used it before and it was working just fine. The version of minecraft is 1.20.1 and the forge version is 47. 2.0 any help would be useful!   ---- Minecraft Crash Report ---- // Hi. I'm Minecraft, and I'm a crashaholic. Time: 2024-04-26 14:10:06 Description: Mod loading error has occurred java.lang.Exception: Mod Loading has failed     at net.minecraftforge.logging.CrashReportExtender.dumpModLoadingCrashReport(CrashReportExtender.java:60) ~[forge-1.20.1-47.2.0-universal.jar%23511!/:?] {re:classloading}     at net.minecraftforge.client.loading.ClientModLoader.completeModLoading(ClientModLoader.java:143) ~[forge-1.20.1-47.2.0-universal.jar%23511!/:?] {re:classloading,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.lambda$new$4(Minecraft.java:571) ~[client-1.20.1-20230612.114412-srg.jar%23506!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.Util.m_137521_(Util.java:421) ~[client-1.20.1-20230612.114412-srg.jar%23506!/:?] {re:classloading,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B}     at net.minecraft.client.Minecraft.lambda$new$5(Minecraft.java:564) ~[client-1.20.1-20230612.114412-srg.jar%23506!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraftforge.client.loading.ForgeLoadingOverlay.m_88315_(ForgeLoadingOverlay.java:146) ~[forge-1.20.1-47.2.0-universal.jar%23511!/:?] {re:classloading}     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:954) ~[client-1.20.1-20230612.114412-srg.jar%23506!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23506!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23506!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.2.0.jar:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:flywheel.mixins.json:ClientMainMixin,pl:mixin:A,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.2.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.2.0.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Stacktrace:     at com.electronwill.nightconfig.core.io.ParsingException.notEnoughData(ParsingException.java:22) ~[core-3.6.4.jar%2393!/:?] {} -- MOD terrablender -- Details:     Caused by 0: java.lang.ExceptionInInitializerError         at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}         at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}         at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}         at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}         at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}         at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.20.1-47.2.0.jar%23508!/:?] {}         at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:123) ~[fmlcore-1.20.1-47.2.0.jar%23507!/:?] {}         at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}         at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {}         at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}         at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}         at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {}         at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {}         at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {}     Mod File: /C:/Users/HMSni/curseforge/minecraft/Instances/Minecolonies Medieval Magick/mods/TerraBlender-forge-1.20.1-3.0.1.4.jar     Failure message: TerraBlender (terrablender) has failed to load correctly         java.lang.ExceptionInInitializerError: null     Mod Version: 3.0.1.4     Mod Issue URL: https://github.com/Glitchfiend/TerraBlender/issues     Exception message: com.electronwill.nightconfig.core.io.ParsingException: Not enough data available Stacktrace:     at com.electronwill.nightconfig.core.io.ParsingException.notEnoughData(ParsingException.java:22) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.ReaderInput.directReadChar(ReaderInput.java:36) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.AbstractInput.readChar(AbstractInput.java:49) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.AbstractInput.readCharsUntil(AbstractInput.java:123) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.toml.TableParser.parseKey(TableParser.java:166) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.toml.TableParser.parseDottedKey(TableParser.java:145) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.toml.TableParser.parseNormal(TableParser.java:55) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:44) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:37) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:113) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:219) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:202) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.file.WriteSyncFileConfig.load(WriteSyncFileConfig.java:73) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.file.AutosaveCommentedFileConfig.load(AutosaveCommentedFileConfig.java:85) ~[core-3.6.4.jar%2393!/:?] {}     at terrablender.config.ConfigFile.<init>(ConfigFile.java:34) ~[TerraBlender-forge-1.20.1-3.0.1.4.jar%23485!/:3.0.1.4] {re:mixin,re:classloading}     at terrablender.config.TerraBlenderConfig.<init>(TerraBlenderConfig.java:31) ~[TerraBlender-forge-1.20.1-3.0.1.4.jar%23485!/:3.0.1.4] {re:mixin,re:classloading,pl:mixin:A}     at terrablender.core.TerraBlenderForge.<clinit>(TerraBlenderForge.java:30) ~[TerraBlender-forge-1.20.1-3.0.1.4.jar%23485!/:3.0.1.4] {re:classloading}     at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}     at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}     at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}     at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.20.1-47.2.0.jar%23508!/:?] {}     at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:123) ~[fmlcore-1.20.1-47.2.0.jar%23507!/:?] {}     at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}     at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {}     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {}     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {}     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {} -- MOD tlc -- Details:     Caused by 0: java.lang.reflect.InvocationTargetException         at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}         at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}         at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}         at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}         at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}         at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.20.1-47.2.0.jar%23508!/:?] {}         at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:123) ~[fmlcore-1.20.1-47.2.0.jar%23507!/:?] {}         at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}         at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {}         at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}         at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}         at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {}         at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {}         at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {}     Mod File: /C:/Users/HMSni/curseforge/minecraft/Instances/Minecolonies Medieval Magick/mods/tlc_forge-1.0.3-R-1.20.X.jar     Failure message: The Lost Castle (tlc) has failed to load correctly         java.lang.reflect.InvocationTargetException: null     Mod Version: 1.0.2     Mod Issue URL: https://github.com/Team-Remastered/End-Remastered-Forge/issues     Exception message: com.electronwill.nightconfig.core.io.ParsingException: Not enough data available Stacktrace:     at com.electronwill.nightconfig.core.io.ParsingException.notEnoughData(ParsingException.java:22) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.ReaderInput.directReadChar(ReaderInput.java:36) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.AbstractInput.readChar(AbstractInput.java:49) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.AbstractInput.readCharsUntil(AbstractInput.java:123) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.toml.TableParser.parseKey(TableParser.java:166) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.toml.TableParser.parseDottedKey(TableParser.java:145) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.toml.TableParser.parseNormal(TableParser.java:55) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:44) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:37) ~[toml-3.6.4.jar%2394!/:?] {}     at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:113) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:219) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:202) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.file.WriteSyncFileConfig.load(WriteSyncFileConfig.java:73) ~[core-3.6.4.jar%2393!/:?] {}     at com.electronwill.nightconfig.core.file.AutosaveCommentedFileConfig.load(AutosaveCommentedFileConfig.java:85) ~[core-3.6.4.jar%2393!/:?] {}     at com.teamremastered.tlc.config.TLCConfig.load(TLCConfig.java:47) ~[tlc_forge-1.0.3-R-1.20.X.jar%23490!/:1.0.3-R-1.20.1] {re:mixin,re:classloading}     at com.teamremastered.tlc.TheLostCastle.<init>(TheLostCastle.java:33) ~[tlc_forge-1.0.3-R-1.20.X.jar%23490!/:1.0.3-R-1.20.1] {re:classloading}     at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}     at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}     at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}     at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.20.1-47.2.0.jar%23508!/:?] {}     at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:123) ~[fmlcore-1.20.1-47.2.0.jar%23507!/:?] {}     at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}     at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {}     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {}     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {}     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {} -- MOD transmog -- Details:     Caused by 0: java.lang.reflect.InvocationTargetException         at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}         at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}         at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}         at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}         at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}         at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.20.1-47.2.0.jar%23508!/:?] {}         at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:123) ~[fmlcore-1.20.1-47.2.0.jar%23507!/:?] {}         at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}         at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {}         at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}         at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}         at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {}         at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {}         at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {}     Caused by 1: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $         at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:395) ~[gson-2.10.jar%23107!/:?] {}         at com.google.gson.Gson.fromJson(Gson.java:1214) ~[gson-2.10.jar%23107!/:?] {}         at com.google.gson.Gson.fromJson(Gson.java:1124) ~[gson-2.10.jar%23107!/:?] {}         at com.google.gson.Gson.fromJson(Gson.java:1034) ~[gson-2.10.jar%23107!/:?] {}         at com.google.gson.Gson.fromJson(Gson.java:969) ~[gson-2.10.jar%23107!/:?] {}         at com.hidoni.transmog.config.Config.loadConfigFromFile(Config.java:28) ~[transmog-forge-1.2.4+1.20.jar%23496!/:1.2.4+1.20] {re:mixin,re:classloading}         at com.hidoni.transmog.Transmog.loadConfig(Transmog.java:18) ~[transmog-forge-1.2.4+1.20.jar%23496!/:1.2.4+1.20] {re:classloading}         at com.hidoni.transmog.Transmog.init(Transmog.java:11) ~[transmog-forge-1.2.4+1.20.jar%23496!/:1.2.4+1.20] {re:classloading}         at com.hidoni.transmog.TransmogForge.<init>(TransmogForge.java:10) ~[transmog-forge-1.2.4+1.20.jar%23496!/:1.2.4+1.20] {re:classloading}         at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}         at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}         at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}         at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}         at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}         at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.20.1-47.2.0.jar%23508!/:?] {}         at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:123) ~[fmlcore-1.20.1-47.2.0.jar%23507!/:?] {}         at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}         at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {}         at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}         at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}         at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {}         at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {}         at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {}     Mod File: /C:/Users/HMSni/curseforge/minecraft/Instances/Minecolonies Medieval Magick/mods/transmog-forge-1.2.4+1.20.jar     Failure message: Transmog (transmog) has failed to load correctly         java.lang.reflect.InvocationTargetException: null     Mod Version: 1.2.4+1.20     Mod Issue URL: NOT PROVIDED     Exception message: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $ Stacktrace:     at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:393) ~[gson-2.10.jar%23107!/:?] {}     at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:384) ~[gson-2.10.jar%23107!/:?] {}     at com.google.gson.Gson.fromJson(Gson.java:1214) ~[gson-2.10.jar%23107!/:?] {}     at com.google.gson.Gson.fromJson(Gson.java:1124) ~[gson-2.10.jar%23107!/:?] {}     at com.google.gson.Gson.fromJson(Gson.java:1034) ~[gson-2.10.jar%23107!/:?] {}     at com.google.gson.Gson.fromJson(Gson.java:969) ~[gson-2.10.jar%23107!/:?] {}     at com.hidoni.transmog.config.Config.loadConfigFromFile(Config.java:28) ~[transmog-forge-1.2.4+1.20.jar%23496!/:1.2.4+1.20] {re:mixin,re:classloading}     at com.hidoni.transmog.Transmog.loadConfig(Transmog.java:18) ~[transmog-forge-1.2.4+1.20.jar%23496!/:1.2.4+1.20] {re:classloading}     at com.hidoni.transmog.Transmog.init(Transmog.java:11) ~[transmog-forge-1.2.4+1.20.jar%23496!/:1.2.4+1.20] {re:classloading}     at com.hidoni.transmog.TransmogForge.<init>(TransmogForge.java:10) ~[transmog-forge-1.2.4+1.20.jar%23496!/:1.2.4+1.20] {re:classloading}     at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] {}     at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] {}     at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] {}     at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.20.1-47.2.0.jar%23508!/:?] {}     at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:123) ~[fmlcore-1.20.1-47.2.0.jar%23507!/:?] {}     at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] {}     at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] {}     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] {}     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] {}     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] {}     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] {}     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] {} -- 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: 770444472 bytes (734 MiB) / 1577058304 bytes (1504 MiB) up to 21474836480 bytes (20480 MiB)     CPUs: 16     Processor Vendor: GenuineIntel     Processor Name: 13th Gen Intel(R) Core(TM) i5-13400F     Identifier: Intel64 Family 6 Model 191 Stepping 2     Microarchitecture: unknown     Frequency (GHz): 2.50     Number of physical packages: 1     Number of physical CPUs: 10     Number of logical CPUs: 16     Graphics card #0 name: NVIDIA GeForce RTX 4060     Graphics card #0 vendor: NVIDIA (0x10de)     Graphics card #0 VRAM (MB): 4095.00     Graphics card #0 deviceId: 0x2882     Graphics card #0 versionInfo: DriverVersion=31.0.15.4601     Memory slot #0 capacity (MB): 16384.00     Memory slot #0 clockSpeed (GHz): 4.80     Memory slot #0 type: Unknown     Memory slot #1 capacity (MB): 16384.00     Memory slot #1 clockSpeed (GHz): 4.80     Memory slot #1 type: Unknown     Virtual memory max (MB): 65369.07     Virtual memory used (MB): 14889.34     Swap memory total (MB): 32768.00     Swap memory used (MB): 0.00     JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx20G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M     Loaded Shaderpack: (off)     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.2.0.jar slf4jfixer PLUGINSERVICE          fmlloader-1.20.1-47.2.0.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.20.1-47.2.0.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.20.1-47.2.0.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.20.1-47.2.0.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE      FML Language Providers:          [email protected]         lowcodefml@null         javafml@null     Mod List:          player-animation-lib-forge-1.0.2-rc1+1.20.jar     |Player Animator               |playeranimator                |1.0.2-rc1+1.20      |COMMON_SET|Manifest: NOSIGNATURE         hourglass-1.20-1.2.1.1.jar                        |Hourglass                     |hourglass                     |1.2.1.1             |COMMON_SET|Manifest: NOSIGNATURE         Neat-1.20-35-FORGE.jar                            |Neat                          |neat                          |1.20-35-FORGE       |COMMON_SET|Manifest: NOSIGNATURE         MaxHealthFix-Forge-1.20.1-12.0.2.jar              |MaxHealthFix                  |maxhealthfix                  |12.0.2              |COMMON_SET|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         lootbeams-1.20.1-1.2.5.jar                        |LootBeams                     |lootbeams                     |1.20.1              |COMMON_SET|Manifest: NOSIGNATURE         clickadv-1.20.1-3.7.jar                           |clickadv mod                  |clickadv                      |1.20.1-3.7          |COMMON_SET|Manifest: NOSIGNATURE         balm-forge-1.20.1-7.2.2.jar                       |Balm                          |balm                          |7.2.2               |COMMON_SET|Manifest: NOSIGNATURE         dynview-1.20.1-3.9.jar                            |Dynamic view distance         |dynview                       |2.3                 |COMMON_SET|Manifest: NOSIGNATURE         immersive_armors-1.6.1+1.20.1-forge.jar           |Immersive Armors              |immersive_armors              |1.6.1+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         JustEnoughResources-1.20.1-1.4.0.247.jar          |Just Enough Resources         |jeresources                   |1.4.0.247           |COMMON_SET|Manifest: NOSIGNATURE         cloth-config-11.1.118-forge.jar                   |Cloth Config v10 API          |cloth_config                  |11.1.118            |COMMON_SET|Manifest: NOSIGNATURE         embeddium-0.3.12+mc1.20.1.jar                     |Embeddium                     |embeddium                     |0.3.12+mc1.20.1     |COMMON_SET|Manifest: NOSIGNATURE         stylecolonies-1.3.2.jar                           |stylecolonies mod             |stylecolonies                 |1.3.2               |COMMON_SET|Manifest: NOSIGNATURE         solapplepie-1.20.1-2.3.0.jar                      |Spice of Life: Apple Pie Editi|solapplepie                   |1.20.1-2.3.0        |COMMON_SET|Manifest: NOSIGNATURE         corpse-forge-1.20.1-1.0.12.jar                    |Corpse                        |corpse                        |1.20.1-1.0.12       |COMMON_SET|Manifest: NOSIGNATURE         repurposed_structures-7.1.13+1.20.1-forge.jar     |Repurposed Structures         |repurposed_structures         |7.1.13+1.20.1-forge |COMMON_SET|Manifest: NOSIGNATURE         BotanyTrees-Forge-1.20.1-9.0.11.jar               |BotanyTrees                   |botanytrees                   |9.0.11              |COMMON_SET|Manifest: NOSIGNATURE         supermartijn642corelib-1.1.17-forge-mc1.20.1.jar  |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.17              |COMMON_SET|Manifest: NOSIGNATURE         resourcefulconfig-forge-1.20.1-2.1.2.jar          |Resourcefulconfig             |resourcefulconfig             |2.1.2               |COMMON_SET|Manifest: NOSIGNATURE         hostilevillages-1.20.1-5.3.jar                    |Example Mod                   |hostilevillages               |1.20.1-5.3          |COMMON_SET|Manifest: NOSIGNATURE         spark-1.10.53-forge.jar                           |spark                         |spark                         |1.10.53             |COMMON_SET|Manifest: NOSIGNATURE         portablemobs-1.2.0-forge-mc1.20.jar               |Portable Mobs                 |portablemobs                  |1.2.0               |COMMON_SET|Manifest: NOSIGNATURE         Philips-Ruins1.20.1-3.5.jar                       |Philips Ruins                 |philipsruins                  |3.4                 |COMMON_SET|Manifest: NOSIGNATURE         curios-forge-5.8.0-beta.2+1.20.1.jar              |Curios API                    |curios                        |5.8.0-beta.2+1.20.1 |COMMON_SET|Manifest: NOSIGNATURE         corail_woodcutter-1.20.1-3.0.4.jar                |Corail Woodcutter             |corail_woodcutter             |3.0.4               |COMMON_SET|Manifest: NOSIGNATURE         oculus-mc1.20.1-1.6.15a.jar                       |Oculus                        |oculus                        |1.6.15a             |COMMON_SET|Manifest: NOSIGNATURE         Searchables-forge-1.20.1-1.0.2.jar                |Searchables                   |searchables                   |1.0.2               |COMMON_SET|Manifest: NOSIGNATURE         bettervillage-forge-1.20.1-3.2.0.jar              |Better village                |bettervillage                 |3.1.0               |COMMON_SET|Manifest: NOSIGNATURE         NaturesAura-39.4.jar                              |NaturesAura                   |naturesaura                   |39.4                |COMMON_SET|Manifest: NOSIGNATURE         flib-1.20.1-0.0.11.jar                            |flib                          |flib                          |0.0.11              |COMMON_SET|Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed         JadeAddons-1.20.1-forge-5.2.2.jar                 |Jade Addons                   |jadeaddons                    |5.2.2               |COMMON_SET|Manifest: NOSIGNATURE         l2library-2.4.24.jar                              |L2 Library                    |l2library                     |2.4.24              |COMMON_SET|Manifest: NOSIGNATURE         toms_storage-1.20-1.6.6.jar                       |Tom's Simple Storage Mod      |toms_storage                  |1.6.6               |COMMON_SET|Manifest: NOSIGNATURE         crafting-on-a-stick-1.20.1-1.1.4.jar              |Crafting On A Stick           |crafting_on_a_stick           |1.1.4               |COMMON_SET|Manifest: NOSIGNATURE         SmartBrainLib-forge-1.20.1-1.13.jar               |SmartBrainLib                 |smartbrainlib                 |1.13                |COMMON_SET|Manifest: NOSIGNATURE         elytraslot-forge-6.3.0+1.20.1.jar                 |Elytra Slot                   |elytraslot                    |6.3.0+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         l2tabs-0.2.6.jar                                  |L2 Tabs                       |l2tabs                        |0.2.6               |COMMON_SET|Manifest: NOSIGNATURE         betterharvesting-1.20-forge-0.0.2.jar             |Better Harvesting             |betterharvesting              |0.0.2               |COMMON_SET|Manifest: NOSIGNATURE         jei-1.20.1-forge-15.3.0.4.jar                     |Just Enough Items             |jei                           |15.3.0.4            |COMMON_SET|Manifest: NOSIGNATURE         Nameless Trinkets-1.20.1-1.7.8.jar                |Nameless Trinkets             |nameless_trinkets             |1.20.1-1.7.8        |COMMON_SET|Manifest: NOSIGNATURE         AttributeFix-Forge-1.20.1-21.0.4.jar              |AttributeFix                  |attributefix                  |21.0.4              |COMMON_SET|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         libraryferret-forge-1.20.1-4.0.0.jar              |Library ferret                |libraryferret                 |4.0.0               |COMMON_SET|Manifest: NOSIGNATURE         goblintraders-forge-1.20.1-1.9.3.jar              |Goblin Traders                |goblintraders                 |1.9.3               |COMMON_SET|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         epicsamurai-0.0.42-1.20.1-neo.jar                 |Epic Samurai                  |epicsamurai                   |0.0.42-1.20.1-neo   |COMMON_SET|Manifest: NOSIGNATURE         caelus-forge-3.1.0+1.20.jar                       |Caelus API                    |caelus                        |3.1.0+1.20          |COMMON_SET|Manifest: NOSIGNATURE         awesomedungeon-forge-1.20.1-3.2.0.jar             |Awesome dungeon               |awesomedungeon                |3.2.0               |COMMON_SET|Manifest: NOSIGNATURE         forgivingworld-1.20.1-4.3.jar                     |Forgiving world mod           |forgivingworld                |1.20.1-4.3          |COMMON_SET|Manifest: NOSIGNATURE         NaturesCompass-1.20.1-1.11.2-forge.jar            |Nature's Compass              |naturescompass                |1.20.1-1.11.2-forge |COMMON_SET|Manifest: NOSIGNATURE         EpheroLib-1.20.1-FORGE-1.2.0.jar                  |BOZOID                        |epherolib                     |0.1.2               |COMMON_SET|Manifest: NOSIGNATURE         badpackets-forge-0.4.3.jar                        |Bad Packets                   |badpackets                    |0.4.3               |COMMON_SET|Manifest: NOSIGNATURE         BotanyPots-Forge-1.20.1-13.0.26.jar               |BotanyPots                    |botanypots                    |13.0.26             |COMMON_SET|Manifest: NOSIGNATURE         l2screentracker-0.1.4.jar                         |L2 Screen Tracker             |l2screentracker               |0.1.4               |COMMON_SET|Manifest: NOSIGNATURE         forge-1.20.1-47.2.0-universal.jar                 |Forge                         |forge                         |47.2.0              |COMMON_SET|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         awesomedungeonocean-forge-1.20.1-3.3.0.jar        |Awesome dungeon edition ocean |awesomedungeonocean           |3.3.0               |COMMON_SET|Manifest: NOSIGNATURE         tectonic-forge-1.19.3-2.3.4.jar                   |Tectonic                      |tectonic                      |2.3.4               |COMMON_SET|Manifest: NOSIGNATURE         DistractingTrims-Forge-1.20.1-2.0.3.jar           |DistractingTrims              |distractingtrims              |2.0.3               |COMMON_SET|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         client-1.20.1-20230612.114412-srg.jar             |Minecraft                     |minecraft                     |1.20.1              |COMMON_SET|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         smoothchunk-1.20.1-3.6.jar                        |Smoothchunk mod               |smoothchunk                   |1.20.1-3.6          |COMMON_SET|Manifest: NOSIGNATURE         logprot-1.20.1-3.3.jar                            |Logprot                       |logprot                       |1.4                 |COMMON_SET|Manifest: NOSIGNATURE         voicechat-forge-1.20.1-2.5.12.jar                 |Simple Voice Chat             |voicechat                     |1.20.1-2.5.12       |COMMON_SET|Manifest: NOSIGNATURE         sound-physics-remastered-forge-1.20.1-1.3.1.jar   |Sound Physics Remastered      |sound_physics_remastered      |1.20.1-1.3.1        |COMMON_SET|Manifest: NOSIGNATURE         TerraBlender-forge-1.20.1-3.0.1.4.jar             |TerraBlender                  |terrablender                  |3.0.1.4             |ERROR     |Manifest: NOSIGNATURE         BiomesOPlenty-1.20.1-18.0.0.598.jar               |Biomes O' Plenty              |biomesoplenty                 |18.0.0.598          |COMMON_SET|Manifest: NOSIGNATURE         MouseTweaks-forge-mc1.20-2.25.jar                 |Mouse Tweaks                  |mousetweaks                   |2.25                |COMMON_SET|Manifest: NOSIGNATURE         Companion-1.20.1-forge-5.0.1.jar                  |Companion                     |companion                     |5.0.1               |COMMON_SET|Manifest: NOSIGNATURE         awesomedungeonnether-forge-1.20.1-3.1.1.jar       |Awesome dungeon nether        |awesomedungeonnether          |3.1.1               |COMMON_SET|Manifest: NOSIGNATURE         commonality-1.20.1-7.0.0.jar                      |Commonality                   |commonality                   |7.0.0               |COMMON_SET|Manifest: NOSIGNATURE         pamhc2crops-1.20-1.0.3.jar                        |Pam's HarvestCraft 2 - Crops  |pamhc2crops                   |1.0.3               |COMMON_SET|Manifest: NOSIGNATURE         cleanswing-1.20-1.5.jar                           |Clean Swing Through Grass     |cleanswing                    |1.20-1.5            |COMMON_SET|Manifest: NOSIGNATURE         spectrelib-forge-0.13.15+1.20.1.jar               |SpectreLib                    |spectrelib                    |0.13.15+1.20.1      |COMMON_SET|Manifest: NOSIGNATURE         domum_ornamentum-1.20.1-1.0.184-BETA-universal.jar|Domum Ornamentum              |domum_ornamentum              |1.20.1-1.0.184-BETA |COMMON_SET|Manifest: NOSIGNATURE         betterfpsdist-1.20.1-4.3.jar                      |betterfpsdist mod             |betterfpsdist                 |1.20.1-4.3          |COMMON_SET|Manifest: NOSIGNATURE         flywheel-forge-1.20.1-0.6.10-7.jar                |Flywheel                      |flywheel                      |0.6.10-7            |COMMON_SET|Manifest: NOSIGNATURE         pamhc2foodcore-1.20.4-1.0.5.jar                   |Pam's HarvestCraft 2 - Food Co|pamhc2foodcore                |1.0.5               |COMMON_SET|Manifest: NOSIGNATURE         Croptopia-1.20.1-FORGE-3.0.4.jar                  |Croptopia                     |croptopia                     |3.0.4               |COMMON_SET|Manifest: NOSIGNATURE         polymorph-forge-0.49.3+1.20.1.jar                 |Polymorph                     |polymorph                     |0.49.3+1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         Zeta-1.0-15.jar                                   |Zeta                          |zeta                          |1.0-15              |COMMON_SET|Manifest: NOSIGNATURE         extended_armor-1.20.1-1.8.jar                     |Extended Armor                |extended_armor                |1.20.1-1.8          |COMMON_SET|Manifest: NOSIGNATURE         structurize-1.20.1-1.0.718-BETA.jar               |Structurize                   |structurize                   |1.20.1-1.0.718-BETA |COMMON_SET|Manifest: NOSIGNATURE         tlc_forge-1.0.3-R-1.20.X.jar                      |The Lost Castle               |tlc                           |1.0.2               |ERROR     |Manifest: NOSIGNATURE         appleskin-forge-mc1.20.1-2.5.1.jar                |AppleSkin                     |appleskin                     |2.5.1+mc1.20.1      |COMMON_SET|Manifest: NOSIGNATURE         lootr-forge-1.20-0.7.33.83.jar                    |Lootr                         |lootr                         |0.7.33.82           |COMMON_SET|Manifest: NOSIGNATURE         occultism-1.20.1-1.124.3.jar                      |Occultism                     |occultism                     |1.124.3             |COMMON_SET|Manifest: NOSIGNATURE         biomemusic-1.20.1-2.3.jar                         |biomemusic mod                |biomemusic                    |1.20.1-2.3          |COMMON_SET|Manifest: NOSIGNATURE         FriendlyFire-Forge-1.20.1-18.0.6.jar              |FriendlyFire                  |friendlyfire                  |18.0.6              |COMMON_SET|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         extremesoundmuffler-3.41-forge-1.20.jar           |Extreme Sound Muffler         |extremesoundmuffler           |3.41-forge-1.20     |COMMON_SET|Manifest: NOSIGNATURE         cosmeticarmorreworked-1.20.1-v1a.jar              |CosmeticArmorReworked         |cosmeticarmorreworked         |1.20.1-v1a          |COMMON_SET|Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53         chunksending-1.20.1-2.8.jar                       |chunksending mod              |chunksending                  |1.20.1-2.8          |COMMON_SET|Manifest: NOSIGNATURE         cristellib-1.1.5-forge.jar                        |Cristel Lib                   |cristellib                    |1.1.5               |COMMON_SET|Manifest: NOSIGNATURE         tetra-1.20.1-6.3.0.jar                            |tetra                         |tetra                         |6.3.0               |COMMON_SET|Manifest: NOSIGNATURE         CyclopsCore-1.20.1-1.19.0.jar                     |Cyclops Core                  |cyclopscore                   |1.19.0              |COMMON_SET|Manifest: NOSIGNATURE         TreeChop-1.20.1-forge-0.19.0.jar                  |HT's TreeChop                 |treechop                      |0.18.8              |COMMON_SET|Manifest: NOSIGNATURE         transmog-forge-1.2.4+1.20.jar                     |Transmog                      |transmog                      |1.2.4+1.20          |ERROR     |Manifest: NOSIGNATURE         geckolib-forge-1.20.1-4.4.4.jar                   |GeckoLib 4                    |geckolib                      |4.4.4               |COMMON_SET|Manifest: NOSIGNATURE         ars_nouveau-1.20.1-4.10.0-all.jar                 |Ars Nouveau                   |ars_nouveau                   |4.10.0              |COMMON_SET|Manifest: NOSIGNATURE         eidolon_repraised-1.20.1-0.3.8.9.jar              |Eidolon:Repraised             |eidolon                       |1.20.1-0.3.8.9      |COMMON_SET|Manifest: NOSIGNATURE         towntalk-1.20.1-1.0.1.jar                         |TownTalk                      |towntalk                      |1.0.1               |COMMON_SET|Manifest: NOSIGNATURE         connectivity-1.20.1-5.5.jar                       |Connectivity Mod              |connectivity                  |1.20.1-5.5          |COMMON_SET|Manifest: NOSIGNATURE         sophisticatedcore-1.20.1-0.6.18.597.jar           |Sophisticated Core            |sophisticatedcore             |0.6.18.597          |COMMON_SET|Manifest: NOSIGNATURE         structureessentials-1.20.1-3.3.jar                |Structure Essentials mod      |structureessentials           |1.20.1-3.3          |COMMON_SET|Manifest: NOSIGNATURE         cookingforblockheads-forge-1.20.1-16.0.3.jar      |CookingForBlockheads          |cookingforblockheads          |16.0.3              |COMMON_SET|Manifest: NOSIGNATURE         Controlling-forge-1.20.1-12.0.2.jar               |Controlling                   |controlling                   |12.0.2              |COMMON_SET|Manifest: NOSIGNATURE         citadel-2.5.4-1.20.1.jar                          |Citadel                       |citadel                       |2.5.4               |COMMON_SET|Manifest: NOSIGNATURE         lootintegrations-1.20.1-3.4.jar                   |Lootintegrations mod          |lootintegrations              |1.20.1-3.4          |COMMON_SET|Manifest: NOSIGNATURE         mc_style_paintings forge-1.20.1.jar               |minecraft style paintings     |minecraft_style_paintings     |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         mixinextras-forge-0.2.0-beta.8.jar                |MixinExtras                   |mixinextras                   |0.2.0-beta.8        |COMMON_SET|Manifest: NOSIGNATURE         Bookshelf-Forge-1.20.1-20.1.10.jar                |Bookshelf                     |bookshelf                     |20.1.10             |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         sophisticatedbackpacks-1.20.1-3.20.5.1039.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |3.20.5.1039         |COMMON_SET|Manifest: NOSIGNATURE         BetterCopper 1.20.1 -1.2.jar                      |Better Copper                 |bettercopper                  |1.2                 |COMMON_SET|Manifest: NOSIGNATURE         Rex's-AdditionalStructures-1.20.x-(v.4.2.1).jar   |Additional Structures         |additionalstructures          |4.2.1               |COMMON_SET|Manifest: NOSIGNATURE         l2damagetracker-0.2.8.jar                         |L2 Damage Tracker             |l2damagetracker               |0.2.8               |COMMON_SET|Manifest: NOSIGNATURE         twilightforest-1.20.1-4.3.2145-universal.jar      |The Twilight Forest           |twilightforest                |4.3.2145            |COMMON_SET|Manifest: NOSIGNATURE         FarmersDelight-1.20.1-1.2.4.jar                   |Farmer's Delight              |farmersdelight                |1.20.1-1.2.4        |COMMON_SET|Manifest: NOSIGNATURE         curious_armor_stands-1.20-5.0.1.jar               |Curious Armor Stands          |curious_armor_stands          |1.20-5.0.1          |COMMON_SET|Manifest: NOSIGNATURE         AmbientSounds_FORGE_v5.3.9_mc1.20.1.jar           |AmbientSounds                 |ambientsounds                 |5.3.9               |COMMON_SET|Manifest: NOSIGNATURE         getittogetherdrops-forge-1.20-1.3.jar             |Get It Together, Drops!       |getittogetherdrops            |1.3                 |COMMON_SET|Manifest: NOSIGNATURE         endrem_forge-5.2.3-R-1.20.X.jar                   |End Remastered                |endrem                        |5.2.3-R-1.20.1      |COMMON_SET|Manifest: NOSIGNATURE         bfendcities-1.0.jar                               |Big F&$%ing End Cities        |bfendcities                   |1.0                 |COMMON_SET|Manifest: NOSIGNATURE         colorfulhearts-forge-1.20.1-4.0.4.jar             |Colorful Hearts               |colorfulhearts                |4.0.4               |COMMON_SET|Manifest: NOSIGNATURE         zmedievalmusic-1.20.1-2.1.jar                     |medievalmusic mod             |medievalmusic                 |1.20.1-2.1          |COMMON_SET|Manifest: NOSIGNATURE         pamhc2foodextended-1.20.4-1.0.1.jar               |Pam's HarvestCraft 2 - Food Ex|pamhc2foodextended            |0.0NONE             |COMMON_SET|Manifest: NOSIGNATURE         L_Enders_Cataclysm-1.90 -1.20.1.jar               |Cataclysm Mod                 |cataclysm                     |1.0                 |COMMON_SET|Manifest: NOSIGNATURE         Patchouli-1.20.1-84-FORGE.jar                     |Patchouli                     |patchouli                     |1.20.1-84-FORGE     |COMMON_SET|Manifest: NOSIGNATURE         ars_artifice-1.20.1-2.0.4.jar                     |Ars Artifice                  |ars_artifice                  |1.20.1-2.0.4        |COMMON_SET|Manifest: NOSIGNATURE         blockui-1.20.1-1.0.151-BETA.jar                   |UI Library Mod                |blockui                       |1.20.1-1.0.151-BETA |COMMON_SET|Manifest: NOSIGNATURE         storageracks-1.20.1-1.7.jar                       |Storage Racks                 |storageracks                  |1.20.1-1.7          |COMMON_SET|Manifest: NOSIGNATURE         multipiston-1.20-1.2.43-RELEASE.jar               |Multi-Piston                  |multipiston                   |1.20-1.2.43-RELEASE |COMMON_SET|Manifest: NOSIGNATURE         resourcefullib-forge-1.20.1-2.1.20.jar            |Resourceful Lib               |resourcefullib                |2.1.20              |COMMON_SET|Manifest: NOSIGNATURE         architectury-9.2.14-forge.jar                     |Architectury                  |architectury                  |9.2.14              |COMMON_SET|Manifest: NOSIGNATURE         cupboard-1.20.1-2.6.jar                           |Cupboard utilities            |cupboard                      |1.20.1-2.6          |COMMON_SET|Manifest: NOSIGNATURE         ars_ocultas-1.20.1-1.2.2-all.jar                  |Ars Ocultas                   |ars_ocultas                   |1.2.2               |COMMON_SET|Manifest: NOSIGNATURE         inventoryessentials-forge-1.20.1-8.2.3.jar        |Inventory Essentials          |inventoryessentials           |8.2.3               |COMMON_SET|Manifest: NOSIGNATURE         framework-forge-1.20.1-0.6.27.jar                 |Framework                     |framework                     |0.6.27              |COMMON_SET|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         Towns-and-Towers-1.12-Fabric+Forge.jar            |Towns and Towers              |t_and_t                       |0.0NONE             |COMMON_SET|Manifest: NOSIGNATURE         toomanyglyphs-1.20.1-2.3.2.12345.jar              |Too Many Glyphs               |toomanyglyphs                 |2.3.2.12345         |COMMON_SET|Manifest: NOSIGNATURE         quark_delight_1.0.0_forge_1.20.1.jar              |Quark Delight                 |quarkdelight                  |1.0.0               |COMMON_SET|Manifest: NOSIGNATURE         inventorysorter-1.20.1-23.0.1.jar                 |Simple Inventory Sorter       |inventorysorter               |23.0.1              |COMMON_SET|Manifest: NOSIGNATURE         Cucumber-1.20.1-7.0.8.jar                         |Cucumber Library              |cucumber                      |7.0.8               |COMMON_SET|Manifest: NOSIGNATURE         trashslot-forge-1.20-15.1.0.jar                   |TrashSlot                     |trashslot                     |15.1.0              |COMMON_SET|Manifest: NOSIGNATURE         treasuredistance-1.20-1.2.jar                     |Treasure Distance mod         |treasuredistance              |1.20-1.2            |COMMON_SET|Manifest: NOSIGNATURE         pamhc2trees-1.20-1.0.2.jar                        |Pam's HarvestCraft 2 - Trees  |pamhc2trees                   |1.0.2               |COMMON_SET|Manifest: NOSIGNATURE         awesomedungeonend-forge-1.20.1-3.1.1.jar          |Awesome dungeon the end       |awesomedungeonend             |3.1.1               |COMMON_SET|Manifest: NOSIGNATURE         sophisticatedstorage-1.20.1-0.10.20.778.jar       |Sophisticated Storage         |sophisticatedstorage          |0.10.20.778         |COMMON_SET|Manifest: NOSIGNATURE         limitedchunks-1.20.1-4.0.jar                      |Limited Chunkloading          |limitedchunks                 |1.8                 |COMMON_SET|Manifest: NOSIGNATURE         TinyCoal-forge-1.20.1-1.1.5.jar                   |Tiny Coal                     |tinycoal                      |1.1.5               |COMMON_SET|Manifest: NOSIGNATURE         create-1.20.1-0.5.1.f.jar                         |Create                        |create                        |0.5.1.f             |COMMON_SET|Manifest: NOSIGNATURE         waystones-forge-1.20-14.1.3.jar                   |Waystones                     |waystones                     |14.1.3              |COMMON_SET|Manifest: NOSIGNATURE         journeymap-1.20.1-5.9.20-forge.jar                |Journeymap                    |journeymap                    |5.9.20              |COMMON_SET|Manifest: NOSIGNATURE         comforts-forge-6.3.5+1.20.1.jar                   |Comforts                      |comforts                      |6.3.5+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         artifacts-forge-9.4.2.jar                         |Artifacts                     |artifacts                     |9.4.2               |COMMON_SET|Manifest: NOSIGNATURE         [1.20.1-forge]-Epic-Knights-9.7.jar               |Epic Knights Mod              |magistuarmory                 |9.7                 |COMMON_SET|Manifest: NOSIGNATURE         ExplorersCompass-1.20.1-1.3.3-forge.jar           |Explorer's Compass            |explorerscompass              |1.20.1-1.3.3-forge  |COMMON_SET|Manifest: NOSIGNATURE         farsight-1.20.1-3.6.jar                           |Farsight mod                  |farsight_view                 |1.20.1-3.6          |COMMON_SET|Manifest: NOSIGNATURE         azurelib-neo-1.20.1-2.0.20.jar                    |AzureLib                      |azurelib                      |2.0.20              |COMMON_SET|Manifest: NOSIGNATURE         bloodmagic-1.20.1-3.3.2-44.jar                    |Blood Magic                   |bloodmagic                    |3.3.2-44            |COMMON_SET|Manifest: NOSIGNATURE         tomeofblood-1.20.1-0.4.4-all.jar                  |Tome of Blood: Rebirth        |tomeofblood                   |0.4.4               |COMMON_SET|Manifest: NOSIGNATURE         MysticalAgriculture-1.20.1-7.0.11.jar             |Mystical Agriculture          |mysticalagriculture           |7.0.11              |COMMON_SET|Manifest: NOSIGNATURE         MysticalAgradditions-1.20.1-7.0.3.jar             |Mystical Agradditions         |mysticalagradditions          |7.0.3               |COMMON_SET|Manifest: NOSIGNATURE         craftingtweaks-forge-1.20.1-18.2.3.jar            |CraftingTweaks                |craftingtweaks                |18.2.3              |COMMON_SET|Manifest: NOSIGNATURE         tetrasdelight-1.20.1-1.jar                        |Tetra's Delight               |tetrasdelight                 |1.20.1-1            |COMMON_SET|Manifest: NOSIGNATURE         vanillaplustools-1.20-1.0.jar                     |Vanilla+ Tools                |vanillaplustools              |1.20-1.0            |COMMON_SET|Manifest: NOSIGNATURE         simplyswords-forge-1.54.0-1.20.1.jar              |Simply Swords                 |simplyswords                  |1.54.0-1.20.1       |COMMON_SET|Manifest: NOSIGNATURE         EnchantmentDescriptions-Forge-1.20.1-17.0.14.jar  |EnchantmentDescriptions       |enchdesc                      |17.0.14             |COMMON_SET|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         titanium-1.20.1-3.8.27.jar                        |Titanium                      |titanium                      |3.8.27              |COMMON_SET|Manifest: NOSIGNATURE         Jade-1.20.1-forge-11.8.0.jar                      |Jade                          |jade                          |11.8.0              |COMMON_SET|Manifest: NOSIGNATURE         CreativeCore_FORGE_v2.11.25_mc1.20.1.jar          |CreativeCore                  |creativecore                  |2.11.25             |COMMON_SET|Manifest: NOSIGNATURE         modulargolems-2.4.30.jar                          |Modular Golems                |modulargolems                 |2.4.30              |COMMON_SET|Manifest: NOSIGNATURE         easy-villagers-forge-1.20.1-1.1.4.jar             |Easy Villagers                |easy_villagers                |1.20.1-1.1.4        |COMMON_SET|Manifest: NOSIGNATURE         anvilbalance-1.20-1.1.0-all.jar                   |anvilbalance mod              |anvilbalance                  |1.20-1.1.0          |COMMON_SET|Manifest: NOSIGNATURE         Quark-4.0-439.jar                                 |Quark                         |quark                         |4.0-439             |COMMON_SET|Manifest: NOSIGNATURE         mutil-1.20.1-6.1.1.jar                            |mutil                         |mutil                         |6.1.1               |COMMON_SET|Manifest: NOSIGNATURE         mes-1.3-1.20-forge.jar                            |Moog's End Structures         |mes                           |1.3-1.20-forge      |COMMON_SET|Manifest: NOSIGNATURE         ars_elemental-1.20.1-0.6.4.1.jar                  |Ars Elemental                 |ars_elemental                 |1.20.1-0.6.4.1      |COMMON_SET|Manifest: NOSIGNATURE         irons_spellbooks-1.20.1-3.1.3.jar                 |Iron's Spells 'n Spellbooks   |irons_spellbooks              |1.20.1-3.1.3        |COMMON_SET|Manifest: NOSIGNATURE         armourersworkshop-forge-1.20.1-2.1.2.jar          |Armourer's Workshop           |armourers_workshop            |2.1.2               |COMMON_SET|Manifest: 58:d0:3b:4b:a0:4b:43:fb:59:0f:27:f5:39:d5:65:de:9a:24:ee:2e:15:48:b1:4f:78:1a:e1:ef:cd:a4:d9:0a         modonomicon-1.20.1-forge-1.67.0.jar               |Modonomicon                   |modonomicon                   |1.67.0              |COMMON_SET|Manifest: NOSIGNATURE         minecolonies-1.20.1-1.1.550-BETA.jar              |MineColonies                  |minecolonies                  |1.20.1-1.1.550-BETA |COMMON_SET|Manifest: NOSIGNATURE         JadeColonies-1.20.1-1.4.2.jar                     |JadeColonies                  |jadecolonies                  |1.4.2               |COMMON_SET|Manifest: NOSIGNATURE         mvs-4.1.1-1.20-forge.jar                          |Moog's Voyager Structures     |mvs                           |4.1.1-1.20-forge    |COMMON_SET|Manifest: NOSIGNATURE         creeperoverhaul-3.0.2-forge.jar                   |Creeper Overhaul              |creeperoverhaul               |3.0.2               |COMMON_SET|Manifest: NOSIGNATURE         functionalstorage-1.20.1-1.2.10.jar               |Functional Storage            |functionalstorage             |1.20.1-1.2.10       |COMMON_SET|Manifest: NOSIGNATURE         apexcore-1.20.1-10.0.0.jar                        |ApexCore                      |apexcore                      |10.0.0              |COMMON_SET|Manifest: NOSIGNATURE         infusedfoods-1.20.1-10.0.0.jar                    |InfusedFoods                  |infusedfoods                  |10.0.0              |COMMON_SET|Manifest: NOSIGNATURE         moredragoneggs-4.0.jar                            |More Dragon Eggs              |moredragoneggs                |4.0                 |COMMON_SET|Manifest: NOSIGNATURE         charmofundying-forge-6.5.0+1.20.1.jar             |Charm of Undying              |charmofundying                |6.5.0+1.20.1        |COMMON_SET|Manifest: NOSIGNATURE         l2itemselector-0.1.8.jar                          |L2 Item Selector              |l2itemselector                |0.1.8               |COMMON_SET|Manifest: NOSIGNATURE         expandability-9.0.0.jar                           |ExpandAbility                 |expandability                 |9.0.0               |COMMON_SET|Manifest: NOSIGNATURE     Flywheel Backend: GL33 Instanced Arrays     Crash Report UUID: b50f67e4-a892-4098-a1f4-4fb465c66885     FML: 47.2     Forge: net.minecraftforge:47.2.0
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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