Jump to content

Client proxy update help?


jordsta95

Recommended Posts

Hey there, I decided (finally) to update my mod to 1.6, and to start with (after installing the new forge, MCP, etc) I simply changed the code to the 1.6 code and it all worked fine, apart from the textures not working.

So then I refactored and renamed my mod (in eclipse) from mods.EverythingAndMore to assets.jordsta95, because, well everyone on YouTube uses assests.NAME and I think I heard one youtuber say that the NAME cannot have capitals in it....

 

Well anyway, I don't have any errors in the code.. well Eclipse isn't showing any at least. And I am getting this crashlog:

 

 

---- Minecraft Crash Report ----

// Everything's going to plan. No, really, that was supposed to happen.

 

Time: 03/09/13 15:18

Description: There was a severe problem during mod loading that has caused the game to fail

 

cpw.mods.fml.common.LoaderException: java.lang.ClassNotFoundException: assets.jordsta95.ClientProxy

at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:75)

at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:519)

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 com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

at com.google.common.eventbus.EventBus.post(EventBus.java:267)

at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:194)

at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174)

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 com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

at com.google.common.eventbus.EventBus.post(EventBus.java:267)

at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:105)

at cpw.mods.fml.common.Loader.loadMods(Loader.java:510)

at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:182)

at net.minecraft.client.Minecraft.startGame(Minecraft.java:470)

at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:796)

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

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:57)

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

Caused by: java.lang.ClassNotFoundException: assets.jordsta95.ClientProxy

at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:179)

at java.lang.ClassLoader.loadClass(Unknown Source)

at java.lang.ClassLoader.loadClass(Unknown Source)

at cpw.mods.fml.common.ModClassLoader.loadClass(ModClassLoader.java:58)

at java.lang.Class.forName0(Native Method)

at java.lang.Class.forName(Unknown Source)

at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:58)

... 33 more

Caused by: java.lang.NullPointerException

at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:171)

... 39 more

 

 

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

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

 

-- System Details --

Details:

Minecraft Version: 1.6.2

Operating System: Windows 7 (amd64) version 6.1

Java Version: 1.7.0_21, Oracle Corporation

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

Memory: 763789872 bytes (728 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)

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

AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used

Suspicious classes: FML and Forge are installed

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

FML: MCP v8.04 FML v6.2.35.804 Minecraft Forge 9.10.0.804 4 mods loaded, 4 mods active

mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed

FML{6.2.35.804} [Forge Mod Loader] (coremods) Unloaded->Constructed

Forge{9.10.0.804} [Minecraft Forge] (coremods) Unloaded->Constructed

EverythingAndMore{v0.4} [Everything And More] (bin) Unloaded->Errored

 

 

 

Here is my main class:

 

 

package assests.jordsta95; //Package directory

 

/*

* Basic importing

*/

 

 

import java.util.TreeMap;

 

 

import net.minecraft.block.Block;

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

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

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.enchantment.Enchantment;

import net.minecraft.enchantment.EnumEnchantmentType;

import net.minecraft.entity.Entity;

import net.minecraft.entity.EntityEggInfo;

import net.minecraft.entity.EntityList;

import net.minecraft.entity.EnumCreatureType;

import net.minecraft.item.EnumArmorMaterial;

import net.minecraft.item.EnumToolMaterial;

import net.minecraft.item.Item;

import net.minecraft.item.ItemFood;

import net.minecraft.item.ItemStack;

import net.minecraft.src.ModLoader;

import net.minecraft.world.WorldProvider;

import net.minecraft.world.biome.BiomeGenBase;

import net.minecraftforge.common.Configuration;

import net.minecraftforge.common.DimensionManager;

import net.minecraftforge.common.EnumHelper;

import net.minecraftforge.common.MinecraftForge;

import net.minecraftforge.common.Property;

import net.minecraftforge.oredict.OreDictionary;

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.Mod.Init;

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

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

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

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

import cpw.mods.fml.common.SidedProxy;

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

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

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

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

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

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;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

 

 

 

/*

* Basic needed forge stuff

*/

@Mod(modid="EverythingAndMore",name="Everything And More",version="v0.4")

@NetworkMod(clientSideRequired=false,serverSideRequired=false)

 

 

public class Everything_and_More_Mod {

 

public static final String modid = "EverythingAndMoreMod";

 

@SidedProxy(clientSide = "assets.jordsta95.ClientProxy", serverSide = "assets.jordsta95.CommonProxy")

public static assests.jordsta95.CommonProxy CommonProxy;

 

@Instance("EAMMod")

public static Everything_and_More_Mod instance;

 

//Creative Mode Tabs

public static CreativeTabs EEMTab = new EEMTab("Everything And More");

public static CreativeTabs Ender = new Ender("Ender Items");

/*

* ToolMaterial

*/

 

//Telling forge that we are creating these

 

//Biomes

 

 

 

//items

public static Item Lovite;

public static Item Cyanitide;

public static Item RefinedHeart;

public static Item HeartWheat;

public static Item BakedWithLove;

public static Item GoldStick;

public static Item TaurinPick;

public static Item Vertide;

public static Item TaurinAxe;

public static Item TaurinShovel;

public static Item TaurinSword;

public static Item DragonScale;

public static Item DSHelmet;

public static Item DSBoots;

public static Item DSLegs;

public static Item DSBody;

public static Item Cape;

public static Item CyLoFragment;

public static Item CyLoShard;

public static Item LoveClump;

public static Item CyanClump;

public static Item LightBelt;

public static Item End1Pick;

public static Item End1Axe;

public static Item End1Shovel;

public static Item End1Sword;

public static Item EndDust;

public static Item EndIngot;

public static Item EndStick;

public static Item DOneHelm;

public static Item DOneChest;

public static Item DOneLegs;

public static Item DOneBoots;

public static Item ItemTier2EnderAxe;

public static Item ItemTier2EnderPick;

public static Item ItemTier2EnderShovel;

public static Item ItemTier2EnderSword;

public static Item DPEndIngot;

public static Item DragonEgg;

public static Item ItemEndShaxel;

public static Item WIEndIngot;

public static Item BaseWitherSword;

public static Item BaseWitherPick;

public static Item BaseWitherAxe;

public static Item BaseWitherShovel;

public static Item ItemEndCaptainSparklez;

public static Item ItemEndChimneySwift;

public static Item Iridium;

public static Item Circuit;

 

 

 

 

 

//blocks

public static Block HeartStone;

public static Block CyOre;

public static Block LoveOre;

public static Block VertOre;

public static Block LoveLight;

public static Block Light;

public static Block DropLight;

public static Block TopSoil;

public static Block Marble;

public static Block MarbleBrick;

public static Block Basalt;

public static Block BasaltBrick;

public static Block BasaltPaver;

public static Block BasaltCobble;

public static Block BasaltStairs;

public static Block MarbleStairs;

public static Block BasaltBrickStairs;

public static Block MarbleBrickStairs;

public static Block EMPortal;

 

 

 

 

 

public static int Dimension = 137;

 

 

static int startEntityID = 300;

 

public static int LoviteID;

public static int CyanitideID;

public static int RefinedHeartID;

public static int HeartWheatID;

public static int BakedWithLoveID;

public static int GoldStickID;

public static int TaurinPickID;

public static int VertideID;

public static int TaurinAxeID;

public static int TaurinShovelID;

public static int TaurinSwordID;

public static int DragonScaleID;

public static int DSHelmetID;

public static int DSBootsID;

public static int DSLegsID;

public static int DSBodyID;

public static int CapeID;

public static int CyLoFragmentID;

public static int CyLoSharIDd;

public static int LoveClumpID;

public static int CyanClumpID;

public static int LightBeltID;

public static int End1PickID;

public static int End1AxeID;

public static int End1ShovelID;

public static int End1SwordID;

public static int EndDustID;

public static int EndIngotID;

public static int EndStickID;

public static int DOneHelmID;

public static int DOneChestID;

public static int DOneLegsID;

public static int DOneBootsID;

public static int ItemTier2EnderAxeID;

public static int ItemTier2EnderPickID;

public static int ItemTier2EnderShovelID;

public static int ItemTier2EnderSwordID;

public static int DPEndIngotID;

public static int DragonEggID;

public static int ItemEndShaxelID;

public static int WIEndIngotID;

public static int BaseWitherSwordID;

public static int BaseWitherPickID;

public static int BaseWitherAxeID;

public static int BaseWitherShovelID;

public static int ItemEndCaptainSparklezID;

public static int ItemEndChimneySwiftID;

public static int SteelID;

public static int Steel2ID;

public static int QuartzID;

public static int IridiumID;

 

 

 

//EnumMaterials (Tools/Armour)

EnumArmorMaterial DRAGONSCALE;

EnumToolMaterial TAURIN;

EnumToolMaterial CYLO;

EnumToolMaterial ENDONE;

EnumToolMaterial ENDTWO;

EnumToolMaterial ENDFIRE;

EnumToolMaterial ENDTHREE;

EnumToolMaterial ENDPAXEL;

 

 

 

//public void preinit(FMLPreInitializationEvent event){

//Configuration EverythingAndMore = new Configuration(event.getSuggestedConfigurationFile());

//LoviteID = EverythingAndMore.get("Item ID's", "Lovite ID", "4198").getInt();

//CyanitideID = EverythingAndMore.get("Item ID's", "Cyanitide ID", "4199").getInt();

//RefinedHeartID = EverythingAndMore.get("Item ID's", "Grown With Love ID", "4200").getInt();

//BakedWithLoveID = EverythingAndMore.get("Item ID's", "Baked with Love ID", "4201").getInt();

//GoldStickID = EverythingAndMore.get("Item ID's", "Gold Stick ID", "4202").getInt();

//TaurinPickID = EverythingAndMore.get("Item ID's", "Taurin Pick ID", "4203").getInt();

//VertideID = EverythingAndMore.get("Item ID's", "Taurin ID", "4204").getInt();

//TaurinAxeID = EverythingAndMore.get("Item ID's", "Taurin Axe ID", "4205").getInt();

 

 

// EverythingAndMore.save();

//}

 

 

//Declaring Init

@EventHandler

public void load(FMLInitializationEvent event)

{

//Define material enums

DefineMaterials();

 

//Define items/blocks

DefineBlocksAndItems();

 

//Register the mod's world gen

GameRegistry.registerWorldGenerator(new OreGen());

GameRegistry.registerWorldGenerator(new TaurinGen());

GameRegistry.registerWorldGenerator(new RPGen());

 

//Add names to the registry

AddNames();

 

//Add mod related entities to the registry

AddEntities();

 

//Do minecraft forge related tasks

DoMinecraftForgeStuff();

 

//Add crafting and furnace recipes

AddCraftingRecipes();

 

oreRegistration();

}

 

//Get a unique entity ID

public int getUniqueEntityID()

{

do

{

startEntityID++;

}

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

 

return startEntityID;

 

}

 

//Register entity eggs for the mod

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

{

int id = getUniqueEntityID();

EntityList.IDtoClassMapping.put(id, entity);

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

}

 

//Add all mod related names to registry

public void AddNames()

{

LanguageRegistry.addName(Lovite, "Lovite");

LanguageRegistry.addName(Cyanitide, "Cyanitide");

LanguageRegistry.addName(RefinedHeart, "Refined Heart");

LanguageRegistry.addName(HeartWheat, "Grown with Love");

LanguageRegistry.addName(BakedWithLove, "Baked with Love");

LanguageRegistry.addName(GoldStick, "Golden Stick");

LanguageRegistry.addName(TaurinPick, "Taurin Pickaxe");

LanguageRegistry.addName(Vertide, "Taurin");

LanguageRegistry.addName(TaurinAxe, "Taurin Axe");

LanguageRegistry.addName(TaurinShovel, "Taurin Shovel");

LanguageRegistry.addName(TaurinSword, "Taurin Sword");

LanguageRegistry.addName(DragonScale, "Dragon Scale");

LanguageRegistry.addName(DSHelmet, "DragonScale Helmet");

LanguageRegistry.addName(DSBody, "DragonScale Body");

LanguageRegistry.addName(DSLegs, "DragonScale Leggings");

LanguageRegistry.addName(DSBoots, "DragonScale Boots");

LanguageRegistry.addName(HeartStone, "Heart Stone");

LanguageRegistry.addName(CyOre, "Cyanitide Ore");

LanguageRegistry.addName(LoveOre, "Lovite Ore");

LanguageRegistry.addName(LoveLight, "Love Light");

LanguageRegistry.addName(VertOre, "Taurin Ore");

LanguageRegistry.addName(Light, "Illuminator");

LanguageRegistry.addName(CyLoFragment, "CyLoFragment");

LanguageRegistry.addName(CyLoShard, "CyLoShard");

LanguageRegistry.addName(LoveClump, "Love Clump");

LanguageRegistry.addName(CyanClump, "Cyan Clump");

LanguageRegistry.addName(LightBelt, "Light Belt");

LanguageRegistry.addName(DropLight, "Drop Light");

LanguageRegistry.addName(End1Pick, "Ender Pick");

LanguageRegistry.addName(End1Axe, "Ender Axe");

LanguageRegistry.addName(End1Shovel, "Ender Shovel");

LanguageRegistry.addName(End1Sword, "Ender Sword");

LanguageRegistry.addName(EndDust, "End Dust");

LanguageRegistry.addName(EndIngot, "End Ingot");

LanguageRegistry.addName(EndStick, "End Stick");

LanguageRegistry.addName(DOneHelm, "Ender Helmet");

LanguageRegistry.addName(DOneChest, "Ender Chestplate");

LanguageRegistry.addName(DOneLegs, "Ender Leggings");

LanguageRegistry.addName(DOneBoots, "Ender Booties");

LanguageRegistry.addName(ItemTier2EnderAxe, "Reinfored Ender Axe");

LanguageRegistry.addName(ItemTier2EnderPick, "Reinforced Ender Pickaxe");

LanguageRegistry.addName(ItemTier2EnderShovel, "Reinforced Ender Shovel");

LanguageRegistry.addName(ItemTier2EnderSword, "Reinforced Ender Sword");

LanguageRegistry.addName(DPEndIngot, "Reinforced End Ingot");

LanguageRegistry.addName(DragonEgg, "DragonScale Packet");

LanguageRegistry.addName(Cape, "Cape");

LanguageRegistry.addName(TopSoil, "Top Soil");

LanguageRegistry.addName(ItemEndShaxel, "Ender Picksel");

LanguageRegistry.addName(WIEndIngot, "Wither Ingot");

LanguageRegistry.addName(BaseWitherSword, "Wither Sword");

LanguageRegistry.addName(BaseWitherPick, "Wither Pickaxe");

LanguageRegistry.addName(BaseWitherAxe, "Wither Axe");

LanguageRegistry.addName(BaseWitherShovel, "Wither Shovel");

LanguageRegistry.addName(ItemEndCaptainSparklez, "Creeper Staff");

LanguageRegistry.addName(Marble, "Marble");

LanguageRegistry.addName(MarbleBrick, "Marble Brick");

LanguageRegistry.addName(Basalt, "Basalt");

LanguageRegistry.addName(BasaltBrick, "Basalt Brick");

LanguageRegistry.addName(BasaltPaver, "Basalt Paver");

LanguageRegistry.addName(BasaltCobble, "Basalt Cobble");

LanguageRegistry.addName(BasaltStairs, "Basalt Stairs");

LanguageRegistry.addName(MarbleStairs, "Marble Stairs");

LanguageRegistry.addName(MarbleBrickStairs, "Marble Brick Stairs");

LanguageRegistry.addName(BasaltBrickStairs, "Basalt Brick Stairs");

LanguageRegistry.addName(ItemEndChimneySwift, "Hermit Sword");

LanguageRegistry.addName(Iridium, "Iridium");

LanguageRegistry.addName(EMPortal, "Portal");

LanguageRegistry.addName(Circuit, "Circuit");

 

 

 

 

 

 

 

LanguageRegistry.instance().addStringLocalization("itemGroup.Everything And More", "en_US", "Everything and More");

LanguageRegistry.instance().addStringLocalization("itemGroup.Ender Items", "en_US", "Ender Items");

 

 

}

 

//Define all blocks and items in the mod, registering each

public void DefineBlocksAndItems()

{

Lovite = new Lovite(4198).setUnlocalizedName("Lovite");

Cyanitide = new Cyanitide(4197).setUnlocalizedName("Cyanitide");

RefinedHeart = new RefinedHeart(4199).setUnlocalizedName("RefinedHeart");

HeartWheat = new HeartWheat(4200).setUnlocalizedName("HeartWheat");

BakedWithLove = new Bread(4201, 8, 6.5F, false).setUnlocalizedName("BakedWithLove");

GoldStick = new GoldStick(4202).setUnlocalizedName("GoldStick");

TaurinPick = new TaurinPick(4203, TAURIN).setUnlocalizedName("TaurinPick");

Vertide = new Vertide(4204).setUnlocalizedName("Vertide");

TaurinAxe = new TaurinAxe(4205, TAURIN).setUnlocalizedName("TaurinAxe");

TaurinShovel = new TaurinShovel(4206,TAURIN).setUnlocalizedName("TaurinShovel");

TaurinSword = new TaurinSword(4207, TAURIN).setUnlocalizedName("TaurinSword");

DragonScale = new DragonScale(4208).setUnlocalizedName("DragonScale");

DSHelmet = new DSArmour(4209, DRAGONSCALE , CommonProxy.addArmor("DSArmour"), 0).setUnlocalizedName("DSHelmet").setCreativeTab(CreativeTabs.tabCombat);

DSBody = new DSBody(4210, DRAGONSCALE , CommonProxy.addArmor("DSArmour"), 1).setUnlocalizedName("DSBody").setCreativeTab(CreativeTabs.tabCombat);

DSLegs = new DSArmour(4211, DRAGONSCALE , CommonProxy.addArmor("DSArmour"), 2).setUnlocalizedName("DSLegs").setCreativeTab(CreativeTabs.tabCombat);

DSBoots = new DSArmour(4212, DRAGONSCALE , CommonProxy.addArmor("DSArmour"), 3).setUnlocalizedName("DSBoots").setCreativeTab(CreativeTabs.tabCombat);

CyLoFragment = new CyLoFragment(4213).setUnlocalizedName("CyLoFragment").setCreativeTab(Everything_and_More_Mod.EEMTab);

CyLoShard = new CyLoShard(4214).setUnlocalizedName("CyLoShard").setCreativeTab(Everything_and_More_Mod.EEMTab);

LoveClump = new LoveClump(4215).setUnlocalizedName("LoveClump").setCreativeTab(Everything_and_More_Mod.EEMTab);

CyanClump = new CyanClump(4216).setUnlocalizedName("CyanClump").setCreativeTab(Everything_and_More_Mod.EEMTab);

LightBelt = new LightBelt(4217).setUnlocalizedName("LightBelt").setCreativeTab(Everything_and_More_Mod.EEMTab);

End1Pick = new End1Pick(4218, ENDONE).setUnlocalizedName("End1Pick").setCreativeTab(Everything_and_More_Mod.Ender);

End1Axe = new End1Axe(4219, ENDONE).setUnlocalizedName("End1Axe").setCreativeTab(Everything_and_More_Mod.Ender);

End1Shovel = new End1Shovel(4220, ENDONE).setUnlocalizedName("End1Shovel").setCreativeTab(Everything_and_More_Mod.Ender);

End1Sword = new End1Sword(4221, ENDONE).setUnlocalizedName("End1Sword").setCreativeTab(Everything_and_More_Mod.Ender);

EndDust = new EndDust(4222).setUnlocalizedName("EndDust").setCreativeTab(Everything_and_More_Mod.Ender);

EndIngot = new EndIngot(4223).setUnlocalizedName("EndIngot").setCreativeTab(Everything_and_More_Mod.Ender);

EndStick = new EndStick(4224).setUnlocalizedName("EndStick").setCreativeTab(Everything_and_More_Mod.Ender);

DOneHelm = new EnderArmorHelm(4225, EnumArmorMaterial.DIAMOND, 1, 0).setUnlocalizedName("DOneHelm").setCreativeTab(CreativeTabs.tabCombat);

DOneChest = new EnderArmorChest(4226, EnumArmorMaterial.DIAMOND, 1, 1).setUnlocalizedName("DOneChest").setCreativeTab(CreativeTabs.tabCombat);

DOneLegs = new EnderArmorLegs(4227, EnumArmorMaterial.DIAMOND, 1, 2).setUnlocalizedName("DOneLegs").setCreativeTab(CreativeTabs.tabCombat);

DOneBoots = new EnderArmorBoots(4228, EnumArmorMaterial.DIAMOND, 1, 3).setUnlocalizedName("DOneBoots").setCreativeTab(CreativeTabs.tabCombat);

ItemTier2EnderAxe = new ItemTier2EnderAxe(4229, ENDTWO).setUnlocalizedName("ItemTier2EnderAxe").setCreativeTab(Everything_and_More_Mod.Ender);

ItemTier2EnderPick = new ItemTier2EnderPick(4230, ENDTWO).setUnlocalizedName("ItemTier2EnderPick").setCreativeTab(Everything_and_More_Mod.Ender);

ItemTier2EnderShovel = new ItemTier2EnderShovel(4231, ENDTWO).setUnlocalizedName("ItemTier2EnderShovel").setCreativeTab(Everything_and_More_Mod.Ender);

ItemTier2EnderSword = new ItemTier2EnderSword(4232, ENDTWO).setUnlocalizedName("ItemTier2EnderSword").setCreativeTab(Everything_and_More_Mod.Ender);

DPEndIngot = new DPEndIngot(4233).setUnlocalizedName("DPEndIngot").setCreativeTab(Everything_and_More_Mod.Ender);

DragonEgg = new DragonEgg(4234).setUnlocalizedName("DragonEgg").setCreativeTab(Everything_and_More_Mod.Ender);

Cape = new Cape(4235).setUnlocalizedName("Cape").setCreativeTab(Everything_and_More_Mod.EEMTab);

ItemEndShaxel = new ItemEndShaxel(4236, ENDPAXEL).setUnlocalizedName("ItemEndShaxel").setCreativeTab(Everything_and_More_Mod.Ender);

WIEndIngot = new WIEndIngot(4237).setUnlocalizedName("WIEndIngot").setCreativeTab(Everything_and_More_Mod.Ender);

BaseWitherSword = new BaseWitherSword (4238, ENDTHREE).setUnlocalizedName("BaseWitherSword").setCreativeTab(Everything_and_More_Mod.Ender);

BaseWitherPick = new BaseWitherPick(4239, ENDTHREE).setUnlocalizedName("BaseWitherPick").setCreativeTab(Everything_and_More_Mod.Ender);

BaseWitherAxe = new BaseWitherAxe(4240, ENDTHREE).setUnlocalizedName("BaseWitherAxe").setCreativeTab(Everything_and_More_Mod.Ender);

BaseWitherShovel = new BaseWitherShovel(4241, ENDTHREE).setUnlocalizedName("BaseWitherShovel").setCreativeTab(Everything_and_More_Mod.Ender);

ItemEndCaptainSparklez = new ItemEndCaptainSparklez(4242, ENDONE).setUnlocalizedName("ItemEndCaptainSparklez").setCreativeTab(Everything_and_More_Mod.Ender);

ItemEndChimneySwift = new ItemEndChimneySwift(4243).setCreativeTab(Everything_and_More_Mod.Ender).setUnlocalizedName("ItemEndChimneySwift");

Iridium = new Iridium(4247).setUnlocalizedName("Iridium").setCreativeTab(Everything_and_More_Mod.EEMTab);

Circuit = new Circuit(4249).setUnlocalizedName("Circuit").setCreativeTab(Everything_and_More_Mod.EEMTab);

 

 

 

 

 

HeartStone= new HeartStone(2189, "HeartStone").setUnlocalizedName("HeartStone").setHardness(3.5F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F).setCreativeTab(Everything_and_More_Mod.EEMTab);

GameRegistry.registerBlock(HeartStone, "HeartStone");

 

CyOre= new CyanOre(2188, "CyanOre").setUnlocalizedName("CyanOre").setHardness(3.5F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

GameRegistry.registerBlock(CyOre, "CyanOre");

MinecraftForge.setBlockHarvestLevel(CyOre, "pickaxe", 1);

 

LoveOre= new LoviteOre(2187, "LoviteOre").setUnlocalizedName("LoviteOre").setHardness(3.5F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

GameRegistry.registerBlock(LoveOre, "LoveOre");

MinecraftForge.setBlockHarvestLevel(LoveOre, "pickaxe", 1);

 

LoveLight= new LoveLight(2190, "LoveLight").setUnlocalizedName("LoveLight").setHardness(1.0F).setStepSound(Block.soundGlassFootstep).setResistance(3.0F).setLightValue(0.9F);

GameRegistry.registerBlock(LoveLight, "LoveLight");

 

VertOre= new VertOre(2191, "VertOre").setUnlocalizedName("VertOre").setHardness(4.0F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

GameRegistry.registerBlock(VertOre, "VertOre");

MinecraftForge.setBlockHarvestLevel(VertOre, "pickaxe", 3);

 

Light= new Light(2192, "Light").setUnlocalizedName("Light").setHardness(1.0F).setStepSound(Block.soundGlassFootstep).setResistance(3.0F).setLightValue(1.0F);

GameRegistry.registerBlock(Light, "Light");

 

DropLight = new DropLight(2193, "DropLight").setUnlocalizedName("DropLight").setHardness(0.8F).setStepSound(Block.soundSandFootstep).setResistance(3.0F).setLightValue(1.0F).setCreativeTab(Everything_and_More_Mod.EEMTab);

GameRegistry.registerBlock(DropLight, "DropLight");

 

TopSoil = new TopSoil(2194, "TopSoil").setUnlocalizedName("TopSoil").setHardness(0.8F).setStepSound(Block.soundGrassFootstep).setResistance(3.0F).setCreativeTab(Everything_and_More_Mod.EEMTab);

GameRegistry.registerBlock(TopSoil, "TopSoil");

 

Marble= new Marble(2195, "Marble").setUnlocalizedName("Marble").setHardness(0.5F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

GameRegistry.registerBlock(Marble, "Marble");

MinecraftForge.setBlockHarvestLevel(Marble, "pickaxe", 0);

 

MarbleBrick= new MarbleBrick(2196, "Marble").setUnlocalizedName("MarbleBrick").setHardness(0.1F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

GameRegistry.registerBlock(MarbleBrick, "MarbleBrick");

MinecraftForge.setBlockHarvestLevel(MarbleBrick, "pickaxe", 0);

 

Basalt = new Basalt(2197, "Basalt").setUnlocalizedName("Basalt").setHardness(0.5F).setStepSound(Block.soundStoneFootstep).setResistance(10000.0F);

GameRegistry.registerBlock(Basalt, "Basalt");

MinecraftForge.setBlockHarvestLevel(Basalt, "pickaxe", 0);

 

BasaltBrick = new BasaltBrick(2198, "BasaltBrick").setUnlocalizedName("BasaltBrick").setHardness(0.5F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

GameRegistry.registerBlock(BasaltBrick, "BasaltBrick");

MinecraftForge.setBlockHarvestLevel(BasaltBrick, "pickaxe", 0);

 

BasaltPaver = new BasaltPaver(2199, "BasaltPaver").setUnlocalizedName("BasaltPaver").setHardness(0.5F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

GameRegistry.registerBlock(BasaltPaver, "BasaltPaver");

MinecraftForge.setBlockHarvestLevel(BasaltPaver, "pickaxe", 0);

 

BasaltCobble = new BasaltCobble(2200, "BasaltCobble").setUnlocalizedName("BasaltCobble").setHardness(0.5F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

GameRegistry.registerBlock(BasaltCobble, "BasaltCobble");

MinecraftForge.setBlockHarvestLevel(BasaltCobble, "pickaxe", 0);

 

BasaltStairs = new BasaltStairs(2201, "BasaltStairs").setUnlocalizedName("BasaltStairs").setHardness(0.5F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

GameRegistry.registerBlock(BasaltStairs, "BasaltStairs");

 

MarbleStairs = new MarbleStairs(2202, "MarbleStairs").setUnlocalizedName("MarbleStairs").setHardness(0.5F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

GameRegistry.registerBlock(MarbleStairs, "MarbleStairs");

 

BasaltBrickStairs = new BasaltBrickStairs(2203, "BasaltBrickStairs").setUnlocalizedName("BasaltBrickStairs").setHardness(3.5F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

GameRegistry.registerBlock(BasaltBrickStairs, "BasaltBrickStairs");

 

MarbleBrickStairs = new MarbleBrickStairs(2204, "MarbleBrickStairs").setUnlocalizedName("MarbleBrickStairs").setHardness(3.5F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

GameRegistry.registerBlock(MarbleBrickStairs, "MarbleBrickStairs");

 

 

 

 

EMPortal = new EMPortal(2300, "EMPortal").setUnlocalizedName("EMPortal");

GameRegistry.registerBlock(EMPortal, "EMPortal");

 

 

 

 

 

 

 

 

 

GameRegistry.registerItem(TaurinPick, "Taurin Pickaxe");

GameRegistry.registerItem(TaurinAxe, "Taurin Axe");

GameRegistry.registerItem(TaurinShovel, "Taurin Shovel");

 

 

GameRegistry.registerFuelHandler(new CyLoFuel());

 

 

 

DimensionManager.registerProviderType(Dimension, Dimension.class, false);

DimensionManager.registerDimension(Dimension, Dimension);

 

 

 

}

 

//Define material enums

public void DefineMaterials()

{

DRAGONSCALE = EnumHelper.addArmorMaterial("DRAGONSCALE", 50, new int[]{4, 8, 6, 2}, 30);

TAURIN = EnumHelper.addToolMaterial("TAURIN", 3, 3210, 14.0F, 7, 20);

CYLO = EnumHelper.addToolMaterial("CYLO", 3, 100, 5.0F, 7, 20);

ENDONE = EnumHelper.addToolMaterial("ENDONE", 2, 1248, 7.0F, 5, 10);

ENDTWO = EnumHelper.addToolMaterial("ENDTWO", 3, 2790, 14.0F, 7, 10);

ENDFIRE = EnumHelper.addToolMaterial("ENDFIRE", 3, 2790, 10.0F, 7, 10);

ENDTHREE = EnumHelper.addToolMaterial("ENDTHREE", 4, -1, 30.0F, 13, 10);

ENDPAXEL = EnumHelper.addToolMaterial("ENDPAXEL", 4, -1, 70.0F, 13, 10);

 

 

 

}

 

//Add all crafting and furnace recipes to the registry

public void AddCraftingRecipes()

{

GameRegistry.addRecipe(new ItemStack(HeartStone,1), new Object[]{

"LSL","SLS","LSL",'L',Lovite,'S',Block.stone

});

 

GameRegistry.addRecipe(new ItemStack(LoveLight,1), new Object[]{

"LGL","LGL","LLL",'L',Lovite,'G',Item.glowstone

});

 

GameRegistry.addShapelessRecipe(new ItemStack(HeartWheat,1), new Object[]{

RefinedHeart, Item.wheat

});

 

GameRegistry.addShapelessRecipe(new ItemStack(EndDust,2), new Object[]{

Item.enderPearl

});

 

GameRegistry.addShapelessRecipe(new ItemStack(Item.dyePowder, 1, 6), new Object[]{

Cyanitide

});

 

GameRegistry.addShapelessRecipe(new ItemStack(DragonEgg, 64), new Object[]{

Block.dragonEgg, Item.diamond, EndIngot

});

 

GameRegistry.addShapelessRecipe(new ItemStack(DragonScale, 6), new Object[]{

DragonEgg

});

 

GameRegistry.addShapelessRecipe(new ItemStack(Marble, 10), new Object[]{

Block.stone, Item.netherQuartz

});

 

GameRegistry.addShapelessRecipe(new ItemStack(BasaltCobble, 8), new Object[]{

Block.cobblestone, Block.cobblestone, Block.cobblestone, Block.cobblestone, Block.cobblestone, Block.cobblestone, Block.cobblestone, Block.cobblestone, Item.coal

});

 

GameRegistry.addRecipe(new ItemStack(GoldStick,1), new Object[]{

"I","S","N",'I',Item.ingotGold,'S',Item.stick,'N',Item.goldNugget

});

 

GameRegistry.addRecipe(new ItemStack(TaurinPick,1), new Object[]{

"TTT"," S "," S ",'T',Vertide,'S',GoldStick

});

 

GameRegistry.addRecipe(new ItemStack(TaurinAxe,1), new Object[]{

"TT ","TS "," S ",'T',Vertide,'S',GoldStick

});

 

GameRegistry.addRecipe(new ItemStack(TaurinAxe,1), new Object[]{

" TT"," ST"," S ",'T',Vertide,'S',GoldStick

});

 

GameRegistry.addRecipe(new ItemStack(TaurinShovel,1), new Object[]{

"T","S","S",'T',Vertide,'S',GoldStick

});

 

GameRegistry.addRecipe(new ItemStack(TaurinSword,1), new Object[]{

"T","T","S",'T',Vertide,'S',GoldStick

});

 

GameRegistry.addRecipe(new ItemStack(CyanClump, 1), new Object[]{

"CC","CC",'C',Cyanitide

});

 

GameRegistry.addRecipe(new ItemStack(LoveClump, 1), new Object[]{

"LL","LL",'L',Lovite

});

 

GameRegistry.addRecipe(new ItemStack(CyLoFragment, 1), new Object[]{

"CC","LL",'C',CyanClump,'L',LoveClump

});

 

GameRegistry.addRecipe(new ItemStack(CyLoFragment, 1), new Object[]{

"LL","CC",'C',CyanClump,'L',LoveClump

});

 

GameRegistry.addRecipe(new ItemStack(LightBelt, 2), new Object[]{

" G ","LGL"," G ",'G',Item.glowstone,'L',Item.leather

});

 

GameRegistry.addRecipe(new ItemStack(DropLight, 1), new Object[]{

"SSS","BBB","SSS",'S',Block.sand,'B',LightBelt

});

 

GameRegistry.addRecipe(new ItemStack(CyLoShard, 1), new Object[]{

"FF","FF",'F',CyLoFragment

});

 

GameRegistry.addRecipe(new ItemStack(Light, 1), new Object[]{

"G G"," G ","G G",'G',Block.glowStone

});

 

GameRegistry.addRecipe(new ItemStack(EndStick, 1), new Object[]{

"D","S",'S',Item.stick,'D',EndDust

});

 

GameRegistry.addRecipe(new ItemStack(End1Sword, 1), new Object[]{

"I","I","S",'I',EndIngot,'S',EndStick

});

 

GameRegistry.addRecipe(new ItemStack(End1Shovel, 1), new Object[]{

"I","S","S",'I',EndIngot,'S',EndStick

});

 

GameRegistry.addRecipe(new ItemStack(End1Axe, 1), new Object[]{

"II ","IS "," S ",'I',EndIngot,'S',EndStick

});

 

GameRegistry.addRecipe(new ItemStack(End1Axe, 1), new Object[]{

" II"," SI"," S ",'I',EndIngot,'S',EndStick

});

 

GameRegistry.addRecipe(new ItemStack(End1Pick, 1), new Object[]{

"III"," S "," S ",'I',EndIngot,'S',EndStick

});

 

GameRegistry.addRecipe(new ItemStack(DPEndIngot, 1), new Object[]{

"SDS","DID","SDS",'S',DragonScale,'D',Item.diamond,'I',EndIngot

});

 

GameRegistry.addRecipe(new ItemStack(ItemTier2EnderSword), new Object[]{

"I","I","S",'I',DPEndIngot,'S',End1Sword

});

 

GameRegistry.addRecipe(new ItemStack(ItemTier2EnderShovel), new Object[]{

"I","E","S",'I',DPEndIngot,'S',End1Shovel,'E',EndStick

});

 

GameRegistry.addRecipe(new ItemStack(ItemTier2EnderPick), new Object[]{

"III"," E "," S ",'I',DPEndIngot,'S',End1Pick,'E',EndStick

});

 

GameRegistry.addRecipe(new ItemStack(ItemTier2EnderAxe), new Object[]{

"II","IE"," S",'I',DPEndIngot,'E',End1Axe,'S',EndStick

});

 

GameRegistry.addRecipe(new ItemStack(DSHelmet), new Object[]{

"SSS","S S",'S',DragonScale

});

 

GameRegistry.addRecipe(new ItemStack(DSBody), new Object[]{

"SCS","SSS","SSS",'S',DragonScale,'C',Cape

});

 

GameRegistry.addRecipe(new ItemStack(DSLegs), new Object[]{

"SSS","S S","S S",'S',DragonScale

});

 

GameRegistry.addRecipe(new ItemStack(DSBoots), new Object[]{

"S S","S S",'S',DragonScale

});

 

GameRegistry.addRecipe(new ItemStack(Cape), new Object[]{

"N  "," W ","  W",'N',Item.goldNugget,'W',Block.cloth

});

 

GameRegistry.addRecipe(new ItemStack(WIEndIngot, 3), new Object[]{

" S ","NNN","EEE",'S', new ItemStack(Item.skull, 1, 1),'N',Item.netherStar,'E',DPEndIngot

});

 

GameRegistry.addRecipe(new ItemStack(BaseWitherSword), new Object[]{

"I","I","S",'I',WIEndIngot,'S',ItemTier2EnderSword

});

 

GameRegistry.addRecipe(new ItemStack(BaseWitherPick), new Object[]{

"III"," S "," P ",'I',WIEndIngot,'P',ItemTier2EnderPick,'S',End1Pick

});

 

GameRegistry.addRecipe(new ItemStack(BaseWitherAxe), new Object[]{

"II","IS"," P",'I',WIEndIngot,'P',ItemTier2EnderAxe,'S',End1Axe

});

 

GameRegistry.addRecipe(new ItemStack(BaseWitherShovel), new Object[]{

"I","S","P",'I',WIEndIngot,'P',ItemTier2EnderShovel,'S',End1Shovel

});

 

GameRegistry.addRecipe(new ItemStack(MarbleBrick, 4), new Object[]{

"MM","MM",'M',Marble

});

 

GameRegistry.addRecipe(new ItemStack(BasaltBrick, 4), new Object[]{

"MM","MM",'M',Basalt

});

 

GameRegistry.addRecipe(new ItemStack(MarbleStairs), new Object[]{

"M  ","MM ","MMM",'M',Marble

});

 

GameRegistry.addRecipe(new ItemStack(MarbleBrickStairs), new Object[]{

"M  ","MM ","MMM",'M',MarbleBrick

});

 

GameRegistry.addRecipe(new ItemStack(BasaltStairs), new Object[]{

"M  ","MM ","MMM",'M',Basalt

});

 

GameRegistry.addRecipe(new ItemStack(BasaltBrickStairs), new Object[]{

"M  ","MM ","MMM",'M',BasaltBrick

});

 

GameRegistry.addShapelessRecipe(new ItemStack(BasaltPaver, 1), new Object[]{

Basalt

});

 

GameRegistry.addShapelessRecipe(new ItemStack(TopSoil), new Object[]{

Block.grass,Cyanitide

});

 

GameRegistry.addShapelessRecipe(new ItemStack(Block.dirt), new Object[]{

TopSoil

});

 

GameRegistry.addRecipe(new ItemStack(Item.flintAndSteel), new Object[]{

"I "," F",'I',Item.ingotIron,'F',Item.flint

});

 

GameRegistry.addRecipe(new ItemStack(Iridium, 2),new Object[]{

"BBB","IGI","BBB",'B',Block.blockDiamond,'G',Item.diamond,'I',Item.ingotIron

});

 

GameRegistry.addRecipe(new ItemStack(Circuit),new Object[]{

"RRR","RIR","RRR",'R',Item.redstone,'I',Item.ingotIron

});

 

GameRegistry.addRecipe(new ItemStack(Item.stick, 4),new Object[]{

"B","B",'B',Block.woodenButton

});

 

 

 

GameRegistry.addSmelting(Lovite.itemID, new ItemStack(RefinedHeart, 1), 1F);

GameRegistry.addSmelting(HeartWheat.itemID, new ItemStack(BakedWithLove, 1), 1F);

GameRegistry.addSmelting(EndDust.itemID, new ItemStack(EndIngot, 1), 1F);

GameRegistry.addSmelting(BasaltCobble.blockID, new ItemStack(Basalt, 1), 1F);

}

 

//Add all entities, rendering included

public void AddEntities()

{

 

//entities soon to be added again

 

 

}

 

//Does minecraft forge related tasks such as setting tool classes, etc.

public void DoMinecraftForgeStuff()

{

MinecraftForge.setToolClass(TaurinPick, "pickaxe", 3);

MinecraftForge.setToolClass(TaurinAxe, "axe", 3);

MinecraftForge.setToolClass(TaurinShovel, "shovel", 3);

MinecraftForge.setBlockHarvestLevel(VertOre, "pickaxe", 3);

}

 

public static void oreRegistration()

{

OreDictionary.registerOre("ingotIridium", new ItemStack(Iridium));

OreDictionary.registerOre("calclavia:CIRCUIT_T1", new ItemStack(Circuit));

}

 

 

 

 

 

 

public static void postInit(FMLPostInitializationEvent evt)

{

 

}

}

 

 

 

Client proxy:

 

 

package assests.jordsta95;

 

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

import net.minecraftforge.client.MinecraftForgeClient;

 

 

public class ClientProxy extends CommonProxy{

 

@Override

public void registerRenders(){

 

}

 

public int addArmor(String Armor)

{

return RenderingRegistry.addNewArmourRendererPrefix(Armor);

}

 

public void registerRenderers(){

//tba

}

}

 

 

 

 

And common... just if you need it:

 

 

package assests.jordsta95;

 

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

import net.minecraft.block.Block;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.entity.player.EntityPlayerMP;

import net.minecraft.item.Item;

import net.minecraft.item.ItemBlock;

import net.minecraft.network.packet.Packet;

import net.minecraft.world.World;

 

public class CommonProxy {

 

public void registerRenders(){

 

}

public int addArmor(String Armor) {

return 0;

}

 

public void registerRenderers(){

 

}

 

 

}

 

 

 

saves asking for it, if it is needed :P

 

Anyway, I seriously cannot see why I am getting that crash :(

 

Any help would be greatly appreciated.

 

Thanks a lot

-Jordan

Why bother?

Link to comment
Share on other sites

As a side note, you're not supposed to put your src in the assets folder (previously the mods folder), only resources as textures.

 

@SidedProxy(clientSide = "assets.jordsta95.ClientProxy", serverSide = "assets.jordsta95.CommonProxy")
   public static assests.jordsta95.CommonProxy CommonProxy;

assets or assests ? your Client and Common proxy are located in assests.

Author of PneumaticCraft, MineChess, Minesweeper Mod and Sokoban Mod. Visit www.minemaarten.com to take a look at them.

Link to comment
Share on other sites

Thanks, it works now, but the textures don't....

So how do I get them to work, I don't understand the new way of modding AT ALL :/

 

Here is the texture code I have:

@Override

public void registerIcons(IconRegister iconRegister){

this.blockIcon = iconRegister.registerIcon(Everything_and_More_Mod.modid + ":" + (this.getUnlocalizedName().substring(5)));

}

 

But obviously, it doesn't work -_-

Why bother?

Link to comment
Share on other sites

See the originals:

public Block func_111022_d(String par1Str)
    {
        this.field_111026_f = par1Str;
        return this;
    }

    @SideOnly(Side.CLIENT)
    protected String func_111023_E()
    {
        return this.field_111026_f == null ? "MISSING_ICON_TILE_" + this.blockID + "_" + this.unlocalizedName : this.field_111026_f;
    }
public void registerIcons(IconRegister iconRegister){
this.blockIcon = iconRegister.registerIcon(this.func_111023_E());
}

Use func_111022_d, the texture setter.

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

    • ---- Minecraft Crash Report ---- // Don't be sad, have a hug! <3 Time: 2024-05-13 10:47:00 Description: Ticking entity java.lang.IllegalArgumentException: Can't find attribute minecraft:generic.attack_damage     at net.minecraft.world.entity.ai.attributes.AttributeSupplier.m_22260_(AttributeSupplier.java:21) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading}     at net.minecraft.world.entity.ai.attributes.AttributeSupplier.m_22245_(AttributeSupplier.java:28) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading}     at net.minecraft.world.entity.ai.attributes.AttributeMap.m_22181_(AttributeMap.java:76) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading}     at net.minecraft.world.entity.LivingEntity.m_21133_(LivingEntity.java:1833) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:citadel.mixins.json:LivingEntityMixin,pl:mixin:APP:supplementaries-common.mixins.json:LivingEntityMixin,pl:mixin:APP:supplementaries.mixins.json:LivingEntityMixin,pl:mixin:APP:vampirism.mixins.json:LivingEntityAccessor,pl:mixin:APP:vampirism.mixins.json:MixinLivingEntity,pl:mixin:APP:scena.mixins.json:common.LivingEntityEquipmentSlotMixin,pl:mixin:APP:moreplayermodels.mixins.json:LivingEntityMixin,pl:mixin:APP:mixins.enderio.json:LivingEntityMixin,pl:mixin:APP:quark.mixins.json:accessor.AccessorLivingEntity,pl:mixin:APP:curios.mixins.json:MixinLivingEntity,pl:mixin:APP:adastra-common.mixins.json:common.EntityBelowWorldMixin,pl:mixin:APP:adastra-common.mixins.json:common.LivingEntityAccessor,pl:mixin:APP:adastra-common.mixins.json:common.LivingEntityMixin,pl:mixin:APP:adastra-common.mixins.json:common.radio.LivingEntityMixin,pl:mixin:APP:cataclysm.mixins.json:LivingEntityMixin,pl:mixin:APP:aether.mixins.json:common.LivingEntityMixin,pl:mixin:APP:aether.mixins.json:common.accessor.LivingEntityAccessor,pl:mixin:A}     at net.minecraft.world.entity.Mob.m_7327_(Mob.java:1398) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:vampirism.mixins.json:MixinMobEntity,pl:mixin:APP:tumbleweed.mixins.json:MobAccessor,pl:mixin:APP:moonlight-common.mixins.json:EntityMixin,pl:mixin:APP:adastra-common.mixins.json:common.MobMixin,pl:mixin:APP:aether.mixins.json:common.MobMixin,pl:mixin:A}     at net.minecraft.world.entity.ai.goal.MeleeAttackGoal.m_6739_(MeleeAttackGoal.java:147) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading,pl:accesstransformer:B}     at net.minecraft.world.entity.ai.goal.MeleeAttackGoal.m_8037_(MeleeAttackGoal.java:138) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading,pl:accesstransformer:B}     at net.minecraft.world.entity.ai.goal.WrappedGoal.m_8037_(WrappedGoal.java:65) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading}     at net.minecraft.world.entity.ai.goal.GoalSelector.m_186081_(GoalSelector.java:120) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.world.entity.ai.goal.GoalSelector.m_25373_(GoalSelector.java:111) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.world.entity.Mob.m_6140_(Mob.java:760) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:vampirism.mixins.json:MixinMobEntity,pl:mixin:APP:tumbleweed.mixins.json:MobAccessor,pl:mixin:APP:moonlight-common.mixins.json:EntityMixin,pl:mixin:APP:adastra-common.mixins.json:common.MobMixin,pl:mixin:APP:aether.mixins.json:common.MobMixin,pl:mixin:A}     at net.minecraft.world.entity.LivingEntity.m_8107_(LivingEntity.java:2546) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:citadel.mixins.json:LivingEntityMixin,pl:mixin:APP:supplementaries-common.mixins.json:LivingEntityMixin,pl:mixin:APP:supplementaries.mixins.json:LivingEntityMixin,pl:mixin:APP:vampirism.mixins.json:LivingEntityAccessor,pl:mixin:APP:vampirism.mixins.json:MixinLivingEntity,pl:mixin:APP:scena.mixins.json:common.LivingEntityEquipmentSlotMixin,pl:mixin:APP:moreplayermodels.mixins.json:LivingEntityMixin,pl:mixin:APP:mixins.enderio.json:LivingEntityMixin,pl:mixin:APP:quark.mixins.json:accessor.AccessorLivingEntity,pl:mixin:APP:curios.mixins.json:MixinLivingEntity,pl:mixin:APP:adastra-common.mixins.json:common.EntityBelowWorldMixin,pl:mixin:APP:adastra-common.mixins.json:common.LivingEntityAccessor,pl:mixin:APP:adastra-common.mixins.json:common.LivingEntityMixin,pl:mixin:APP:adastra-common.mixins.json:common.radio.LivingEntityMixin,pl:mixin:APP:cataclysm.mixins.json:LivingEntityMixin,pl:mixin:APP:aether.mixins.json:common.LivingEntityMixin,pl:mixin:APP:aether.mixins.json:common.accessor.LivingEntityAccessor,pl:mixin:A}     at net.minecraft.world.entity.Mob.m_8107_(Mob.java:536) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:vampirism.mixins.json:MixinMobEntity,pl:mixin:APP:tumbleweed.mixins.json:MobAccessor,pl:mixin:APP:moonlight-common.mixins.json:EntityMixin,pl:mixin:APP:adastra-common.mixins.json:common.MobMixin,pl:mixin:APP:aether.mixins.json:common.MobMixin,pl:mixin:A}     at net.minecraft.world.entity.AgeableMob.m_8107_(AgeableMob.java:128) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,re:classloading}     at net.minecraft.world.entity.animal.Animal.m_8107_(Animal.java:54) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,re:classloading,pl:mixin:APP:quark.mixins.json:AnimalMixin,pl:mixin:A}     at net.minecraft.world.entity.LivingEntity.m_8119_(LivingEntity.java:2296) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:citadel.mixins.json:LivingEntityMixin,pl:mixin:APP:supplementaries-common.mixins.json:LivingEntityMixin,pl:mixin:APP:supplementaries.mixins.json:LivingEntityMixin,pl:mixin:APP:vampirism.mixins.json:LivingEntityAccessor,pl:mixin:APP:vampirism.mixins.json:MixinLivingEntity,pl:mixin:APP:scena.mixins.json:common.LivingEntityEquipmentSlotMixin,pl:mixin:APP:moreplayermodels.mixins.json:LivingEntityMixin,pl:mixin:APP:mixins.enderio.json:LivingEntityMixin,pl:mixin:APP:quark.mixins.json:accessor.AccessorLivingEntity,pl:mixin:APP:curios.mixins.json:MixinLivingEntity,pl:mixin:APP:adastra-common.mixins.json:common.EntityBelowWorldMixin,pl:mixin:APP:adastra-common.mixins.json:common.LivingEntityAccessor,pl:mixin:APP:adastra-common.mixins.json:common.LivingEntityMixin,pl:mixin:APP:adastra-common.mixins.json:common.radio.LivingEntityMixin,pl:mixin:APP:cataclysm.mixins.json:LivingEntityMixin,pl:mixin:APP:aether.mixins.json:common.LivingEntityMixin,pl:mixin:APP:aether.mixins.json:common.accessor.LivingEntityAccessor,pl:mixin:A}     at net.minecraft.world.entity.Mob.m_8119_(Mob.java:337) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:vampirism.mixins.json:MixinMobEntity,pl:mixin:APP:tumbleweed.mixins.json:MobAccessor,pl:mixin:APP:moonlight-common.mixins.json:EntityMixin,pl:mixin:APP:adastra-common.mixins.json:common.MobMixin,pl:mixin:APP:aether.mixins.json:common.MobMixin,pl:mixin:A}     at net.minecraft.server.level.ServerLevel.m_8647_(ServerLevel.java:693) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:cupboard.mixins.json:ServerAddEntityMixin,pl:mixin:APP:citadel.mixins.json:ServerLevelMixin,pl:mixin:APP:supplementaries-common.mixins.json:ServerLevelMixin,pl:mixin:APP:starlight.mixins.json:common.world.ServerWorldMixin,pl:mixin:APP:zombieawareness.mixins.json:MixinPlaySound,pl:mixin:APP:zombieawareness.mixins.json:MixinLevelEvent,pl:mixin:APP:adastra-common.mixins.json:common.ServerLevelMixin,pl:mixin:APP:adastra-common.mixins.json:common.multipart.ServerLevelMixin,pl:mixin:APP:aether.mixins.json:common.accessor.ServerLevelAccessor,pl:mixin:A}     at net.minecraft.world.level.Level.m_46653_(Level.java:479) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:twilightforest:cloud,re:classloading,pl:accesstransformer:B,xf:fml:twilightforest:cloud,pl:mixin:APP:citadel.mixins.json:LevelMixin,pl:mixin:APP:starlight.mixins.json:common.world.LevelMixin,pl:mixin:APP:adastra.mixins.json:common.multipart.LevelMixin,pl:mixin:APP:aether.mixins.json:common.accessor.LevelAccessor,pl:mixin:A}     at net.minecraft.server.level.ServerLevel.m_184063_(ServerLevel.java:343) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:cupboard.mixins.json:ServerAddEntityMixin,pl:mixin:APP:citadel.mixins.json:ServerLevelMixin,pl:mixin:APP:supplementaries-common.mixins.json:ServerLevelMixin,pl:mixin:APP:starlight.mixins.json:common.world.ServerWorldMixin,pl:mixin:APP:zombieawareness.mixins.json:MixinPlaySound,pl:mixin:APP:zombieawareness.mixins.json:MixinLevelEvent,pl:mixin:APP:adastra-common.mixins.json:common.ServerLevelMixin,pl:mixin:APP:adastra-common.mixins.json:common.multipart.ServerLevelMixin,pl:mixin:APP:aether.mixins.json:common.accessor.ServerLevelAccessor,pl:mixin:A}     at net.minecraft.world.level.entity.EntityTickList.m_156910_(EntityTickList.java:54) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading}     at net.minecraft.server.level.ServerLevel.m_8793_(ServerLevel.java:323) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:cupboard.mixins.json:ServerAddEntityMixin,pl:mixin:APP:citadel.mixins.json:ServerLevelMixin,pl:mixin:APP:supplementaries-common.mixins.json:ServerLevelMixin,pl:mixin:APP:starlight.mixins.json:common.world.ServerWorldMixin,pl:mixin:APP:zombieawareness.mixins.json:MixinPlaySound,pl:mixin:APP:zombieawareness.mixins.json:MixinLevelEvent,pl:mixin:APP:adastra-common.mixins.json:common.ServerLevelMixin,pl:mixin:APP:adastra-common.mixins.json:common.multipart.ServerLevelMixin,pl:mixin:APP:aether.mixins.json:common.accessor.ServerLevelAccessor,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_5703_(MinecraftServer.java:893) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:spatial.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.dedicated.DedicatedServer.m_5703_(DedicatedServer.java:283) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.server.MinecraftServer.m_5705_(MinecraftServer.java:814) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:spatial.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:661) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:spatial.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServer.java:251) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:spatial.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at java.lang.Thread.run(Thread.java:840) ~[?:?] {re:mixin} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Server thread Stacktrace:     at net.minecraft.world.entity.ai.attributes.AttributeSupplier.m_22260_(AttributeSupplier.java:21) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading}     at net.minecraft.world.entity.ai.attributes.AttributeSupplier.m_22245_(AttributeSupplier.java:28) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading}     at net.minecraft.world.entity.ai.attributes.AttributeMap.m_22181_(AttributeMap.java:76) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading}     at net.minecraft.world.entity.LivingEntity.m_21133_(LivingEntity.java:1833) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:citadel.mixins.json:LivingEntityMixin,pl:mixin:APP:supplementaries-common.mixins.json:LivingEntityMixin,pl:mixin:APP:supplementaries.mixins.json:LivingEntityMixin,pl:mixin:APP:vampirism.mixins.json:LivingEntityAccessor,pl:mixin:APP:vampirism.mixins.json:MixinLivingEntity,pl:mixin:APP:scena.mixins.json:common.LivingEntityEquipmentSlotMixin,pl:mixin:APP:moreplayermodels.mixins.json:LivingEntityMixin,pl:mixin:APP:mixins.enderio.json:LivingEntityMixin,pl:mixin:APP:quark.mixins.json:accessor.AccessorLivingEntity,pl:mixin:APP:curios.mixins.json:MixinLivingEntity,pl:mixin:APP:adastra-common.mixins.json:common.EntityBelowWorldMixin,pl:mixin:APP:adastra-common.mixins.json:common.LivingEntityAccessor,pl:mixin:APP:adastra-common.mixins.json:common.LivingEntityMixin,pl:mixin:APP:adastra-common.mixins.json:common.radio.LivingEntityMixin,pl:mixin:APP:cataclysm.mixins.json:LivingEntityMixin,pl:mixin:APP:aether.mixins.json:common.LivingEntityMixin,pl:mixin:APP:aether.mixins.json:common.accessor.LivingEntityAccessor,pl:mixin:A}     at net.minecraft.world.entity.Mob.m_7327_(Mob.java:1398) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:vampirism.mixins.json:MixinMobEntity,pl:mixin:APP:tumbleweed.mixins.json:MobAccessor,pl:mixin:APP:moonlight-common.mixins.json:EntityMixin,pl:mixin:APP:adastra-common.mixins.json:common.MobMixin,pl:mixin:APP:aether.mixins.json:common.MobMixin,pl:mixin:A}     at net.minecraft.world.entity.ai.goal.MeleeAttackGoal.m_6739_(MeleeAttackGoal.java:147) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading,pl:accesstransformer:B}     at net.minecraft.world.entity.ai.goal.MeleeAttackGoal.m_8037_(MeleeAttackGoal.java:138) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading,pl:accesstransformer:B}     at net.minecraft.world.entity.ai.goal.WrappedGoal.m_8037_(WrappedGoal.java:65) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading}     at net.minecraft.world.entity.ai.goal.GoalSelector.m_186081_(GoalSelector.java:120) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.world.entity.ai.goal.GoalSelector.m_25373_(GoalSelector.java:111) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.world.entity.Mob.m_6140_(Mob.java:760) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:vampirism.mixins.json:MixinMobEntity,pl:mixin:APP:tumbleweed.mixins.json:MobAccessor,pl:mixin:APP:moonlight-common.mixins.json:EntityMixin,pl:mixin:APP:adastra-common.mixins.json:common.MobMixin,pl:mixin:APP:aether.mixins.json:common.MobMixin,pl:mixin:A}     at net.minecraft.world.entity.LivingEntity.m_8107_(LivingEntity.java:2546) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:citadel.mixins.json:LivingEntityMixin,pl:mixin:APP:supplementaries-common.mixins.json:LivingEntityMixin,pl:mixin:APP:supplementaries.mixins.json:LivingEntityMixin,pl:mixin:APP:vampirism.mixins.json:LivingEntityAccessor,pl:mixin:APP:vampirism.mixins.json:MixinLivingEntity,pl:mixin:APP:scena.mixins.json:common.LivingEntityEquipmentSlotMixin,pl:mixin:APP:moreplayermodels.mixins.json:LivingEntityMixin,pl:mixin:APP:mixins.enderio.json:LivingEntityMixin,pl:mixin:APP:quark.mixins.json:accessor.AccessorLivingEntity,pl:mixin:APP:curios.mixins.json:MixinLivingEntity,pl:mixin:APP:adastra-common.mixins.json:common.EntityBelowWorldMixin,pl:mixin:APP:adastra-common.mixins.json:common.LivingEntityAccessor,pl:mixin:APP:adastra-common.mixins.json:common.LivingEntityMixin,pl:mixin:APP:adastra-common.mixins.json:common.radio.LivingEntityMixin,pl:mixin:APP:cataclysm.mixins.json:LivingEntityMixin,pl:mixin:APP:aether.mixins.json:common.LivingEntityMixin,pl:mixin:APP:aether.mixins.json:common.accessor.LivingEntityAccessor,pl:mixin:A}     at net.minecraft.world.entity.Mob.m_8107_(Mob.java:536) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:vampirism.mixins.json:MixinMobEntity,pl:mixin:APP:tumbleweed.mixins.json:MobAccessor,pl:mixin:APP:moonlight-common.mixins.json:EntityMixin,pl:mixin:APP:adastra-common.mixins.json:common.MobMixin,pl:mixin:APP:aether.mixins.json:common.MobMixin,pl:mixin:A}     at net.minecraft.world.entity.AgeableMob.m_8107_(AgeableMob.java:128) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,re:classloading}     at net.minecraft.world.entity.animal.Animal.m_8107_(Animal.java:54) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,re:classloading,pl:mixin:APP:quark.mixins.json:AnimalMixin,pl:mixin:A}     at net.minecraft.world.entity.LivingEntity.m_8119_(LivingEntity.java:2296) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:citadel.mixins.json:LivingEntityMixin,pl:mixin:APP:supplementaries-common.mixins.json:LivingEntityMixin,pl:mixin:APP:supplementaries.mixins.json:LivingEntityMixin,pl:mixin:APP:vampirism.mixins.json:LivingEntityAccessor,pl:mixin:APP:vampirism.mixins.json:MixinLivingEntity,pl:mixin:APP:scena.mixins.json:common.LivingEntityEquipmentSlotMixin,pl:mixin:APP:moreplayermodels.mixins.json:LivingEntityMixin,pl:mixin:APP:mixins.enderio.json:LivingEntityMixin,pl:mixin:APP:quark.mixins.json:accessor.AccessorLivingEntity,pl:mixin:APP:curios.mixins.json:MixinLivingEntity,pl:mixin:APP:adastra-common.mixins.json:common.EntityBelowWorldMixin,pl:mixin:APP:adastra-common.mixins.json:common.LivingEntityAccessor,pl:mixin:APP:adastra-common.mixins.json:common.LivingEntityMixin,pl:mixin:APP:adastra-common.mixins.json:common.radio.LivingEntityMixin,pl:mixin:APP:cataclysm.mixins.json:LivingEntityMixin,pl:mixin:APP:aether.mixins.json:common.LivingEntityMixin,pl:mixin:APP:aether.mixins.json:common.accessor.LivingEntityAccessor,pl:mixin:A}     at net.minecraft.world.entity.Mob.m_8119_(Mob.java:337) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:vampirism.mixins.json:MixinMobEntity,pl:mixin:APP:tumbleweed.mixins.json:MobAccessor,pl:mixin:APP:moonlight-common.mixins.json:EntityMixin,pl:mixin:APP:adastra-common.mixins.json:common.MobMixin,pl:mixin:APP:aether.mixins.json:common.MobMixin,pl:mixin:A}     at net.minecraft.server.level.ServerLevel.m_8647_(ServerLevel.java:693) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:cupboard.mixins.json:ServerAddEntityMixin,pl:mixin:APP:citadel.mixins.json:ServerLevelMixin,pl:mixin:APP:supplementaries-common.mixins.json:ServerLevelMixin,pl:mixin:APP:starlight.mixins.json:common.world.ServerWorldMixin,pl:mixin:APP:zombieawareness.mixins.json:MixinPlaySound,pl:mixin:APP:zombieawareness.mixins.json:MixinLevelEvent,pl:mixin:APP:adastra-common.mixins.json:common.ServerLevelMixin,pl:mixin:APP:adastra-common.mixins.json:common.multipart.ServerLevelMixin,pl:mixin:APP:aether.mixins.json:common.accessor.ServerLevelAccessor,pl:mixin:A}     at net.minecraft.world.level.Level.m_46653_(Level.java:479) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:twilightforest:cloud,re:classloading,pl:accesstransformer:B,xf:fml:twilightforest:cloud,pl:mixin:APP:citadel.mixins.json:LevelMixin,pl:mixin:APP:starlight.mixins.json:common.world.LevelMixin,pl:mixin:APP:adastra.mixins.json:common.multipart.LevelMixin,pl:mixin:APP:aether.mixins.json:common.accessor.LevelAccessor,pl:mixin:A}     at net.minecraft.server.level.ServerLevel.m_184063_(ServerLevel.java:343) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:cupboard.mixins.json:ServerAddEntityMixin,pl:mixin:APP:citadel.mixins.json:ServerLevelMixin,pl:mixin:APP:supplementaries-common.mixins.json:ServerLevelMixin,pl:mixin:APP:starlight.mixins.json:common.world.ServerWorldMixin,pl:mixin:APP:zombieawareness.mixins.json:MixinPlaySound,pl:mixin:APP:zombieawareness.mixins.json:MixinLevelEvent,pl:mixin:APP:adastra-common.mixins.json:common.ServerLevelMixin,pl:mixin:APP:adastra-common.mixins.json:common.multipart.ServerLevelMixin,pl:mixin:APP:aether.mixins.json:common.accessor.ServerLevelAccessor,pl:mixin:A}     at net.minecraft.world.level.entity.EntityTickList.m_156910_(EntityTickList.java:54) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading}     at net.minecraft.server.level.ServerLevel.m_8793_(ServerLevel.java:323) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:cupboard.mixins.json:ServerAddEntityMixin,pl:mixin:APP:citadel.mixins.json:ServerLevelMixin,pl:mixin:APP:supplementaries-common.mixins.json:ServerLevelMixin,pl:mixin:APP:starlight.mixins.json:common.world.ServerWorldMixin,pl:mixin:APP:zombieawareness.mixins.json:MixinPlaySound,pl:mixin:APP:zombieawareness.mixins.json:MixinLevelEvent,pl:mixin:APP:adastra-common.mixins.json:common.ServerLevelMixin,pl:mixin:APP:adastra-common.mixins.json:common.multipart.ServerLevelMixin,pl:mixin:APP:aether.mixins.json:common.accessor.ServerLevelAccessor,pl:mixin:A} -- Entity being ticked -- Details:     Entity Type: minecraft:cow (net.minecraft.world.entity.animal.Cow)     Entity ID: 38     Entity Name: Cow     Entity's Exact location: -18.91, 67.00, 140.77     Entity's Block location: World: (-19,67,140), Section: (at 13,3,12 in -2,4,8; chunk contains blocks -32,-64,128 to -17,319,143), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,-64,0 to -1,319,511)     Entity's Momentum: -0.50, 0.36, 0.08     Entity's Passengers: []     Entity's Vehicle: null Stacktrace:     at net.minecraft.world.level.Level.m_46653_(Level.java:479) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:twilightforest:cloud,re:classloading,pl:accesstransformer:B,xf:fml:twilightforest:cloud,pl:mixin:APP:citadel.mixins.json:LevelMixin,pl:mixin:APP:starlight.mixins.json:common.world.LevelMixin,pl:mixin:APP:adastra.mixins.json:common.multipart.LevelMixin,pl:mixin:APP:aether.mixins.json:common.accessor.LevelAccessor,pl:mixin:A}     at net.minecraft.server.level.ServerLevel.m_184063_(ServerLevel.java:343) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:cupboard.mixins.json:ServerAddEntityMixin,pl:mixin:APP:citadel.mixins.json:ServerLevelMixin,pl:mixin:APP:supplementaries-common.mixins.json:ServerLevelMixin,pl:mixin:APP:starlight.mixins.json:common.world.ServerWorldMixin,pl:mixin:APP:zombieawareness.mixins.json:MixinPlaySound,pl:mixin:APP:zombieawareness.mixins.json:MixinLevelEvent,pl:mixin:APP:adastra-common.mixins.json:common.ServerLevelMixin,pl:mixin:APP:adastra-common.mixins.json:common.multipart.ServerLevelMixin,pl:mixin:APP:aether.mixins.json:common.accessor.ServerLevelAccessor,pl:mixin:A}     at net.minecraft.world.level.entity.EntityTickList.m_156910_(EntityTickList.java:54) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:classloading}     at net.minecraft.server.level.ServerLevel.m_8793_(ServerLevel.java:323) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:cupboard.mixins.json:ServerAddEntityMixin,pl:mixin:APP:citadel.mixins.json:ServerLevelMixin,pl:mixin:APP:supplementaries-common.mixins.json:ServerLevelMixin,pl:mixin:APP:starlight.mixins.json:common.world.ServerWorldMixin,pl:mixin:APP:zombieawareness.mixins.json:MixinPlaySound,pl:mixin:APP:zombieawareness.mixins.json:MixinLevelEvent,pl:mixin:APP:adastra-common.mixins.json:common.ServerLevelMixin,pl:mixin:APP:adastra-common.mixins.json:common.multipart.ServerLevelMixin,pl:mixin:APP:aether.mixins.json:common.accessor.ServerLevelAccessor,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_5703_(MinecraftServer.java:893) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:spatial.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.dedicated.DedicatedServer.m_5703_(DedicatedServer.java:283) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.server.MinecraftServer.m_5705_(MinecraftServer.java:814) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:spatial.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:661) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:spatial.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServer.java:251) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:spatial.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at java.lang.Thread.run(Thread.java:840) ~[?:?] {re:mixin} -- Affected level -- Details:     All players: 2 total; [ServerPlayer['unclickable'/396, l='ServerLevel[world]', x=17.55, y=71.00, z=18.07], ServerPlayer['Fallen1703'/663, l='ServerLevel[world]', x=27.50, y=75.00, z=37.50]]     Chunk stats: 2209     Level dimension: minecraft:overworld     Level spawn location: World: (0,71,32), Section: (at 0,7,0 in 0,4,2; chunk contains blocks 0,-64,32 to 15,319,47), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)     Level time: 61817 game time, 61817 day time     Level name: world     Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false     Level weather: Rain time: 96476 (now: false), thunder time: 109949 (now: false)     Known server brands: forge     Removed feature flags:      Level was modded: true     Level storage version: 0x04ABD - Anvil Stacktrace:     at net.minecraft.server.MinecraftServer.m_5703_(MinecraftServer.java:893) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:spatial.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.dedicated.DedicatedServer.m_5703_(DedicatedServer.java:283) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B}     at net.minecraft.server.MinecraftServer.m_5705_(MinecraftServer.java:814) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:spatial.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:661) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:spatial.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServer.java:251) ~[server-1.20.1-20230612.114412-srg.jar%23357!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:spatial.MinecraftServerMixin,pl:mixin:APP:citadel.mixins.json:MinecraftServerMixin,pl:mixin:APP:balm.mixins.json:MinecraftServerMixin,pl:mixin:A}     at java.lang.Thread.run(Thread.java:840) ~[?:?] {re:mixin} -- System Details -- Details:     Minecraft Version: 1.20.1     Minecraft Version ID: 1.20.1     Operating System: Linux (amd64) version 5.15.0-106-generic     Java Version: 17.0.10, Private Build     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Private Build     Memory: 5414856712 bytes (5164 MiB) / 8589934592 bytes (8192 MiB) up to 8589934592 bytes (8192 MiB)     CPUs: 4     Processor Vendor: GenuineIntel     Processor Name: Intel(R) Xeon(R) Gold 6336Y CPU @ 2.40GHz     Identifier: Intel64 Family 6 Model 106 Stepping 6     Microarchitecture: Ice Lake (Server)     Frequency (GHz): 2.40     Number of physical packages: 4     Number of physical CPUs: 4     Number of logical CPUs: 4     Graphics card #0 name: GD 5446     Graphics card #0 vendor: Cirrus Logic (0x1013)     Graphics card #0 VRAM (MB): 32.00     Graphics card #0 deviceId: 0x00b8     Graphics card #0 versionInfo: unknown     Memory slot #0 capacity (MB): 10240.00     Memory slot #0 clockSpeed (GHz): -0.00     Memory slot #0 type: RAM     Virtual memory max (MB): 4970.23     Virtual memory used (MB): 9829.27     Swap memory total (MB): 0.00     Swap memory used (MB): 0.00     JVM Flags: 2 total; -Xms8192M -Xmx8192M     Server Running: true     Player Count: 2 / 20; [ServerPlayer['unclickable'/396, l='ServerLevel[world]', x=17.55, y=71.00, z=18.07], ServerPlayer['Fallen1703'/663, l='ServerLevel[world]', x=27.50, y=75.00, z=37.50]]     Data Packs: vanilla, mod:cyclopscore, mod:quarryplus, mod:geckolib, mod:scena (incompatible), mod:botarium (incompatible), mod:aether, mod:towntalk (incompatible), mod:connectivity (incompatible), mod:mcwwindows, mod:dynamiclights (incompatible), mod:polars_mad_tweaks, mod:forgeendertech, mod:citadel (incompatible), mod:alexsmobs (incompatible), mod:evilcraft, mod:zombieawareness (incompatible), mod:yungsapi, mod:epic_explosives, mod:mixinextras (incompatible), mod:weather2 (incompatible), mod:uteamcore, mod:grimoireofgaia, mod:balm, mod:carryon (incompatible), mod:betterfortresses, mod:cloth_config (incompatible), mod:twilightforest, mod:athena, mod:prettypipes (incompatible), mod:advancementplaques (incompatible), mod:usefulbackpacks, mod:signpost, mod:resourcefulconfig (incompatible), mod:fairylights (incompatible), mod:lionfishapi (incompatible), mod:wthit (incompatible), mod:goprone, mod:cataclysm (incompatible), mod:curios (incompatible), mod:blockui, mod:searchables (incompatible), mod:bettervillage, mod:ftbultimine (incompatible), mod:betterstrongholds, mod:more_divines, mod:resourcefullib (incompatible), mod:cumulus_menus, mod:constructionwand, mod:architectury (incompatible), mod:aiimprovements, mod:mcwfurnitures, mod:eternal_tales, mod:cupboard (incompatible), mod:trafficcraft, mod:itemphysic, mod:flib, mod:adchimneys, mod:nitrogen_internals, mod:fallingtree (incompatible), mod:bettermineshafts, mod:dynamictrees (incompatible), mod:divinerpg, mod:cyclic, mod:betteradvancements (incompatible), mod:tht, mod:betteranimationscollection, mod:hermaeusmoramod, mod:cucumber, mod:ftblibrary (incompatible), mod:ftbteams (incompatible), mod:amendments (incompatible), mod:jei, mod:ae2 (incompatible), mod:libraryferret, mod:mekanism, mod:mekanismgenerators, mod:mekanismadditions, mod:mekanismtools, mod:kobolds, mod:invtweaks, mod:journeymap (incompatible), mod:tumbleweed (incompatible), mod:badpackets (incompatible), mod:dragon_priest_mod, mod:rare_ice (incompatible), mod:midnightlib (incompatible), mod:starlight (incompatible), mod:additional_lights, mod:iceandfire, mod:inventorypets (incompatible), mod:puzzlesaccessapi, mod:mysticalagriculture, mod:dungeons_arise, mod:craftingtweaks, mod:zerocore (incompatible), mod:bigreactors (incompatible), mod:useless_sword, mod:duneons, mod:terrablender, mod:biomesoplenty (incompatible), mod:moonlight (incompatible), mod:mousetweaks, mod:ftbquests (incompatible), mod:mixinsquared (incompatible), mod:creativecore, mod:domum_ornamentum, mod:enderio, mod:kotlinforforge (incompatible), mod:golems, mod:iceberg (incompatible), mod:rats, mod:forge, mod:gravestone, mod:moreplayermodels (incompatible), mod:securitycraft, mod:storagedrawers (incompatible), mod:zeta (incompatible), mod:quark (incompatible), mod:supplementaries, mod:toughasnails (incompatible), mod:armourers_workshop (incompatible), mod:inventoryhud (incompatible), mod:structurize, mod:multipiston, mod:coroutil (incompatible), mod:minecolonies, mod:creeperoverhaul, mod:appleskin (incompatible), mod:vampirism, mod:puzzleslib, mod:chiselsandbits (incompatible), mod:ad_astra (incompatible), Supplementaries Generated Pack, builtin/aether_accessories, golems:golems_addon_biomesoplenty, golems:golems_addon_mekanism, golems:golems_addon_quark     Enabled Feature Flags: minecraft:vanilla     World Generation: Stable     Is Modded: Definitely; Server brand changed to 'forge'     Type: Dedicated Server (map_server.txt)     ModLauncher: 10.0.9+10.0.9+main.dcd20f30     ModLauncher launch target: forgeserver     ModLauncher naming: srg     ModLauncher services:          mixin-0.8.5.jar mixin PLUGINSERVICE          eventbus-6.0.5.jar eventbus PLUGINSERVICE          loader-47.2.2.jar slf4jfixer PLUGINSERVICE          loader-47.2.2.jar object_holder_definalize PLUGINSERVICE          loader-47.2.2.jar runtime_enum_extender PLUGINSERVICE          loader-47.2.2.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          loader-47.2.2.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE      FML Language Providers:          [email protected]         [email protected]         [email protected]         [email protected]         [email protected]     Mod List:          CyclopsCore-1.20.1-1.19.1.jar                     |Cyclops Core                  |cyclopscore                   |1.19.1              |DONE      |Manifest: NOSIGNATURE         AdditionalEnchantedMiner-1.20.1-1201.0.58.jar     |QuarryPlus                    |quarryplus                    |1201.0.58           |DONE      |Manifest: ef:50:af:b3:03:e0:3e:70:a7:ef:78:77:a5:4d:d4:b5:07:ec:df:9d:d6:f3:12:13:c9:3c:cd:9a:0a:3e:6b:43         geckolib-forge-1.20.1-4.4.4.jar                   |GeckoLib 4                    |geckolib                      |4.4.4               |DONE      |Manifest: NOSIGNATURE         scena-forge-1.0.103.jar                           |Scena                         |scena                         |1.0.103             |DONE      |Manifest: NOSIGNATURE         botarium-forge-1.20.1-2.3.3.jar                   |Botarium                      |botarium                      |2.3.3               |DONE      |Manifest: NOSIGNATURE         aether-1.20.1-1.4.2-neoforge.jar                  |The Aether                    |aether                        |1.20.1-1.4.2-neoforg|DONE      |Manifest: NOSIGNATURE         towntalk-1.20.1-1.0.1.jar                         |TownTalk                      |towntalk                      |1.0.1               |DONE      |Manifest: NOSIGNATURE         connectivity-1.20.1-5.5.jar                       |Connectivity Mod              |connectivity                  |1.20.1-5.5          |DONE      |Manifest: NOSIGNATURE         mcw-windows-2.2.1-mc1.20.1forge.jar               |Macaw's Windows               |mcwwindows                    |2.2.1               |DONE      |Manifest: NOSIGNATURE         dynamiclights-1.20.1.2.jar                        |Dynamic Lights                |dynamiclights                 |1.20.1.2            |DONE      |Manifest: NOSIGNATURE         polars_mad_tweaks-1.20-1.3.jar                    |Polars Mad Tweaks             |polars_mad_tweaks             |1.20-1.3            |DONE      |Manifest: NOSIGNATURE         ForgeEndertech-1.20.1-11.1.1.1-build.0365.jar     |ForgeEndertech                |forgeendertech                |11.1.1.1            |DONE      |Manifest: NOSIGNATURE         citadel-2.5.4-1.20.1.jar                          |Citadel                       |citadel                       |2.5.4               |DONE      |Manifest: NOSIGNATURE         alexsmobs-1.22.8.jar                              |Alex's Mobs                   |alexsmobs                     |1.22.8              |DONE      |Manifest: NOSIGNATURE         EvilCraft-1.20.1-1.2.39.jar                       |EvilCraft                     |evilcraft                     |1.2.39              |DONE      |Manifest: NOSIGNATURE         zombieawareness-1.20.1-1.13.1.jar                 |Zombie Awareness              |zombieawareness               |1.20.1-1.13.1       |DONE      |Manifest: NOSIGNATURE         YungsApi-1.20-Forge-4.0.5.jar                     |YUNG's API                    |yungsapi                      |1.20-Forge-4.0.5    |DONE      |Manifest: NOSIGNATURE         Epic Explosives v1.3 - 1.20.1.jar                 |Epic Explosives               |epic_explosives               |1.3                 |DONE      |Manifest: NOSIGNATURE         mixinextras-forge-0.2.0-beta.9.jar                |MixinExtras                   |mixinextras                   |0.2.0-beta.9        |DONE      |Manifest: NOSIGNATURE         weather2-1.20.1-2.8.3.jar                         |Weather2                      |weather2                      |1.20.1-2.8.3        |DONE      |Manifest: NOSIGNATURE         u_team_core-forge-1.20.1-5.1.4.269.jar            |U Team Core                   |uteamcore                     |5.1.4.269           |DONE      |Manifest: f4:a6:0b:ee:cb:8a:1a:ea:9f:9d:45:91:8f:8b:b3:ae:26:f3:bf:05:86:1d:90:9e:f6:32:2a:1a:ed:1d:ce:b0         GrimoireOfGaia4-1.20.1-4.0.0-alpha.8.jar          |Grimoire of Gaia 4            |grimoireofgaia                |4.0.0-alpha.8       |DONE      |Manifest: NOSIGNATURE         balm-forge-1.20.1-7.2.2.jar                       |Balm                          |balm                          |7.2.2               |DONE      |Manifest: NOSIGNATURE         carryon-forge-1.20.1-2.1.2.7.jar                  |Carry On                      |carryon                       |2.1.2.7             |DONE      |Manifest: NOSIGNATURE         YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar  |YUNG's Better Nether Fortresse|betterfortresses              |1.20-Forge-2.0.6    |DONE      |Manifest: NOSIGNATURE         cloth-config-11.1.118-forge-1.20.1.jar            |Cloth Config v10 API          |cloth_config                  |11.1.118            |DONE      |Manifest: NOSIGNATURE         twilightforest-1.20.1-4.3.2145-universal.jar      |The Twilight Forest           |twilightforest                |4.3.2145            |DONE      |Manifest: NOSIGNATURE         athena-forge-1.20.1-3.1.2.jar                     |Athena                        |athena                        |3.1.2               |DONE      |Manifest: NOSIGNATURE         PrettyPipes-1.15.0-all.jar                        |PrettyPipes                   |prettypipes                   |1.15.0              |DONE      |Manifest: NOSIGNATURE         AdvancementPlaques-1.20.1-forge-1.5.1.jar         |Advancement Plaques           |advancementplaques            |1.5.1               |DONE      |Manifest: NOSIGNATURE         useful_backpacks-forge-1.20.1-2.0.1.122.jar       |Useful Backpacks              |usefulbackpacks               |2.0.1.122           |DONE      |Manifest: f4:a6:0b:ee:cb:8a:1a:ea:9f:9d:45:91:8f:8b:b3:ae:26:f3:bf:05:86:1d:90:9e:f6:32:2a:1a:ed:1d:ce:b0         signpost-1.20.1-2.02.0.jar                        |signpost                      |signpost                      |2.02.0              |DONE      |Manifest: NOSIGNATURE         resourcefulconfig-forge-1.20.1-2.1.2.jar          |Resourcefulconfig             |resourcefulconfig             |2.1.2               |DONE      |Manifest: NOSIGNATURE         fairylights-7.0.0-1.20.1.jar                      |Fairy Lights                  |fairylights                   |7.0.0               |DONE      |Manifest: NOSIGNATURE         lionfishapi-1.8.jar                               |LionfishAPI                   |lionfishapi                   |1.8                 |DONE      |Manifest: NOSIGNATURE         wthit-forge-8.10.0.jar                            |wthit                         |wthit                         |8.10.0              |DONE      |Manifest: NOSIGNATURE         GoProne-forge-1.20.1-3.1.1.jar                    |GoProne                       |goprone                       |3.1.1               |DONE      |Manifest: NOSIGNATURE         L_Enders_Cataclysm-1.99.2-1.20.1.jar              |Cataclysm Mod                 |cataclysm                     |1.99.2              |DONE      |Manifest: NOSIGNATURE         curios-forge-5.9.0-1.20.1.jar                     |Curios API                    |curios                        |5.9.0+1.20.1        |DONE      |Manifest: NOSIGNATURE         blockui-1.20.1-1.0.155-BETA.jar                   |UI Library Mod                |blockui                       |1.20.1-1.0.155-BETA |DONE      |Manifest: NOSIGNATURE         Searchables-forge-1.20.1-1.0.1.jar                |Searchables                   |searchables                   |1.0.1               |DONE      |Manifest: NOSIGNATURE         bettervillage-forge-1.20.1-3.2.0.jar              |Better village                |bettervillage                 |3.1.0               |DONE      |Manifest: NOSIGNATURE         ftb-ultimine-forge-2001.1.4.jar                   |FTB Ultimine                  |ftbultimine                   |2001.1.4            |DONE      |Manifest: NOSIGNATURE         YungsBetterStrongholds-1.20-Forge-4.0.3.jar       |YUNG's Better Strongholds     |betterstrongholds             |1.20-Forge-4.0.3    |DONE      |Manifest: NOSIGNATURE         More Divines 1.20.1 - v0.6 - Reimagined.jar       |More Divines                  |more_divines                  |0.6                 |DONE      |Manifest: NOSIGNATURE         resourcefullib-forge-1.20.1-2.1.24.jar            |Resourceful Lib               |resourcefullib                |2.1.24              |DONE      |Manifest: NOSIGNATURE         cumulus_menus-1.20.1-1.0.0-neoforge.jar           |Cumulus                       |cumulus_menus                 |1.20.1-1.0.0-neoforg|DONE      |Manifest: NOSIGNATURE         constructionwand-1.20.1-2.11.jar                  |Construction Wand             |constructionwand              |1.20.1-2.11         |DONE      |Manifest: NOSIGNATURE         architectury-9.2.14-forge.jar                     |Architectury                  |architectury                  |9.2.14              |DONE      |Manifest: NOSIGNATURE         AI-Improvements-1.20-0.5.2.jar                    |AI-Improvements               |aiimprovements                |0.5.2               |DONE      |Manifest: NOSIGNATURE         mcw-furniture-3.2.0-mc1.20.1forge.jar             |Macaw's Furniture             |mcwfurnitures                 |3.2.0               |DONE      |Manifest: NOSIGNATURE         Eternal-Tales-Reworking-Update.-Part-V.-Final-v1.6|Eternal Tales                 |eternal_tales                 |1.6.31              |DONE      |Manifest: NOSIGNATURE         cupboard-1.20.1-2.6.jar                           |Cupboard utilities            |cupboard                      |1.20.1-2.6          |DONE      |Manifest: NOSIGNATURE         trafficcraft-1.0.4-1.20.1.jar                     |TrafficCraft                  |trafficcraft                  |1.0.4-1.20.1        |DONE      |Manifest: NOSIGNATURE         ItemPhysic_FORGE_v1.7.1_mc1.20.1.jar              |ItemPhysic                    |itemphysic                    |1.7.1               |DONE      |Manifest: NOSIGNATURE         flib-1.20.1-0.0.12.jar                            |flib                          |flib                          |0.0.12              |DONE      |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         AdChimneys-1.20.1-10.1.5.1-build.0365.jar         |Advanced Chimneys             |adchimneys                    |10.1.5.1            |DONE      |Manifest: NOSIGNATURE         nitrogen_internals-1.20.1-1.0.7-neoforge.jar      |Nitrogen                      |nitrogen_internals            |1.20.1-1.0.7-neoforg|DONE      |Manifest: NOSIGNATURE         FallingTree-1.20.1-4.3.4.jar                      |FallingTree                   |fallingtree                   |4.3.4               |DONE      |Manifest: 3c:8e:df:6c:df:a6:2a:9f:af:64:ea:04:9a:cf:65:92:3b:54:93:0e:96:50:b4:52:e1:13:42:18:2b:ae:40:29         YungsBetterMineshafts-1.20-Forge-4.0.4.jar        |YUNG's Better Mineshafts      |bettermineshafts              |1.20-Forge-4.0.4    |DONE      |Manifest: NOSIGNATURE         DynamicTrees-1.20.1-1.3.0-BETA2.jar               |Dynamic Trees                 |dynamictrees                  |1.20.1-1.3.0-BETA2  |DONE      |Manifest: NOSIGNATURE         DivineRPG-1.10.7.3.jar                            |DivineRPG                     |divinerpg                     |1.10.7.3            |DONE      |Manifest: NOSIGNATURE         Cyclic-1.20.1-1.12.9.jar                          |Cyclic                        |cyclic                        |1.12.9              |DONE      |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         BetterAdvancements-1.20.1-0.3.2.162.jar           |Better Advancements           |betteradvancements            |0.3.2.162           |DONE      |Manifest: NOSIGNATURE         THT-1.20.1-6.1.1.jar                              |Tan's Huge Trees              |tht                           |6.1.1               |DONE      |Manifest: NOSIGNATURE         BetterAnimationsCollection-v8.0.0-1.20.1-Forge.jar|Better Animations Collection  |betteranimationscollection    |8.0.0               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         Hermaeus Mora Mod 1.20.1 - v0.6 - Reimagined.jar  |Hermaeus Mora Mod             |hermaeusmoramod               |0.6                 |DONE      |Manifest: NOSIGNATURE         Cucumber-1.20.1-7.0.7.jar                         |Cucumber Library              |cucumber                      |7.0.7               |DONE      |Manifest: NOSIGNATURE         ftb-library-forge-2001.1.5.jar                    |FTB Library                   |ftblibrary                    |2001.1.5            |DONE      |Manifest: NOSIGNATURE         ftb-teams-forge-2001.2.0.jar                      |FTB Teams                     |ftbteams                      |2001.2.0            |DONE      |Manifest: NOSIGNATURE         amendments-1.20-1.1.27.jar                        |Amendments                    |amendments                    |1.20-1.1.27         |DONE      |Manifest: NOSIGNATURE         jei-1.20.1-forge-15.3.0.4.jar                     |Just Enough Items             |jei                           |15.3.0.4            |DONE      |Manifest: NOSIGNATURE         appliedenergistics2-forge-15.2.1-1.20.1.jar       |Applied Energistics 2         |ae2                           |15.2.1              |DONE      |Manifest: NOSIGNATURE         libraryferret-forge-1.20.1-4.0.0.jar              |Library ferret                |libraryferret                 |4.0.0               |DONE      |Manifest: NOSIGNATURE         Mekanism-1.20.1-10.4.6.20.jar                     |Mekanism                      |mekanism                      |10.4.6              |DONE      |Manifest: NOSIGNATURE         MekanismGenerators-1.20.1-10.4.6.20.jar           |Mekanism: Generators          |mekanismgenerators            |10.4.6              |DONE      |Manifest: NOSIGNATURE         MekanismAdditions-1.20.1-10.4.6.20.jar            |Mekanism: Additions           |mekanismadditions             |10.4.6              |DONE      |Manifest: NOSIGNATURE         MekanismTools-1.20.1-10.4.6.20.jar                |Mekanism: Tools               |mekanismtools                 |10.4.6              |DONE      |Manifest: NOSIGNATURE         Kobolds-2.10.12-1.20.1.jar                        |Kobolds                       |kobolds                       |2.10.12             |DONE      |Manifest: NOSIGNATURE         invtweaks-1.20.1-1.1.0.jar                        |Inventory Tweaks Refoxed      |invtweaks                     |1.1.0               |DONE      |Manifest: NOSIGNATURE         journeymap-1.20.1-5.9.21-forge.jar                |Journeymap                    |journeymap                    |5.9.21              |DONE      |Manifest: NOSIGNATURE         Tumbleweed-forge-1.20.1-0.5.5.jar                 |Tumbleweed                    |tumbleweed                    |0.5.5               |DONE      |Manifest: NOSIGNATURE         badpackets-forge-0.4.3.jar                        |Bad Packets                   |badpackets                    |0.4.3               |DONE      |Manifest: NOSIGNATURE         Dragon Priest Mod 1.20.1 - v0.3.jar               |Dragon Priest Mod             |dragon_priest_mod             |0.3                 |DONE      |Manifest: NOSIGNATURE         rare-ice-0.6.0-1.20.1-forge.jar                   |Rare Ice                      |rare_ice                      |0.0NONE             |DONE      |Manifest: NOSIGNATURE         midnightlib-forge-1.4.2-1.20.1.jar                |MidnightLib                   |midnightlib                   |1.4.2               |DONE      |Manifest: NOSIGNATURE         starlight-1.1.2+forge.1cda73c.jar                 |Starlight                     |starlight                     |1.1.2+forge.1cda73c |DONE      |Manifest: NOSIGNATURE         additional_lights-1.20.1-2.1.7.jar                |Additional Lights             |additional_lights             |2.1.7               |DONE      |Manifest: NOSIGNATURE         iceandfire-2.1.13-1.20.1-beta-4.jar               |Ice and Fire                  |iceandfire                    |2.1.13-1.20.1-beta-4|DONE      |Manifest: NOSIGNATURE         inventorypets-1.20.1-2.1.1.jar                    |Inventory Pets                |inventorypets                 |2.1.1               |DONE      |Manifest: NOSIGNATURE         puzzlesaccessapi-forge-8.0.7.jar                  |Puzzles Access Api            |puzzlesaccessapi              |8.0.7               |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         MysticalAgriculture-1.20.1-7.0.11.jar             |Mystical Agriculture          |mysticalagriculture           |7.0.11              |DONE      |Manifest: NOSIGNATURE         DungeonsArise-1.20.1-2.1.57-release.jar           |When Dungeons Arise           |dungeons_arise                |2.1.57-1.20.1       |DONE      |Manifest: NOSIGNATURE         craftingtweaks-forge-1.20.1-18.2.3.jar            |CraftingTweaks                |craftingtweaks                |18.2.3              |DONE      |Manifest: NOSIGNATURE         ZeroCore2-1.20.1-2.1.41.jar                       |Zero CORE 2                   |zerocore                      |1.20.1-2.1.41       |DONE      |Manifest: NOSIGNATURE         ExtremeReactors2-1.20.1-2.0.77.jar                |Extreme Reactors              |bigreactors                   |1.20.1-2.0.77       |DONE      |Manifest: NOSIGNATURE         useless-sword-1.20.1-V1.4.1.jar                   |Useless Sword                 |useless_sword                 |1.4.1               |DONE      |Manifest: NOSIGNATURE         dungeons_1.17_mc1.20.1.jar                        |Minecraft Dungeons            |duneons                       |1.17                |DONE      |Manifest: NOSIGNATURE         server-1.20.1-20230612.114412-srg.jar             |Minecraft                     |minecraft                     |1.20.1              |DONE      |Manifest: NOSIGNATURE         TerraBlender-forge-1.20.1-3.0.1.6.jar             |TerraBlender                  |terrablender                  |3.0.1.6             |DONE      |Manifest: NOSIGNATURE         BiomesOPlenty-1.20.1-18.0.0.598.jar               |Biomes O' Plenty              |biomesoplenty                 |18.0.0.598          |DONE      |Manifest: NOSIGNATURE         moonlight-1.20-2.11.17-forge.jar                  |Moonlight Library             |moonlight                     |1.20-2.11.17        |DONE      |Manifest: NOSIGNATURE         MouseTweaks-forge-mc1.20-2.25.jar                 |Mouse Tweaks                  |mousetweaks                   |2.25                |DONE      |Manifest: NOSIGNATURE         ftb-quests-forge-2001.3.3.jar                     |FTB Quests                    |ftbquests                     |2001.3.3            |DONE      |Manifest: NOSIGNATURE         mixinsquared-forge-0.1.1.jar                      |MixinSquared                  |mixinsquared                  |0.1.1               |DONE      |Manifest: NOSIGNATURE         CreativeCore_FORGE_v2.11.27_mc1.20.1.jar          |CreativeCore                  |creativecore                  |2.11.27             |DONE      |Manifest: NOSIGNATURE         domum_ornamentum-1.20.1-1.0.184-BETA-universal.jar|Domum Ornamentum              |domum_ornamentum              |1.20.1-1.0.184-BETA |DONE      |Manifest: NOSIGNATURE         EnderIO-1.20.1-6.0.25-alpha.jar                   |Ender IO                      |enderio                       |6.0.25-alpha        |DONE      |Manifest: NOSIGNATURE         kffmod-4.9.0.jar                                  |Kotlin For Forge              |kotlinforforge                |4.9.0               |DONE      |Manifest: NOSIGNATURE         extragolems-20.1.0.2-1.20.1.jar                   |Extra Golems                  |golems                        |20.1.0.2            |DONE      |Manifest: NOSIGNATURE         Iceberg-1.20.1-forge-1.1.16.jar                   |Iceberg                       |iceberg                       |1.1.16              |DONE      |Manifest: NOSIGNATURE         Rats-1.20.1-8.1.2.jar                             |Rats                          |rats                          |1.20.1-8.1.2        |DONE      |Manifest: NOSIGNATURE         forge-1.20.1-47.1.105-universal.jar               |NeoForge                      |forge                         |47.1.105            |DONE      |Manifest: NOSIGNATURE         gravestone-forge-1.20.1-1.0.15.jar                |Gravestone Mod                |gravestone                    |1.20.1-1.0.15       |DONE      |Manifest: NOSIGNATURE         MorePlayerModels-1.20.1.20240409.jar              |More Player Models            |moreplayermodels              |1.20.1.20240409     |DONE      |Manifest: NOSIGNATURE         1.20.1-SecurityCraft-v1.9.9.jar                   |SecurityCraft                 |securitycraft                 |1.9.9               |DONE      |Manifest: NOSIGNATURE         storagedrawers-1.20.1-12.0.3.jar                  |Storage Drawers               |storagedrawers                |12.0.3              |DONE      |Manifest: NOSIGNATURE         Zeta-1.0-16.jar                                   |Zeta                          |zeta                          |1.0-16              |DONE      |Manifest: NOSIGNATURE         Quark-4.0-441.jar                                 |Quark                         |quark                         |4.0-441             |DONE      |Manifest: NOSIGNATURE         supplementaries-1.20-2.8.10.jar                   |Supplementaries               |supplementaries               |1.20-2.8.10         |DONE      |Manifest: NOSIGNATURE         ToughAsNails-1.20.1-9.0.0.96.jar                  |Tough As Nails                |toughasnails                  |0.0NONE             |DONE      |Manifest: NOSIGNATURE         armourersworkshop-forge-1.20.1-2.1.3.jar          |Armourer's Workshop           |armourers_workshop            |2.1.3               |DONE      |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         invhud.forge.1.20.1-3.4.18.jar                    |Inventory HUD+(Forge edition) |inventoryhud                  |3.4.18              |DONE      |Manifest: NOSIGNATURE         structurize-1.20.1-1.0.730-BETA.jar               |Structurize                   |structurize                   |1.20.1-1.0.730-BETA |DONE      |Manifest: NOSIGNATURE         multipiston-1.20-1.2.43-RELEASE.jar               |Multi-Piston                  |multipiston                   |1.20-1.2.43-RELEASE |DONE      |Manifest: NOSIGNATURE         coroutil-forge-1.20.1-1.3.7.jar                   |CoroUtil                      |coroutil                      |1.20.1-1.3.7        |DONE      |Manifest: NOSIGNATURE         minecolonies-1.20.1-1.1.563-RELEASE.jar           |MineColonies                  |minecolonies                  |1.20.1-1.1.563-RELEA|DONE      |Manifest: NOSIGNATURE         creeperoverhaul-3.0.2-forge-1.20.1.jar            |Creeper Overhaul              |creeperoverhaul               |3.0.2               |DONE      |Manifest: NOSIGNATURE         appleskin-forge-mc1.20.1-2.5.1.jar                |AppleSkin                     |appleskin                     |2.5.1+mc1.20.1      |DONE      |Manifest: NOSIGNATURE         Vampirism-1.20.1-1.10.7.jar                       |Vampirism                     |vampirism                     |1.10.7              |DONE      |Manifest: NOSIGNATURE         PuzzlesLib-v8.1.19-1.20.1-Forge.jar               |Puzzles Lib                   |puzzleslib                    |8.1.19              |DONE      |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a         chisels-and-bits-forge-1.4.148.jar                |chisels-and-bits              |chiselsandbits                |1.4.148             |DONE      |Manifest: NOSIGNATURE         ad_astra-forge-1.20.1-1.15.18.jar                 |Ad Astra                      |ad_astra                      |1.15.18             |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: f0818a64-3f2b-494f-858e-797b3bba6bf3     FML: 47.1     NeoForge: net.neoforged:47.1.105 crash-report:
    • Sugar Defender For Tom Green Blood Sugar Enter the Sugar Defender, a groundbreaking device poised to revolutionize how Tom and countless others approach their health in 2024. Let's delve into the transformative benefits this remarkable technology brings to Tom Green's life. Official website :- https://timessupplement.com/tom-green-sugar-defender-buy/
    • Please tell us the fully qualified name of EventHandler to help us understand what you're referring to. For example, SubscribeEvent's fully qualified name is: "net.minecraftforge.eventbus.api.SubscribeEvent" If EventHandler it doesn't start with "net.minecraftforge", it's likely not a part of Forge.
    • Thank you so much. Also, is it possible to make the name of the sword constantly changing colors and show "+infinity attack damage "?
  • Topics

×
×
  • Create New...

Important Information

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