Jump to content

[1.6.4] mob code errors


majesticmadman98

Recommended Posts

hey, following tutorials and looking at others code I create my own code but have a few errors i don't know what's causing them. The error is within the entity class

 

Main

 

package a.Screens;

 

 

import a.Screens.Entity.EntityKronosDrone;

import a.Screens.models.KronosDrone;

import a.Screens.render.RenderKronosDrone;

import net.minecraft.block.Block;

import net.minecraft.block.BlockBreakable;

import net.minecraft.block.material.Material;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.entity.Entity;

import net.minecraft.entity.EntityEggInfo;

import net.minecraft.entity.EntityList;

import net.minecraft.entity.EnumCreatureType;

import net.minecraft.item.EnumToolMaterial;

import net.minecraft.item.Item;

import net.minecraft.item.ItemStack;

import net.minecraftforge.common.EnumHelper;

import net.minecraftforge.common.MinecraftForge;

import cpw.mods.fml.client.registry.RenderingRegistry;

import cpw.mods.fml.common.Mod;

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

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

import cpw.mods.fml.common.network.NetworkMod;

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

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

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

 

 

 

//mod info

@Mod(modid = "Screens", name = "Filming Screens", version = "1.0.0")

//client server

@NetworkMod(clientSideRequired = true, serverSideRequired = false)

 

public class main{

 

//Block  Defining

public static Block Gscreen;

public static Block Wscreen;

public static Block Bscreen;

public static Block Pscreen;

public static Block Light;

public static Block Lightair;

public static Block Ghost;

 

//Define Mob IDs

static int startEntityId = 300;

 

//mobs

public static int getUniqueEnitityId() {

do {

startEntityId++;

}

while (EntityList.getStringFromID(startEntityId) != null);

return startEntityId++;

}

 

public static void registerEntityEgg(Class<? extends Entity> entity, int primaryColor, int secondaryColor) {

int id = getUniqueEnitityId();

EntityList.IDtoClassMapping.put(id,  entity);

EntityList.entityEggs.put(id, new EntityEggInfo(id, primaryColor, secondaryColor));

 

}

//event handler

@EventHandler

public void Load(FMLPreInitializationEvent Event){

 

 

      //Block setting

Gscreen = new a.Screens.Gscreen(4004, Material.rock).setUnlocalizedName("Screens:Gscreen");

Wscreen = new a.Screens.Wscreen(4005, Material.rock).setUnlocalizedName("Screens:Wscreen");

Bscreen = new a.Screens.Bscreen(4006, Material.rock).setUnlocalizedName("Screens:Bscreen");

Pscreen = new a.Screens.Pscreen(4007, Material.rock).setUnlocalizedName("Screens:Pscreen");

Light = new a.Screens.Light(4008, Material.rock).setUnlocalizedName("Screens:Light");

Lightair = new a.Screens.Lightair(4009, Material.rock).setUnlocalizedName("Screens:Lightair");

Ghost = new a.Screens.Ghost(4010, Material.rock).setUnlocalizedName("Screens:Ghost");

 

//mob setting

EntityRegistry.registerGlobalEntityID(EntityKronosDrone.class, "Kronos Drone", 1);

EntityRegistry.addSpawn(EntityKronosDrone.class, 10, 2, 4, EnumCreatureType.monster);

EntityRegistry.findGlobalUniqueEntityId();

registerEntityEgg(EntityKronosDrone.class, 0x000000, 0x9E4001);

RenderingRegistry.registerEntityRenderingHandler(EntityKronosDrone.class, new RenderKronosDrone(new KronosDrone(), 0.3F));

 

//Block Game Register

GameRegistry.registerBlock(Gscreen, "Gscreen");

GameRegistry.registerBlock(Wscreen, "Wscreen");

GameRegistry.registerBlock(Bscreen, "Bscreen");

GameRegistry.registerBlock(Pscreen, "Pscreen");

GameRegistry.registerBlock(Light, "Light");

GameRegistry.registerBlock(Lightair, "Lightair");

GameRegistry.registerBlock(Ghost, "Ghost");

 

 

 

//Block Language Register

LanguageRegistry.addName(Gscreen, "Green Screen");

LanguageRegistry.addName(Wscreen, "White Screen");

LanguageRegistry.addName(Bscreen, "Blue Screen ");

LanguageRegistry.addName(Pscreen, "Pink Screen");

LanguageRegistry.addName(Light, "Filming light");

LanguageRegistry.addName(Lightair, "Filming light Air");

LanguageRegistry.addName(Ghost, "Ghost Block");}}

 

 

 

 

Entity

 

package a.Screens.Entity;

 

import net.minecraft.entity.EnumCreatureAttribute;

import net.minecraft.entity.ai.EntityAIBreakDoor;

import net.minecraft.entity.ai.EntityAIHurtByTarget;

import net.minecraft.entity.ai.EntityAILookIdle;

import net.minecraft.entity.ai.EntityAINearestAttackableTarget;

import net.minecraft.entity.ai.EntityAISwimming;

import net.minecraft.entity.ai.EntityAIWander;

import net.minecraft.entity.ai.EntityAIWatchClosest;

import net.minecraft.entity.monster.EntityMob;

import net.minecraft.entity.passive.EntityVillager;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.world.World;

 

public class EntityKronosDrone extends EntityMob {

 

public EntityKronosDrone(World par1World) {

super(par1World);

this.experienceValue = 10;

this.tasks.addTask(0, new EntityAISwimming(this));

        this.tasks.addTask(1, new EntityAIBreakDoor(this));

        this.tasks.addTask(5, new EntityAIWander(this, 0.5D));

        this.tasks.addTask(7, new EntityAIWatchClosest(this, EntityPlayer.class, 8.0F));

        this.tasks.addTask(7, new EntityAILookIdle(this));

        this.targetTasks.addTask(1, new EntityAIHurtByTarget(this, false));

        this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityPlayer.class, 0, true));

}

protected boolean isAIEnabled() {

return true;

}

public intgetMaxHealth() {

return 20;

}

protected String getLivingSound()

    {

        return "mob.zombie.say";

    }

 

 

    protected String getHurtSound()

    {

        return "mob.zombie.hurt";

    }

 

 

    protected String getDeathSound()

    {

        return "mob.zombie.death";

    }

 

    protected void playStepSound(int par1, int par2, int par3, int par4)

    {

        this.playSound("mob.zombie.step", 0.15F, 1.0F);

    }

   

    public void onLivingUpdate() {

    super.onLivingUpdate();

    }

}

 

 

 

 

render

 

package a.Screens.render;

 

import a.Screens.Entity.EntityKronosDrone;

import a.Screens.models.KronosDrone;

import net.minecraft.client.model.ModelBase;

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

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

import net.minecraft.entity.Entity;

import net.minecraft.entity.EntityLiving;

import net.minecraft.util.ResourceLocation;

 

public class RenderKronosDrone extends RenderLiving {

 

protected KronosDrone model;

 

public RenderKronosDrone(ModelBase par1ModelBase, float par2) {

super(par1ModelBase, par2);

model = ((KronosDrone)mainModel);

}

 

public void renderKronosDrone(EntityKronosDrone entity, double par2, double par4, double par6, float par8, float par9) {

super.doRenderLiving(entity, par2, par4, par6, par8, par9);

}

 

public void doRenderLiving(EntityLiving par1EntityLiving, double par2, double par4, double par6, float par8, float par9){

renderKronosDrone((EntityKronosDrone)par1EntityLiving, par2, par4, par6, par8, par9);

 

}

 

@Override

public void doRender(Entity entity, double d0, double d1, double d2, float f, float f1) {

renderKronosDrone((EntityKronosDrone)entity, d0, d1, d2, f, f1);

 

}

 

@Override

protected ResourceLocation getEntityTexture(Entity entity) {

return new ResourceLocation("oomod:textures/mobs/daleks/kronosdrone");

 

}

 

}

 

 

model

 

// Date: 20/02/2014 10:41:40

// Template version 1.1

// Java generated by Techne

// Keep in mind that you still need to fill in some blanks

// - ZeuX

 

 

 

 

 

 

package a.Screens.models;

 

import net.minecraft.client.model.ModelBase;

import net.minecraft.client.model.ModelRenderer;

import net.minecraft.entity.Entity;

 

public class KronosDrone extends ModelBase

{

  //fields

    ModelRenderer Fender;

    ModelRenderer Skirt_3;

    ModelRenderer Skirt_2;

    ModelRenderer Skirt_1;

    ModelRenderer Shoulder;

    ModelRenderer arm_1;

    ModelRenderer arm_2;

    ModelRenderer neck;

    ModelRenderer neck_intercept;

    ModelRenderer lower_dome;

    ModelRenderer upper_dome;

    ModelRenderer eyestalk;

    ModelRenderer Lens;

    ModelRenderer plunger;

    ModelRenderer light_1;

    ModelRenderer light_2;

    ModelRenderer bump_1;

    ModelRenderer bump_2;

    ModelRenderer bump_3;

    ModelRenderer bump_4;

    ModelRenderer bump_5;

    ModelRenderer bump_6;

    ModelRenderer bump_7;

    ModelRenderer bump_8;

    ModelRenderer bump_9;

    ModelRenderer bump_10;

    ModelRenderer bump_11;

    ModelRenderer bump_12;

    ModelRenderer bump_13;

    ModelRenderer bump_14;

    ModelRenderer bump_15;

    ModelRenderer bump_16;

    ModelRenderer bump_17;

    ModelRenderer bump_18;

    ModelRenderer bump_19;

    ModelRenderer bump_20;

    ModelRenderer bump_21;

    ModelRenderer bump_22;

    ModelRenderer bump_23;

    ModelRenderer bump_24;

    ModelRenderer bump_25;

    ModelRenderer bump_26;

    ModelRenderer bump_27;

    ModelRenderer bump_28;

    ModelRenderer bump_29;

    ModelRenderer bump_30;

    ModelRenderer Eye;

 

  public KronosDrone()

  {

    textureWidth = 128;

    textureHeight = 64;

   

      Fender = new ModelRenderer(this, 82, 0);

      Fender.addBox(-5F, 0F, -6.5F, 10, 2, 13);

      Fender.setRotationPoint(-5F, 22F, -5F);

      Fender.setTextureSize(128, 64);

      Fender.mirror = true;

      setRotation(Fender, 0F, 0F, 0F);

      Skirt_3 = new ModelRenderer(this, 88, 16);

      Skirt_3.addBox(-4.5F, 0F, -5.5F, 9, 5, 11);

      Skirt_3.setRotationPoint(-5F, 18F, -5F);

      Skirt_3.setTextureSize(128, 64);

      Skirt_3.mirror = true;

      setRotation(Skirt_3, 0F, 0F, 0F);

      Skirt_2 = new ModelRenderer(this, 92, 33);

      Skirt_2.addBox(-4.5F, 0F, -4.5F, 9, 4, 9);

      Skirt_2.setRotationPoint(-5F, 14F, -5F);

      Skirt_2.setTextureSize(128, 64);

      Skirt_2.mirror = true;

      setRotation(Skirt_2, 0F, 0F, 0F);

      Skirt_1 = new ModelRenderer(this, 96, 47);

      Skirt_1.addBox(-4.5F, 0F, -3.5F, 9, 4, 7);

      Skirt_1.setRotationPoint(-5F, 10F, -5F);

      Skirt_1.setTextureSize(128, 64);

      Skirt_1.mirror = true;

      setRotation(Skirt_1, 0F, 0F, 0F);

      Shoulder = new ModelRenderer(this, 47, 0);

      Shoulder.addBox(-4.5F, 0F, -3F, 9, 5, 6);

      Shoulder.setRotationPoint(-5F, 5F, -5F);

      Shoulder.setTextureSize(128, 64);

      Shoulder.mirror = true;

      setRotation(Shoulder, 0F, 0F, 0F);

      arm_1 = new ModelRenderer(this, 32, 8);

      arm_1.addBox(-0.5F, -0.5F, -6F, 1, 1, 6);

      arm_1.setRotationPoint(-8F, 7F, -7F);

      arm_1.setTextureSize(128, 64);

      arm_1.mirror = true;

      setRotation(arm_1, 0F, 0F, 0F);

      arm_2 = new ModelRenderer(this, 32, 0);

      arm_2.addBox(-0.5F, -0.5F, -6F, 1, 1, 6);

      arm_2.setRotationPoint(-2F, 7F, -7F);

      arm_2.setTextureSize(128, 64);

      arm_2.mirror = true;

      setRotation(arm_2, 0F, 0F, 0F);

      neck = new ModelRenderer(this, 60, 12);

      neck.addBox(-2F, 0F, -2F, 4, 3, 4);

      neck.setRotationPoint(-5F, 2F, -5F);

      neck.setTextureSize(128, 64);

      neck.mirror = true;

      setRotation(neck, 0F, 0F, 0F);

      neck_intercept = new ModelRenderer(this, 53, 20);

      neck_intercept.addBox(-3F, 0F, -3F, 6, 1, 6);

      neck_intercept.setRotationPoint(-5F, 3F, -5F);

      neck_intercept.setTextureSize(128, 64);

      neck_intercept.mirror = true;

      setRotation(neck_intercept, 0F, 0F, 0F);

      lower_dome = new ModelRenderer(this, 54, 29);

      lower_dome.addBox(-3.5F, -3F, -3.5F, 7, 3, 7);

      lower_dome.setRotationPoint(-5F, 2F, -5F);

      lower_dome.setTextureSize(128, 64);

      lower_dome.mirror = true;

      setRotation(lower_dome, 0F, 0F, 0F);

      upper_dome = new ModelRenderer(this, 57, 42);

      upper_dome.addBox(-2.5F, 0F, -2.5F, 5, 1, 5);

      upper_dome.setRotationPoint(-5F, -2F, -5F);

      upper_dome.setTextureSize(128, 64);

      upper_dome.mirror = true;

      setRotation(upper_dome, 0F, 0F, 0F);

      eyestalk = new ModelRenderer(this, 18, 6);

      eyestalk.addBox(-0.5F, -0.5F, -4F, 1, 1, 4);

      eyestalk.setRotationPoint(-5F, -0.4F, -8F);

      eyestalk.setTextureSize(128, 64);

      eyestalk.mirror = true;

      setRotation(eyestalk, 0F, 0F, 0F);

      Lens = new ModelRenderer(this, 20, 12);

      Lens.addBox(-1F, -1F, -1F, 2, 2, 1);

      Lens.setRotationPoint(-5F, -0.4F, -12F);

      Lens.setTextureSize(128, 64);

      Lens.mirror = true;

      setRotation(Lens, 0F, 0F, 0F);

      plunger = new ModelRenderer(this, 20, 17);

      plunger.addBox(-1F, 0F, -1F, 2, 2, 1);

      plunger.setRotationPoint(-8F, 6F, -12.1F);

      plunger.setTextureSize(128, 64);

      plunger.mirror = true;

      setRotation(plunger, 0F, 0F, 0F);

      light_1 = new ModelRenderer(this, 18, 0);

      light_1.addBox(-0.5F, -3F, -0.5F, 1, 3, 1);

      light_1.setRotationPoint(-7.5F, 0F, -5F);

      light_1.setTextureSize(128, 64);

      light_1.mirror = true;

      setRotation(light_1, 0F, -0.0174533F, -0.2450617F);

      light_2 = new ModelRenderer(this, 24, 0);

      light_2.addBox(0F, 0F, 0F, 1, 3, 1);

      light_2.setRotationPoint(-2.1F, -3F, -5.5F);

      light_2.setTextureSize(128, 64);

      light_2.mirror = true;

      setRotation(light_2, 0F, -0.0174533F, 0.2450617F);

      bump_1 = new ModelRenderer(this, 32, 17);

      bump_1.addBox(-1F, -1F, -1F, 2, 2, 1);

      bump_1.setRotationPoint(-2F, 20F, -10F);

      bump_1.setTextureSize(128, 64);

      bump_1.mirror = true;

      setRotation(bump_1, 0F, 0F, 0F);

      bump_2 = new ModelRenderer(this, 32, 21);

      bump_2.addBox(-1F, -1F, -1F, 2, 2, 1);

      bump_2.setRotationPoint(-8F, 20F, -10F);

      bump_2.setTextureSize(128, 64);

      bump_2.mirror = true;

      setRotation(bump_2, 0F, 0F, 0F);

      bump_3 = new ModelRenderer(this, 32, 25);

      bump_3.addBox(-1F, -1F, -1F, 2, 2, 1);

      bump_3.setRotationPoint(-5F, 20F, -10F);

      bump_3.setTextureSize(128, 64);

      bump_3.mirror = true;

      setRotation(bump_3, 0F, 0F, 0F);

      bump_4 = new ModelRenderer(this, 32, 29);

      bump_4.addBox(-1F, -1F, -1F, 2, 2, 1);

      bump_4.setRotationPoint(-2F, 16F, -9F);

      bump_4.setTextureSize(128, 64);

      bump_4.mirror = true;

      setRotation(bump_4, 0F, 0F, 0F);

      bump_5 = new ModelRenderer(this, 32, 33);

      bump_5.addBox(-1F, -1F, -1F, 2, 2, 1);

      bump_5.setRotationPoint(-8F, 16F, -9F);

      bump_5.setTextureSize(128, 64);

      bump_5.mirror = true;

      setRotation(bump_5, 0F, 0F, 0F);

      bump_6 = new ModelRenderer(this, 32, 37);

      bump_6.addBox(-1F, -1F, -1F, 2, 2, 1);

      bump_6.setRotationPoint(-2.5F, 12F, -8F);

      bump_6.setTextureSize(128, 64);

      bump_6.mirror = true;

      setRotation(bump_6, 0F, 0F, 0F);

      bump_7 = new ModelRenderer(this, 32, 41);

      bump_7.addBox(-1F, -1F, -1F, 2, 2, 1);

      bump_7.setRotationPoint(-5F, 16F, -9F);

      bump_7.setTextureSize(128, 64);

      bump_7.mirror = true;

      setRotation(bump_7, 0F, 0F, 0F);

      bump_8 = new ModelRenderer(this, 32, 45);

      bump_8.addBox(-1F, -1F, -1F, 2, 2, 1);

      bump_8.setRotationPoint(-7.5F, 12F, -8F);

      bump_8.setTextureSize(128, 64);

      bump_8.mirror = true;

      setRotation(bump_8, 0F, 0F, 0F);

      bump_9 = new ModelRenderer(this, 32, 49);

      bump_9.addBox(0F, 0F, 0F, 2, 2, 1);

      bump_9.setRotationPoint(-9F, 15F, -1F);

      bump_9.setTextureSize(128, 64);

      bump_9.mirror = true;

      setRotation(bump_9, 0F, 0F, 0F);

      bump_10 = new ModelRenderer(this, 32, 53);

      bump_10.addBox(-9F, 20F, 0F, 2, 2, 1);

      bump_10.setRotationPoint(0F, -1F, 0F);

      bump_10.setTextureSize(128, 64);

      bump_10.mirror = true;

      setRotation(bump_10, 0F, 0F, 0F);

      bump_11 = new ModelRenderer(this, 32, 57);

      bump_11.addBox(0F, 0F, 0F, 2, 2, 1);

      bump_11.setRotationPoint(-6F, 19F, 0F);

      bump_11.setTextureSize(128, 64);

      bump_11.mirror = true;

      setRotation(bump_11, 0F, 0F, 0F);

      bump_12 = new ModelRenderer(this, 32, 61);

      bump_12.addBox(0F, 0F, 0F, 2, 2, 1);

      bump_12.setRotationPoint(-3F, 19F, 0F);

      bump_12.setTextureSize(128, 64);

      bump_12.mirror = true;

      setRotation(bump_12, 0F, 0F, 0F);

      bump_13 = new ModelRenderer(this, 40, 17);

      bump_13.addBox(0F, 0F, 0F, 2, 2, 1);

      bump_13.setRotationPoint(-3F, 15F, -1F);

      bump_13.setTextureSize(128, 64);

      bump_13.mirror = true;

      setRotation(bump_13, 0F, 0F, 0F);

      bump_14 = new ModelRenderer(this, 40, 21);

      bump_14.addBox(0F, 0F, 0F, 2, 2, 1);

      bump_14.setRotationPoint(-6F, 15F, -1F);

      bump_14.setTextureSize(128, 64);

      bump_14.mirror = true;

      setRotation(bump_14, 0F, 0F, 0F);

      bump_15 = new ModelRenderer(this, 40, 25);

      bump_15.addBox(0F, 0F, 0F, 2, 2, 1);

      bump_15.setRotationPoint(-3.5F, 11F, -2F);

      bump_15.setTextureSize(128, 64);

      bump_15.mirror = true;

      setRotation(bump_15, 0F, 0F, 0F);

      bump_16 = new ModelRenderer(this, 40, 29);

      bump_16.addBox(0F, 0F, 0F, 2, 2, 1);

      bump_16.setRotationPoint(-8.5F, 11F, -2F);

      bump_16.setTextureSize(128, 64);

      bump_16.mirror = true;

      setRotation(bump_16, 0F, 0F, 0F);

      bump_17 = new ModelRenderer(this, 40, 33);

      bump_17.addBox(0F, 0F, 0F, 1, 2, 2);

      bump_17.setRotationPoint(-1F, 19F, -3F);

      bump_17.setTextureSize(128, 64);

      bump_17.mirror = true;

      setRotation(bump_17, 0F, 0F, 0F);

      bump_18 = new ModelRenderer(this, 40, 38);

      bump_18.addBox(0F, 0F, 0F, 1, 2, 2);

      bump_18.setRotationPoint(-1F, 19F, -9F);

      bump_18.setTextureSize(128, 64);

      bump_18.mirror = true;

      setRotation(bump_18, 0F, 0F, 0F);

      bump_19 = new ModelRenderer(this, 40, 43);

      bump_19.addBox(0F, 0F, 0F, 1, 2, 2);

      bump_19.setRotationPoint(-1F, 19F, -6F);

      bump_19.setTextureSize(128, 64);

      bump_19.mirror = true;

      setRotation(bump_19, 0F, 0F, 0F);

      bump_20 = new ModelRenderer(this, 40, 48);

      bump_20.addBox(0F, 0F, 0F, 1, 2, 2);

      bump_20.setRotationPoint(-1F, 15F, -4F);

      bump_20.setTextureSize(128, 64);

      bump_20.mirror = true;

      setRotation(bump_20, 0F, 0F, 0F);

      bump_21 = new ModelRenderer(this, 40, 53);

      bump_21.addBox(0F, 0F, 0F, 1, 2, 2);

      bump_21.setRotationPoint(-1F, 15F, -8F);

      bump_21.setTextureSize(128, 64);

      bump_21.mirror = true;

      setRotation(bump_21, 0F, 0F, 0F);

      bump_22 = new ModelRenderer(this, 40, 58);

      bump_22.addBox(0F, 0F, 0F, 1, 2, 2);

      bump_22.setRotationPoint(-1F, 11F, -4.5F);

      bump_22.setTextureSize(128, 64);

      bump_22.mirror = true;

      setRotation(bump_22, 0F, 0F, 0F);

      bump_23 = new ModelRenderer(this, 24, 21);

      bump_23.addBox(0F, 0F, 0F, 1, 2, 2);

      bump_23.setRotationPoint(-1F, 11F, -7.5F);

      bump_23.setTextureSize(128, 64);

      bump_23.mirror = true;

      setRotation(bump_23, 0F, 0F, 0F);

      bump_24 = new ModelRenderer(this, 24, 26);

      bump_24.addBox(0F, 0F, 0F, 1, 2, 2);

      bump_24.setRotationPoint(-10F, 11F, -7.5F);

      bump_24.setTextureSize(128, 64);

      bump_24.mirror = true;

      setRotation(bump_24, 0F, 0F, 0F);

      bump_25 = new ModelRenderer(this, 24, 31);

      bump_25.addBox(0F, 0F, 0F, 1, 2, 2);

      bump_25.setRotationPoint(-10F, 15F, -8F);

      bump_25.setTextureSize(128, 64);

      bump_25.mirror = true;

      setRotation(bump_25, 0F, 0F, 0F);

      bump_26 = new ModelRenderer(this, 24, 36);

      bump_26.addBox(0F, 0F, 0F, 1, 2, 2);

      bump_26.setRotationPoint(-10F, 15F, -4F);

      bump_26.setTextureSize(128, 64);

      bump_26.mirror = true;

      setRotation(bump_26, 0F, 0F, 0F);

      bump_27 = new ModelRenderer(this, 24, 41);

      bump_27.addBox(0F, 0F, 0F, 1, 2, 2);

      bump_27.setRotationPoint(-10F, 19F, -6F);

      bump_27.setTextureSize(128, 64);

      bump_27.mirror = true;

      setRotation(bump_27, 0F, 0F, 0F);

      bump_28 = new ModelRenderer(this, 24, 46);

      bump_28.addBox(0F, 0F, 0F, 1, 2, 2);

      bump_28.setRotationPoint(-10F, 11F, -4.5F);

      bump_28.setTextureSize(128, 64);

      bump_28.mirror = true;

      setRotation(bump_28, 0F, 0F, 0F);

      bump_29 = new ModelRenderer(this, 24, 51);

      bump_29.addBox(0F, 0F, 0F, 1, 2, 2);

      bump_29.setRotationPoint(-10F, 19F, -3F);

      bump_29.setTextureSize(128, 64);

      bump_29.mirror = true;

      setRotation(bump_29, 0F, 0F, 0F);

      bump_30 = new ModelRenderer(this, 24, 56);

      bump_30.addBox(0F, 0F, 0F, 1, 2, 2);

      bump_30.setRotationPoint(-10F, 19F, -9F);

      bump_30.setTextureSize(128, 64);

      bump_30.mirror = true;

      setRotation(bump_30, 0F, 0F, 0F);

      Eye = new ModelRenderer(this, 0, 0);

      Eye.addBox(0F, 0F, 0F, 1, 1, 1);

      Eye.setRotationPoint(-5.5F, -0.9F, -13.1F);

      Eye.setTextureSize(128, 64);

      Eye.mirror = true;

      setRotation(Eye, 0F, 0F, 0F);

  }

 

  public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5)

  {

    super.render(entity, f, f1, f2, f3, f4, f5);

    setRotationAngles(f, f1, f2, f3, f4, f5, entity);

    Fender.render(f5);

    Skirt_3.render(f5);

    Skirt_2.render(f5);

    Skirt_1.render(f5);

    Shoulder.render(f5);

    arm_1.render(f5);

    arm_2.render(f5);

    neck.render(f5);

    neck_intercept.render(f5);

    lower_dome.render(f5);

    upper_dome.render(f5);

    eyestalk.render(f5);

    Lens.render(f5);

    plunger.render(f5);

    light_1.render(f5);

    light_2.render(f5);

    bump_1.render(f5);

    bump_2.render(f5);

    bump_3.render(f5);

    bump_4.render(f5);

    bump_5.render(f5);

    bump_6.render(f5);

    bump_7.render(f5);

    bump_8.render(f5);

    bump_9.render(f5);

    bump_10.render(f5);

    bump_11.render(f5);

    bump_12.render(f5);

    bump_13.render(f5);

    bump_14.render(f5);

    bump_15.render(f5);

    bump_16.render(f5);

    bump_17.render(f5);

    bump_18.render(f5);

    bump_19.render(f5);

    bump_20.render(f5);

    bump_21.render(f5);

    bump_22.render(f5);

    bump_23.render(f5);

    bump_24.render(f5);

    bump_25.render(f5);

    bump_26.render(f5);

    bump_27.render(f5);

    bump_28.render(f5);

    bump_29.render(f5);

    bump_30.render(f5);

    Eye.render(f5);

  }

 

  private void setRotation(ModelRenderer model, float x, float y, float z)

  {

    model.rotateAngleX = x;

    model.rotateAngleY = y;

    model.rotateAngleZ = z;

  }

 

  public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5, Entity par6Entity)

  {

   

  }

 

}

 

 

 

Link to comment
Share on other sites

The method "public int getHealth()" does not exist in the Entity classes; it returns a float.

 

Putting @Override above your methods will enable some extra error-checking in your IDE that will tell you when your methods don't match any methods in the parent class, which will help prevent mistakes like this.

 

EDIT: Of course, only put @Override above inherited methods, not ones that you create yourself.

 

Link to comment
Share on other sites

ok got that sorted thanks, but i have texture problems now

 

@Override
protected ResourceLocation getEntityTexture(Entity entity) {
	return new ResourceLocation("oomod:textures/mobs/daleks/kronosdrone");

 

Texture path: C:\Users\User\Desktop\MC MODDING EQUIPMENT\Mods\Forge 1.6.4\Film Screen\mcp\src\minecraft\assets\oomod\textures\mobs\daleks

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

    • My game crash before main screen load crash log: ---- Minecraft Crash Report ---- // I let you down. Sorry Time: 04.05.2024, 11:48 Description: Initializing game org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-9.1.3.jar:9.1.3+9.1.3+main.9b69c82a] {}     at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-9.1.3.jar:?] {}     at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-9.1.3.jar:?] {}     at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-9.1.3.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-1.0.8.jar:?] {}     at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?] {}     at net.minecraft.client.renderer.block.BlockRenderDispatcher.<init>(BlockRenderDispatcher.java:50) ~[client-1.18.2-20220404.173914-srg.jar%2390!/:?] {re:classloading,xf:OptiFine:default}     at net.minecraft.client.Minecraft.<init>(Minecraft.java:501) ~[client-1.18.2-20220404.173914-srg.jar%2390!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:169) ~[client-1.18.2-20220404.173914-srg.jar%2390!/:?] {re:classloading,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.2.21.jar%2318!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {} Caused by: org.spongepowered.asm.mixin.throwables.MixinApplyError: Mixin [valhelsia_structures.mixins.json:BlockModelRendererMixin] from phase [DEFAULT] in config [valhelsia_structures.mixins.json] FAILED during APPLY     at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinError(MixinProcessor.java:636) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinApplyError(MixinProcessor.java:588) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:379) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     ... 29 more Caused by: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: Critical injection failure: @ModifyVariable annotation on valhelsia_renderModelFaceFlat could not find any targets matching 'Lnet/minecraft/client/renderer/block/ModelBlockRenderer;m_111001_(Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;IIZLcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;Ljava/util/BitSet;)V' in net.minecraft.client.renderer.block.ModelBlockRenderer. Using refmap valhelsia_structures.refmap.json [PREINJECT Applicator Phase -> valhelsia_structures.mixins.json:BlockModelRendererMixin -> Prepare Injections ->  -> localvar$zbg000$valhelsia_renderModelFaceFlat(ILnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)I -> Parse]     at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.validateTargets(InjectionInfo.java:656) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.findTargets(InjectionInfo.java:587) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.readAnnotation(InjectionInfo.java:330) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:316) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.<init>(InjectionInfo.java:308) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.injection.struct.ModifyVariableInjectionInfo.<init>(ModifyVariableInjectionInfo.java:45) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     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 org.spongepowered.asm.mixin.injection.struct.InjectionInfo$InjectorEntry.create(InjectionInfo.java:149) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.parse(InjectionInfo.java:708) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.transformer.MixinTargetContext.prepareInjections(MixinTargetContext.java:1311) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.prepareInjections(MixinApplicatorStandard.java:1042) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:393) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:325) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     ... 29 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Stacktrace:     at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {}     at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-9.1.3.jar:9.1.3+9.1.3+main.9b69c82a] {}     at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-9.1.3.jar:?] {}     at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-9.1.3.jar:?] {}     at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-9.1.3.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-1.0.8.jar:?] {}     at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-1.0.8.jar:?] {}     at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?] {}     at net.minecraft.client.renderer.block.BlockRenderDispatcher.<init>(BlockRenderDispatcher.java:50) ~[client-1.18.2-20220404.173914-srg.jar%2390!/:?] {re:classloading,xf:OptiFine:default}     at net.minecraft.client.Minecraft.<init>(Minecraft.java:501) ~[client-1.18.2-20220404.173914-srg.jar%2390!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:A,pl:runtimedistcleaner:A} -- Initialization -- Details:     Modules:          ADVAPI32.dll:Advanced Windows 32 Base API:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         COMCTL32.dll:Biblioteka formantów czynności użytkownika:6.10 (WinBuild.160101.0800):Microsoft Corporation         CRYPT32.dll:Crypto API32:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         CRYPTBASE.dll:Base cryptographic API DLL:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         CRYPTSP.dll:Cryptographic Service Provider API:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         ColorAdapterClient.dll:Microsoft Color Adapter Client:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         CoreMessaging.dll:Microsoft CoreMessaging Dll:10.0.19041.3930:Microsoft Corporation         CoreUIComponents.dll:Microsoft Core UI Components Dll:10.0.19041.3636:Microsoft Corporation         DBGHELP.DLL:Windows Image Helper:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         DEVOBJ.dll:Device Information Set DLL:10.0.19041.3996 (WinBuild.160101.0800):Microsoft Corporation         DNSAPI.dll:Biblioteka DLL interfejsu API klienta usługi DNS:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         GDI32.dll:GDI Client DLL:10.0.19041.3996 (WinBuild.160101.0800):Microsoft Corporation         GLU32.dll:Biblioteka DLL OpenGL Utility Library:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         HID.DLL:Biblioteka użytkownika HID:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         IMM32.DLL:Multi-User Windows IMM32 API Client DLL:10.0.19041.3996 (WinBuild.160101.0800):Microsoft Corporation         IPHLPAPI.DLL:IP Helper API:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation         KERNEL32.DLL:Biblioteka DLL klienta Windows NT BASE API:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         KERNELBASE.dll:Biblioteka DLL klienta Windows NT BASE API:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         MMDevApi.dll:Interfejs API MMDevice:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         MSASN1.dll:ASN.1 Runtime APIs:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         MSCTF.dll:Biblioteka DLL serwera MSCTF:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         NLAapi.dll:Network Location Awareness 2:10.0.19041.4123 (WinBuild.160101.0800):Microsoft Corporation         NSI.dll:NSI User-mode interface DLL:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         OLEAUT32.dll:OLEAUT32.DLL:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         Ole32.dll:Microsoft OLE for Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         OpenAL.dll         PROPSYS.dll:System właściwości firmy Microsoft:7.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         PSAPI.DLL:Process Status Helper:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         Pdh.dll:Windows Performance Data Helper DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation         RPCRT4.dll:Czas wykonania zdalnego wywoływania procedury:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         SETUPAPI.DLL:Interfejs API Instalatora systemu Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         SHCORE.dll:SHCORE:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         SHELL32.dll:Wspólna biblioteka DLL Powłoki systemu Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         UMPDC.dll         USER32.dll:Współużytkowana biblioteka DLL klienta Windows USER API:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         USERENV.dll:Userenv:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         VCRUNTIME140.dll:Microsoft® C Runtime Library:14.29.30133.0 built by: vcwrkspc:Microsoft Corporation         VERSION.dll:Version Checking and File Installation Libraries:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         WINHTTP.dll:Usługi Windows HTTP Services:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         WINMM.dll:MCI API DLL:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         WINTRUST.dll:Microsoft Trust Verification APIs:10.0.19041.4291 (WinBuild.160101.0800):Microsoft Corporation         WS2_32.dll:Biblioteka DLL 32-bitowej wersji usługi Windows Socket 2.0:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         WSOCK32.dll:Windows Socket 32-Bit DLL:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation         Wldp.dll:Zasady blokady systemu Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         amsi.dll:Anti-Malware Scan Interface:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         aswAMSI.dll:Avast AMSI COM object:24.3.8975.0:Gen Digital Inc.         aswhook.dll:Avast Hook Library:24.3.8975.0:AVAST Software         bcrypt.dll:Biblioteka podstawowych elementów kryptograficznych systemu Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         bcryptPrimitives.dll:Windows Cryptographic Primitives Library:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         cfgmgr32.dll:Configuration Manager DLL:10.0.19041.3996 (WinBuild.160101.0800):Microsoft Corporation         clbcatq.dll:COM+ Configuration Catalog:2001.12.10941.16384 (WinBuild.160101.0800):Microsoft Corporation         combase.dll:Microsoft COM for Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         dbgcore.DLL:Windows Core Debugging Helpers:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         dhcpcsvc.DLL:Usługa klienta DHCP:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         dhcpcsvc6.DLL:Klient DHCPv6:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         dinput8.dll:Microsoft DirectInput:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         dwmapi.dll:Interfejs API menedżera okien Microsoft Desktop Window Manager:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         dxgi.dll:DirectX Graphics Infrastructure:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         fwpuclnt.dll:Interfejs API trybu użytkownika funkcji FWP/IPSec:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         gdi32full.dll:GDI Client DLL:10.0.19041.4239 (WinBuild.160101.0800):Microsoft Corporation         glfw.dll         icm32.dll:Microsoft Color Management Module (CMM):10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         ig9icd64.dll:OpenGL(R) Driver for Intel(R) Graphics Accelerator:31.0.101.2111:Intel Corporation         igc64.dll:Intel Graphics Shader Compiler for Intel(R) Graphics Accelerator:31.0.101.2111:Intel Corporation         igdgmm64.dll:User Mode Driver for Intel(R) Graphics Technology:31.0.101.2111:Intel Corporation         igdml64.dll:Metrics Library for Intel(R) Graphics Technology:31.0.101.2111:Intel Corporation         inputhost.dll:InputHost:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         java.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         javaw.exe:OpenJDK Platform binary:17.0.1.0:Microsoft         jemalloc.dll         jimage.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         jli.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         jna4343990444255883354.dll:JNA native library:6.1.2:Java(TM) Native Access (JNA)         jvm.dll:OpenJDK 64-Bit server VM:17.0.1.0:Microsoft         kernel.appcore.dll:AppModel API Host:10.0.19041.3758 (WinBuild.160101.0800):Microsoft Corporation         lwjgl.dll         lwjgl_opengl.dll         lwjgl_stb.dll         management.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         management_ext.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         mscms.dll:Biblioteka DLL systemu dopasowywania kolorów firmy Microsoft:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         msvcp140.dll:Microsoft® C Runtime Library:14.29.30133.0 built by: vcwrkspc:Microsoft Corporation         msvcp_win.dll:Microsoft® C Runtime Library:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         msvcrt.dll:Windows NT CRT DLL:7.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         mswsock.dll:Microsoft Windows Sockets 2.0 Dostawca usługi:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         napinsp.dll:Dostawca podkładek nazewnictwa poczty e-mail:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         net.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         nio.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         ntdll.dll:Biblioteka NT Layer DLL:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         ntmarta.dll:Windows NT - dostawca MARTA:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         opengl32.dll:OpenGL Client DLL:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         perfos.dll:Biblioteka DLL obiektów wydajności systemu Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         pnrpnsp.dll:Dostawca obszaru nazw PNRP:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         powrprof.dll:Pomocnicza biblioteka DLL dla profilu zasilania:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         profapi.dll:User Profile Basic API:10.0.19041.4239 (WinBuild.160101.0800):Microsoft Corporation         rasadhlp.dll:Remote Access AutoDial Helper:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         rsaenh.dll:Microsoft Enhanced Cryptographic Provider:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation         sechost.dll:Host for SCM/SDDL/LSA Lookup APIs:10.0.19041.1 (WinBuild.160101.0800):Microsoft Corporation         shlwapi.dll:Biblioteka dodatkowych narzędzi powłoki:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         svml.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         textinputframework.dll:"TextInputFramework.DYNLINK":10.0.19041.4239 (WinBuild.160101.0800):Microsoft Corporation         ucrtbase.dll:Microsoft® C Runtime Library:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         uxtheme.dll:Biblioteka Microsoft UxTheme:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         vcruntime140_1.dll:Microsoft® C Runtime Library:14.29.30133.0 built by: vcwrkspc:Microsoft Corporation         verify.dll:OpenJDK Platform binary:17.0.1.0:Microsoft         win32u.dll:Win32u:10.0.19041.4291 (WinBuild.160101.0800):Microsoft Corporation         windows.storage.dll:Interfejs API magazynu systemu Microsoft WinRT:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         winrnr.dll:LDAP RnR Provider DLL:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         wintypes.dll:Biblioteka DLL typów systemu Windows:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         wshbth.dll:Windows Sockets Helper DLL:10.0.19041.3636 (WinBuild.160101.0800):Microsoft Corporation         xinput1_4.dll:Interfejs API typowego kontrolera firmy Microsoft:10.0.19041.4165 (WinBuild.160101.0800):Microsoft Corporation         zip.dll:OpenJDK Platform binary:17.0.1.0:Microsoft Stacktrace:     at net.minecraft.client.main.Main.main(Main.java:169) ~[client-1.18.2-20220404.173914-srg.jar%2390!/:?] {re:classloading,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.2.21.jar%2318!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {} -- System Details -- Details:     Minecraft Version: 1.18.2     Minecraft Version ID: 1.18.2     Operating System: Windows 10 (amd64) version 10.0     Java Version: 17.0.1, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 1227438184 bytes (1170 MiB) / 1644167168 bytes (1568 MiB) up to 10502537216 bytes (10016 MiB)     CPUs: 4     Processor Vendor: GenuineIntel     Processor Name: Intel(R) Core(TM) i3-7100U CPU @ 2.40GHz     Identifier: Intel64 Family 6 Model 142 Stepping 9     Microarchitecture: Amber Lake     Frequency (GHz): 2,40     Number of physical packages: 1     Number of physical CPUs: 2     Number of logical CPUs: 4     Graphics card #0 name: NVIDIA GeForce 940MX     Graphics card #0 vendor: NVIDIA (0x10de)     Graphics card #0 VRAM (MB): 2048,00     Graphics card #0 deviceId: 0x179c     Graphics card #0 versionInfo: DriverVersion=21.21.13.7654     Graphics card #1 name: Intel(R) HD Graphics 620     Graphics card #1 vendor: Intel Corporation (0x8086)     Graphics card #1 VRAM (MB): 1024,00     Graphics card #1 deviceId: 0x5916     Graphics card #1 versionInfo: DriverVersion=31.0.101.2111     Memory slot #0 capacity (MB): 16384,00     Memory slot #0 clockSpeed (GHz): 2,13     Memory slot #0 type: DDR4     Virtual memory max (MB): 25980,22     Virtual memory used (MB): 7608,61     Swap memory total (MB): 9728,00     Swap memory used (MB): 252,46     JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx10000M -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M     Launched Version: 1.18.2-forge-40.2.21     Backend library: LWJGL version 3.2.2 SNAPSHOT     Backend API: Intel(R) HD Graphics 620 GL version 3.2.0 - Build 31.0.101.2111, Intel     Window size: <not initialized>     GL Caps: Using framebuffer using OpenGL 3.2     GL debug messages:      Using VBOs: Yes     Is Modded: Definitely; Client brand changed to 'forge'     Type: Client (map_client.txt)     CPU: 4x Intel(R) Core(TM) i3-7100U CPU @ 2.40GHz     OptiFine Version: OptiFine_1.18.2_HD_U_H6     OptiFine Build: 20220313-160847     Render Distance Chunks: 8     Mipmaps: 4     Anisotropic Filtering: 1     Antialiasing: 0     Multitexture: false     Shaders: null     OpenGlVersion: 3.2.0 - Build 31.0.101.2111     OpenGlRenderer: Intel(R) HD Graphics 620     OpenGlVendor: Intel     CpuCount: 4     ModLauncher: 9.1.3+9.1.3+main.9b69c82a     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:           mixin PLUGINSERVICE           eventbus PLUGINSERVICE           slf4jfixer PLUGINSERVICE           object_holder_definalize PLUGINSERVICE           runtime_enum_extender PLUGINSERVICE           capability_token_subclass PLUGINSERVICE           accesstransformer PLUGINSERVICE           runtimedistcleaner PLUGINSERVICE           mixin TRANSFORMATIONSERVICE           OptiFine TRANSFORMATIONSERVICE           fml TRANSFORMATIONSERVICE      FML Language Providers:          [email protected]         lowcodefml@null         javafml@null     Mod List:          client-1.18.2-20220404.173914-srg.jar             |Minecraft                     |minecraft                     |1.18.2              |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         repurposed_structures_forge-5.1.14+1.18.2.jar     |Repurposed Structures         |repurposed_structures         |5.1.14+1.18.2       |COMMON_SET|Manifest: NOSIGNATURE         TerraBlender-forge-1.18.2-1.2.0.126.jar           |TerraBlender                  |terrablender                  |1.2.0.126           |COMMON_SET|Manifest: NOSIGNATURE         Piglin Expansion 1.2.1.jar                        |Piglin Expansion              |piglin_expansion              |1.1.0               |COMMON_SET|Manifest: NOSIGNATURE         pamhc2trees-1.18.2-1.0.4.jar                      |Pam's HarvestCraft 2 - Trees  |pamhc2trees                   |1.0.1               |COMMON_SET|Manifest: NOSIGNATURE         BiomesOPlenty-1.18.2-16.0.0.134.jar               |Biomes O' Plenty              |biomesoplenty                 |0.0NONE             |COMMON_SET|Manifest: NOSIGNATURE         pamhc2crops-1.18.2-1.0.6.jar                      |Pam's HarvestCraft 2 - Crops  |pamhc2crops                   |1.0.6               |COMMON_SET|Manifest: NOSIGNATURE         jei-1.18.2-forge-10.2.1.1006.jar                  |Just Enough Items             |jei                           |10.2.1.1006         |COMMON_SET|Manifest: NOSIGNATURE         pamhc2foodextended-1.18.2-1.0.5.jar               |Pam's HarvestCraft 2 - Food Ex|pamhc2foodextended            |1.0                 |COMMON_SET|Manifest: NOSIGNATURE         torohealth-1.18-forge-2.jar                       |ToroHealth                    |torohealth                    |1.18-forge-2        |COMMON_SET|Manifest: NOSIGNATURE         reap-1.18.2-1.0.0.jar                             |Reap Mod                      |reap                          |1.18.2-1.0.0        |COMMON_SET|Manifest: NOSIGNATURE         Patchouli-1.18.2-71.1.jar                         |Patchouli                     |patchouli                     |1.18.2-71.1         |COMMON_SET|Manifest: NOSIGNATURE         pamhc2foodcore-1.18.2-1.0.3.jar                   |Pam's HarvestCraft 2 - Food Co|pamhc2foodcore                |1.0.1               |COMMON_SET|Manifest: NOSIGNATURE         SereneSeasons-1.18.2-7.0.0.15.jar                 |Serene Seasons                |sereneseasons                 |0.0NONE             |COMMON_SET|Manifest: NOSIGNATURE         YungsApi-1.18.2-Forge-2.2.9.jar                   |YUNG's API                    |yungsapi                      |1.18.2-Forge-2.2.9  |COMMON_SET|Manifest: NOSIGNATURE         ToughAsNails-1.18.2-7.0.0.73.jar                  |Tough As Nails                |toughasnails                  |0.0NONE             |COMMON_SET|Manifest: NOSIGNATURE         feature_nbt_deadlock_be_gone_forge-2.0.0+1.18.2.ja|Feature NBT Deadlock Be Gone  |feature_nbt_deadlock_be_gone  |2.0.0+1.18.2        |COMMON_SET|Manifest: NOSIGNATURE         weather2-1.18.2-2.7.5.jar                         |Weather2                      |weather2                      |1.18.2-2.7.5        |COMMON_SET|Manifest: NOSIGNATURE         betteranimalsplus-1.18.2-11.0.10-forge.jar        |Better Animals Plus           |betteranimalsplus             |1.18.2-11.0.10      |COMMON_SET|Manifest: NOSIGNATURE         coroutil-forge-1.18.2-1.3.6.jar                   |CoroUtil                      |coroutil                      |1.18.2-1.3.6        |COMMON_SET|Manifest: NOSIGNATURE         architectury-4.12.94-forge.jar                    |Architectury                  |architectury                  |4.12.94             |COMMON_SET|Manifest: NOSIGNATURE         shulkerbox-1.18.2-1.0.0.jar                       |Advanced Shulkerboxes         |shulkerbox                    |1.18.2-1.0.0        |COMMON_SET|Manifest: NOSIGNATURE         mysticalworld-1.18.2-0.4.8.29.jar                 |Mystical World                |mysticalworld                 |0.4.8.29            |COMMON_SET|Manifest: NOSIGNATURE         FallingTree-1.18.2-3.5.5.jar                      |FallingTree                   |fallingtree                   |3.5.5               |COMMON_SET|Manifest: 3c:8e:df:6c:df:a6:2a:9f:af:64:ea:04:9a:cf:65:92:3b:54:93:0e:96:50:b4:52:e1:13:42:18:2b:ae:40:29         forge-1.18.2-40.2.21-universal.jar                |Forge                         |forge                         |40.2.21             |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         cofh_core-1.18.2-9.2.3.47.jar                     |CoFH Core                     |cofh_core                     |9.2.3               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_innovation-1.18.2-9.2.1.19.jar            |Thermal Innovation            |thermal_innovation            |9.2.1               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_foundation-1.18.2-9.2.2.58.jar            |Thermal Series                |thermal                       |9.2.2               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_cultivation-1.18.2-9.2.1.20.jar           |Thermal Cultivation           |thermal_cultivation           |9.2.1               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_expansion-1.18.2-9.2.2.24.jar             |Thermal Expansion             |thermal_expansion             |9.2.2               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_locomotion-1.18.2-9.2.1.15.jar            |Thermal Locomotion            |thermal_locomotion            |9.2.1               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_integration-1.18.2-9.2.1.18.jar           |Thermal Integration           |thermal_integration           |9.2.1               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         YungsBetterMineshafts-1.18.2-Forge-2.2.jar        |YUNG's Better Mineshafts      |bettermineshafts              |1.18.2-Forge-2.2    |COMMON_SET|Manifest: NOSIGNATURE         valhelsia_core-forge-1.18.2-0.4.0.jar             |Valhelsia Core                |valhelsia_core                |1.18.2-0.4.0        |COMMON_SET|Manifest: NOSIGNATURE         valhelsia_structures-1.18.2-0.1.1.jar             |Valhelsia Structures          |valhelsia_structures          |1.18.2-0.1.1        |COMMON_SET|Manifest: NOSIGNATURE         thermal_dynamics-1.18.2-9.2.2.19.jar              |Thermal Dynamics              |thermal_dynamics              |9.2.2               |COMMON_SET|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         corpse-1.18.2-1.0.1.jar                           |Corpse                        |corpse                        |1.18.2-1.0.1        |COMMON_SET|Manifest: NOSIGNATURE     Crash Report UUID: e912b463-f8b1-45c5-af55-a3291be1b7b0     FML: 40.2     Forge: net.minecraftforge:40.2.21
    • Are there dungeon mods? If yes, make a test without these
    • that worked I seriously have no idea how I didn't notice that
    • Remove rubidium - you are already using embeddium, which is a fork of rubidium
    • Remove textrues_embeddium_options or add embeddium
  • Topics

×
×
  • Create New...

Important Information

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