Jump to content

[1.8] make my items work in a server. ¿ is my code wrong


perromercenary00

Recommended Posts

good nigths

 

i have this issue from some long weeks , and lately i have little time to spend whith code for working reasons.

 

i have made a lot of items , tools mostly  and some fireguns , all of them works well on single player but on a server do absolutly nothing and sometimes  disapear or become another items.

 

to aknowledge why is this happend i create a simple item a bow, reducing the code to the simples thing  trying to realize whats its making this items useless    but reach the point of not idea what its the trouble

 

in this video:

 

 

i set the server and the normal minecraft whith just mi mod and fireup the two at same time, in the first part i test the bow and the shotgun on a normal world in the vainilla minecraft and this two items work well, in the second part i test the items in the server world neither the shotgun or the bow works and the first shotgun becomes in to  two musrooms whithout aparent reason.

 

this is the code from the bow for now it just work whith vainilla arrows

 

arcoMercenario.java

package mercenarymod.items.arcos;

import mercenarymod.Mercenary;
import mercenarymod.items.MercenaryModItems;
import mercenarymod.utilidades.chat;
import mercenarymod.utilidades.nbtMercenaria;
import net.minecraft.client.resources.model.ModelResourceLocation;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.enchantment.EnchantmentHelper;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.projectile.EntityArrow;
import net.minecraft.init.Items;
import net.minecraft.item.EnumAction;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.stats.StatList;
import net.minecraft.world.World;
import net.minecraftforge.fml.common.registry.GameRegistry;

public class arcoMercenario extends Item
{
    
   
    public static String name = "arcoMercenario";
    
    int tick=0;
    int texturajson=0;
    boolean tighten=false;
    boolean animacion=false;
    boolean continuar=false;
        
    float f=0.0F;
    int municion=0;
    int municionMax=0;
    static int municionMax0=32;

    public arcoMercenario()
    {
    	
    	setUnlocalizedName(Mercenary.MODID + "_" + name);
    	GameRegistry.registerItem(this, name);
    	setCreativeTab(Mercenary.herramientas);
        this.maxStackSize = 1;
        this.setMaxDamage(500);
        
    }
    
  //######################################################################################3	
  	 @Override
  public ModelResourceLocation getModel(ItemStack arco, EntityPlayer playerIn, int useRemaining){
  	
  	ModelResourceLocation modelresourcelocation = new ModelResourceLocation("modmercenario:arcos/arcomercenario/arcomercenario00", "inventory");	 
  	animacion(arco, playerIn);
  	
  	if ((tick%10)==0){ //just to not check it every tick or  it lags
  		
  	animacion=nbtMercenaria.getBooleantag(arco, "animacion");
  	//System.out.println("Animacion="+animacion);
  		
  	if(!animacion){
  	
  	tighten=false;
  	
  	}
  	}
  		
  	//System.out.println("textura="+textura);
  	switch(this.texturajson){
    default:modelresourcelocation = new ModelResourceLocation("modmercenario:arcos/arcomercenario/arcomercenario00", "inventory") ;break;
  	case  1:modelresourcelocation = new ModelResourceLocation("modmercenario:arcos/arcomercenario/arcomercenario01", "inventory") ;break;
  	case  2:modelresourcelocation = new ModelResourceLocation("modmercenario:arcos/arcomercenario/arcomercenario02", "inventory") ;break;	
  	case  3:modelresourcelocation = new ModelResourceLocation("modmercenario:arcos/arcomercenario/arcomercenario03", "inventory") ;break;
  	    	                }
  	  	
  	tick++;
  	if (tick>100){tick=0;nbtMercenaria.setBooleantag(arco, "animacion",false);animacion=false;}
    	return modelresourcelocation;
    	
  		}

  //####################################################################################3	
  void animacion(ItemStack arco, EntityPlayer playerIn){	 //int tick
  	
  	//System.out.println("()this.thick="+tick+" cambioDeBotella="+cambioDeBotella+" giro="+giro);
  	 
  	 if ((tighten)){
  	 System.out.println("tighten="+tick);	 
  	 switch (tick){
  	 case 0:  texturajson=0;f=0.50F;break;
  	 case 7:  texturajson=1;f=1.00F;break;
  	 case 14: texturajson=2;f=1.50F;break;
  	 case 21: texturajson=3;f=2.00F;break;
  	 case 28: if(continuar){tick=20;};break;
  	 case 30: texturajson=0;tick=0;nbtMercenaria.setBooleantag(arco, "animacion",false);tighten=false;break;
  	          }   }
  	 else{texturajson=0;}
  	 
  	 
  	 
  }

//####################################################################################3		

void inicializar(ItemStack arco){  //this do nothing for now

int municion=0;
int metadata=arco.getMetadata();

switch(metadata){
case 1: municion=municionMax0/2;break;
case 2: municion=municionMax0;break;
default:municion=0;break;
            	}

nbtMercenaria.setInttag(arco, "municion", municion);
nbtMercenaria.setBooleantag(arco, "animacion", false);
nbtMercenaria.setBooleantag(arco, "liberar", false);
nbtMercenaria.setInttag(arco, "cargador", 0);
nbtMercenaria.setInttag(arco, "textura", 0);			


}
  
//####################################################################################3
    public void onPlayerStoppedUsing(ItemStack arco, World worldIn, EntityPlayer playerIn, int timeLeft)
    {
    	
    	
    	if (!worldIn.isRemote){
    		
    	playerIn.inventory.consumeInventoryItem(MercenaryModItems.flechaMercenaria);	
    		
    	EntityArrow entityarrow = new EntityArrow(worldIn, playerIn, f );	
    		
    	worldIn.spawnEntityInWorld(entityarrow);	
    	
    	chat.chatdp(playerIn, "shooting f="+f);
    	
    	f=0.0F;
    	
    	nbtMercenaria.setBooleantag(arco, "animacion", false);
    	    	
    		
    	                       }
    	
    	
    	
    	texturajson=0;tick=0;tighten=false;continuar=false;
    	
    }

    public ItemStack onItemUseFinish(ItemStack stack, World worldIn, EntityPlayer playerIn)
    {
    	//texturajson=0;tick=0;tighten=false;
        return stack;
        
    }

    public int getMaxItemUseDuration(ItemStack stack)
    {
        return 72000;
    }

    public EnumAction getItemUseAction(ItemStack stack)
    {
        return EnumAction.BOW;
    }

    
    //#####################################################################################3
    public ItemStack onItemRightClick(ItemStack arco, World worldIn, EntityPlayer playerIn)
    {
    	
    	if (!worldIn.isRemote){
    		
    		if (playerIn.capabilities.isCreativeMode 
    		|| playerIn.inventory.hasItem(MercenaryModItems.flechaMercenaria)){ //mercenaryArrow
    		//|| playerIn.inventory.hasItem(Items.arrow)){
    		
    		//municion=nbtMercenaria.getInttag(arco, "municion"); //not now
    		nbtMercenaria.setBooleantag(arco, "animacion", true);
    		animacion=true;
    		tighten=true;   //  tight the bow 
    		//chat.chatdp(playerIn, "has item "+tick);
    		
    	                     }}
    	
    	
    	if (tighten){
    		playerIn.setItemInUse(arco, this.getMaxItemUseDuration(arco));	
    		tick=0;
    		continuar=true;     //  tighten it until i tell you to release the arrow
    		//chat.chatdp(playerIn, "En Uso"+tick);  // in use
    		}
    	
    	
      
        
        return arco;
    }

    public int getItemEnchantability()
    {
        return 1;
    }
}

 

 

what do you think i coulbe doing wrong ?

 

Link to comment
Share on other sites

    int tick=0;
    int texturajson=0;
    boolean tighten=false;
    boolean animacion=false;
    boolean continuar=false;
        
    float f=0.0F;
    int municion=0;
    int municionMax=0;

You can't do that, Item is just a singleton, shared between all items that use this class. You need to store NBT in ItemStack of Item.

http://www.minecraftforge.net/wiki/Creating_NBT_for_items

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

Link to comment
Share on other sites

not english

perfecto entonces

pero se quedan afuera los usuarios que solo hablan ingles,

 

por el lado de los nombres de las variables, creia que solo afectaban a esta instancia de este item especifico, a menos de que se declaren como public static, entonces si afectarian a todas las instancias de este mismo item, bueno mas tarde hago unas pruebas tengo eso en duda aun

 

hace tiempo trate de meter todas las variables como nbttags en el itemStack pero me estrelle con el problemita de que si trato de leer cada nbt cada tick entonces

int municion= nbtMercenaria.getInttag(arco, "municion");

int texturajson = nbtMercenaria.getInttag(arco, "texturajson");  //define la textura que se va  a usar en este instante

empiezan a devolver null, bueno por la forma en que hize la classe nbtMercenaria devuelve 9999 al encuentrar error al leer nbttag  asi que me frustre y deje de hacerlo de esa manera,  lo reduje a una sola nbttag "animacion" que solo se comprueba cada 10 tics y si es false no deja que el item cambie o actue de ninguna manera.

 

de cualquier manera ese es otro problema y otro post,

siendo este el unico arco en el servidor nada mas deberia interferir con el.

aun asi onItemRightClick  bueno en general las partes del codigo que se suponen corren cuando if (!worldIn.isRemote){} no estan funcionando, o hacen cosas raras 

 

bueno nunca e vista el codigo para un arma de fuego en minecraft todo esto que tengo hecho a salido de experimentar, preguntar en los foros y guiarme con lo que hay en la classe bow, y lo que me trae loco es ver que mi codigo funciona en el mundo normal pero no  funciona en el servidor,  entonces pense hay que hacer un arco sencillo  el arco vainilla funciona bien tanto en el mundo local como en el servidor asi que si hago un arco sencillo este deberia funcionar el server sin dar problemas , pero no lo hace  entonces  falta algo

 

 

for the names of the variables, i believe that only affect this instance of this specific item, unless it is declared as public static, then if would affect all instances of the same item, may is wrong but later test will done

 

time ago i try to  set all variables as nbttags in the itemStack but I stuck with this little problem, if I try to read every nbt each tick then

int ammunition = nbtMercenaria.getInttag (bow, "ammunition");

int texturajson = nbtMercenaria.getInttag (bow, "texturajson");  //set current texture for the item

they begin to return null, for the way I code the class nbtMercenaria it returns 9999 when it encounters an error reading nbt, just get tired of this and quit to do that way , so I reduced to a single nbttag "animation" this one is checked only every 10 tics and if false it shall not allow the item to changed or acts in any way.

 

anyway that's another problem and another post,

 

in this case

being the only bow on the server nothing else should interfere with it .

but still  onItemRightClick well the parts in the code that are supposed to run when if (! worldIn.isRemote) {} are not working, or do strange things.

 

well i never see the code the for a gun in minecraft before, all i have done has come from experiment whith code do questions on the forums and lok what is inside the bow class, drives me mad  see mi code work on normal minecraft, but do nothing when on a server, then i think  the bow class works well on normal and on server then if i do a custom bow based on thath code it may worksl, but  dont' it dont' work  there must be something i miss.

 

 

bueno gracias.

Link to comment
Share on other sites

bueno

 

its goes this way

the server i download for minecrafts web is minecraft_server.1.8.3.jar, when install forge it creates the minecraft_server.1.8.jar

 

so i launch the server whith

cd server/
java -Xmx1024M -Xms1024M -jar minecraft_server.1.8.jar 

 

and launch normal vainilla minecraft whith

java -jar Minecraft.jar

 

this two has the same forge version instaled  forge-1.8-11.14.1.1322-installer.jar

 

aniway i do the test launching minecraft_server.1.8.3.jar for server but happends the same.

mods are in  server/mods/

 

there is some command to return the list of mods the server has loaded ? may server is not loading the mod

 

Link to comment
Share on other sites

soo this was all about

 

i have wrong installed the forged server, an this is just the begin p

 

[18:42:32] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
[18:42:32] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
[18:42:32] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker
[18:42:33] [main/INFO] [FML]: Forge Mod Loader version 8.0.32.1322 for Minecraft 1.8 loading
[18:42:33] [main/INFO] [FML]: Java is Java HotSpot(TM) Server VM, version 1.7.0_76, running on Linux:i386:3.16.0-4-686-pae, installed at /usr/lib/jvm/java-7-oracle/jre
[18:42:33] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:42:33] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[18:42:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:42:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:42:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:42:35] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557
[18:42:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:42:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[18:42:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[18:42:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[18:42:39] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}
[18:42:48] [server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting minecraft server version 1.8
[18:42:48] [server thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
[18:42:49] [server thread/INFO] [FML]: MinecraftForge v11.14.1.1322 Initialized
[18:42:49] [server thread/INFO] [FML]: Replaced 204 ore recipies
[18:42:49] [server thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
[18:42:50] [server thread/INFO] [FML]: Searching /home/tenchi/server/mods for mods
[18:42:51] [server thread/INFO] [modmercenario]: Mod modmercenario is missing the required element 'name'. Substituting modmercenario
[18:42:52] [server thread/INFO] [estructurasmercenarias]: Mod estructurasmercenarias is missing the required element 'name'. Substituting estructurasmercenarias
[18:42:52] [server thread/INFO] [FML]: Forge Mod Loader has identified 6 mods to load
[18:42:53] [server thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, modmercenario, examplemod, estructurasmercenarias] at CLIENT
[18:42:53] [server thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, modmercenario, examplemod, estructurasmercenarias] at SERVER
[18:42:57] [server thread/INFO] [FML]: Processing ObjectHolder annotations
[18:42:57] [server thread/INFO] [FML]: Found 384 ObjectHolder annotations
[18:42:57] [server thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[18:42:58] [server thread/INFO] [FML]: Applying holder lookups
[18:42:58] [server thread/INFO] [FML]: Holder lookups applied
[18:42:58] [server thread/ERROR] [FML]: Fatal errors were detected during the transition from PREINITIALIZATION to INITIALIZATION. Loading cannot continue
[18:42:58] [server thread/ERROR] [FML]: 
mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized
FML{8.0.32.1322} [Forge Mod Loader] (forge-1.8-11.14.1.1322-universal.jar) Unloaded->Constructed->Pre-initialized
Forge{11.14.1.1322} [Minecraft Forge] (forge-1.8-11.14.1.1322-universal.jar) Unloaded->Constructed->Pre-initialized
modmercenario{1.5} [modmercenario] (modMercenario-1.6.jar) Unloaded->Constructed->Errored
examplemod{1.0} [Example Mod] (modMercenario-1.6.jar) Unloaded->Constructed->Pre-initialized
estructurasmercenarias{0.0} [estructurasmercenarias] (modMercenario-1.6.jar) Unloaded->Constructed->Pre-initialized
[18:42:58] [server thread/ERROR] [FML]: The following problems were captured during this phase
[18:42:58] [server thread/ERROR] [FML]: Caught exception from modmercenario
java.lang.NoClassDefFoundError: net/minecraft/client/settings/KeyBinding
at mercenarymod.utilidades.KeyBindings.init(KeyBindings.java:23) ~[KeyBindings.class:?]
at mercenarymod.Mercenary.preInit(Mercenary.java:57) ~[Mercenary.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_76]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_76]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_76]
at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_76]
at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:517) ~[FMLModContainer.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_76]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_76]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_76]
at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_76]
at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[minecraft_server.1.8.jar:?]
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) ~[LoadController.class:?]
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:187) ~[LoadController.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_76]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_76]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_76]
at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_76]
at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[minecraft_server.1.8.jar:?]
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:118) [LoadController.class:?]
at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:514) [Loader.class:?]
at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:88) [FMLServerHandler.class:?]
at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:355) [FMLCommonHandler.class:?]
at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:117) [po.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:438) [MinecraftServer.class:?]
at java.lang.Thread.run(Thread.java:745) [?:1.7.0_76]
Caused by: java.lang.ClassNotFoundException: net.minecraft.client.settings.KeyBinding
at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) ~[launchwrapper-1.11.jar:?]
at java.lang.ClassLoader.loadClass(ClassLoader.java:425) ~[?:1.7.0_76]
at java.lang.ClassLoader.loadClass(ClassLoader.java:358) ~[?:1.7.0_76]
... 34 more
Caused by: java.lang.NullPointerException
[18:42:58] [server thread/ERROR] [net.minecraft.server.MinecraftServer]: Encountered an unexpected exception
net.minecraftforge.fml.common.LoaderException: java.lang.NoClassDefFoundError: net/minecraft/client/settings/KeyBinding
at net.minecraftforge.fml.common.LoadController.transition(LoadController.java:162) ~[LoadController.class:?]
at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:516) ~[Loader.class:?]
at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:88) ~[FMLServerHandler.class:?]
at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:355) ~[FMLCommonHandler.class:?]
at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:117) ~[po.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:438) [MinecraftServer.class:?]
at java.lang.Thread.run(Thread.java:745) [?:1.7.0_76]
Caused by: java.lang.NoClassDefFoundError: net/minecraft/client/settings/KeyBinding
at mercenarymod.utilidades.KeyBindings.init(KeyBindings.java:23) ~[KeyBindings.class:?]
at mercenarymod.Mercenary.preInit(Mercenary.java:57) ~[Mercenary.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_76]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_76]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_76]
at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_76]
at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:517) ~[FMLModContainer.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_76]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_76]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_76]
at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_76]
at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[minecraft_server.1.8.jar:?]
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) ~[LoadController.class:?]
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:187) ~[LoadController.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_76]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_76]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_76]
at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_76]
at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[minecraft_server.1.8.jar:?]
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:118) ~[LoadController.class:?]
at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:514) ~[Loader.class:?]
... 5 more
Caused by: java.lang.ClassNotFoundException: net.minecraft.client.settings.KeyBinding
at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) ~[launchwrapper-1.11.jar:?]
at java.lang.ClassLoader.loadClass(ClassLoader.java:425) ~[?:1.7.0_76]
at java.lang.ClassLoader.loadClass(ClassLoader.java:358) ~[?:1.7.0_76]
at mercenarymod.utilidades.KeyBindings.init(KeyBindings.java:23) ~[KeyBindings.class:?]
at mercenarymod.Mercenary.preInit(Mercenary.java:57) ~[Mercenary.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_76]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_76]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_76]
at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_76]
at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:517) ~[FMLModContainer.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_76]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_76]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_76]
at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_76]
at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[minecraft_server.1.8.jar:?]
at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) ~[LoadController.class:?]
at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:187) ~[LoadController.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_76]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_76]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_76]
at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_76]
at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[minecraft_server.1.8.jar:?]
at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[minecraft_server.1.8.jar:?]
at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:118) ~[LoadController.class:?]
at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:514) ~[Loader.class:?]
... 5 more
Caused by: java.lang.NullPointerException
[18:42:58] [server thread/ERROR] [net.minecraft.server.MinecraftServer]: This crash report has been saved to: /home/tenchi/server/./crash-reports/crash-2015-03-05_18.42.58-server.txt

 

mi code is full of errors that crash server

and is curious coz  eclipse tell mi nothing about all this, and normal minecraft either show errors in the console it just works 

 

arrfff

what comes next s a long journey of remake the mod looking in every class for the defectives lines an maiby redoo the code for the more complez tools

Link to comment
Share on other sites

Your crash is because you referenced an @SideOnly(Side.CLIENT) class (KeyBinding) somewhere in your code that is not only on the client side.

 

If you have keybindings, you should only register them through your ClientProxy - same with any Render classes and that type of thing.

 

Btw, the visibility and 'static'-ness of a class member has no impact on whether it actually behaves as a static member: every single Item is declared as a singleton, thus only one of each item exists and thus every Item class' members automatically behave as though they were static, because there is only ONE instance. Make sense?

Link to comment
Share on other sites

yap  but

 

I alredy  take another way, an in that way another troubles apear  the keybind i shall solv later,

 

well tere is not only the keybind error but a lot of diferent things failing in the logs , so i decide to clean up.

I download the lastest version of forge and start again,

 

just the basic mercenarimod whith the first basic 10 materials, the bow and the arrow

so until this, all works well on eclipse, compile the mod, and put it on the server  now get

 

[20:54:03] [server thread/ERROR] [FML]: Caught exception from modmercenario
java.lang.NoClassDefFoundError: net/minecraft/client/Minecraft
at mercenarymod.Mercenary.init(Mercenary.java:67) ~[Mercenary.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_76] 


 

there is an error in the line 67 from mi main class and that is in the textures part 

 

    @Mod.EventHandler
    public void init(FMLInitializationEvent event) {
    
    	// materials
    		
    		
    		Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.aceroMercenario,0,new     //this is line 67     
                ModelResourceLocation("modmercenario:aceromercenario", "inventory"));  //steel
    		
    		Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.redstoneMercenaria,0 , 
    		new ModelResourceLocation("modmercenario:redstonemercenaria", "inventory"));  
    				
    		Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.carbonoMercenario,0 , 
    		new ModelResourceLocation("modmercenario:carbonomercenario", "inventory"));   //graphene
    				
    		Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.inertebarradeCarbon,0 , 
    		new ModelResourceLocation("modmercenario:inertebarradecarbon", "inventory"));  //graphene bar
    		
    		Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.hierroAlrojo,0 , 
    		new ModelResourceLocation("modmercenario:hierroalrojo", "inventory"));  //red hot iron
    			
    		Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.coalCompreso,0 , 
    		new ModelResourceLocation("modmercenario:coalcompreso", "inventory"));
    				
    		Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.charcoalCompreso,0 , 
    		new ModelResourceLocation("modmercenario:charcoalcompreso", "inventory"));
    		
    		Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.obsidianaMercenaria,0 , 
    		new ModelResourceLocation("modmercenario:obsidianamercenaria", "inventory"));
    		
    		Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.nokiaMercenaria,0 , 
    		new ModelResourceLocation("modmercenario:nokiamercenaria", "inventory"));  //nokia material just for fun 
    		
    		Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.barradeAcero,0 , 
    		new ModelResourceLocation("modmercenario:barradeacero", "inventory"));   //steel pipe 
    					
    		
    		//bows
    	        ModelBakery.addVariantName(MercenaryModItems.arcoMercenario, new String[]{
    	    		
    	    		"modmercenario:arcos/arcomercenario/arcomercenario00",
    	    		"modmercenario:arcos/arcomercenario/arcomercenario01",
    	    		"modmercenario:arcos/arcomercenario/arcomercenario02",
    	    		"modmercenario:arcos/arcomercenario/arcomercenario03",
    	    		"modmercenario:arcos/arcomercenario/flechaMercenaria" });
    	    
    	    Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.arcoMercenario,0 , 
    	    new ModelResourceLocation("modmercenario:arcos/arcomercenario/arcomercenario00", "inventory"));
    	    		
            //arrows
    	    Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.flechaMercenaria,0 , 
    	    new ModelResourceLocation("modmercenario:arcos/arcomercenario/flechaMercenaria", "inventory"));
    	    	    
    }

 

for some reason the sever dont like the way i declare the textures for the items

 

repet miself in eclipse it gives no error of any kind this 12 items works and has their current texture at display, everiting is normal the errors ocurr in the server console at the moment of fire up server

 

 

very tankfull

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

    • Hammers and wrenches on my mod should not be consumed at once, it should have a maxDamage of 63(copper variant), 0(stone variant). When I craft items requiring hammers and wrenches, it immediately crashes. View Full Log
    • Please read the FAQ on how to post logs. Looks as though you have client only mods trying to load on a server. Remove them and give it another try
    • [02oct2024 16:28:48.375] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.3.10, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [02oct2024 16:28:48.379] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 22.0.1 by Oracle Corporation; OS Windows 10 arch amd64 version 10.0 [02oct2024 16:28:48.396] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] [02oct2024 16:28:48.406] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] [02oct2024 16:28:48.415] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] [02oct2024 16:28:48.423] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services [02oct2024 16:28:48.427] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is C:\Games\Server [02oct2024 16:28:48.427] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is C:\Games\Server\mods [02oct2024 16:28:48.427] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is C:\Games\Server\config [02oct2024 16:28:48.428] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is C:\Games\Server\config\fml.toml [02oct2024 16:28:49.309] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: [02oct2024 16:28:49.313] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is forgeserver [02oct2024 16:28:49.318] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] [02oct2024 16:28:49.318] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading [02oct2024 16:28:49.318] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin [02oct2024 16:28:49.319] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin [02oct2024 16:28:49.319] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml [02oct2024 16:28:49.319] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 1.0 [02oct2024 16:28:49.319] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 1.0 loading [02oct2024 16:28:49.319] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 [02oct2024 16:28:49.320] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 [02oct2024 16:28:49.320] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b [02oct2024 16:28:49.320] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner [02oct2024 16:28:49.321] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 5.1.6 [02oct2024 16:28:49.321] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 [02oct2024 16:28:49.321] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 5 [02oct2024 16:28:49.321] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml [02oct2024 16:28:49.322] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services [02oct2024 16:28:49.326] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing [02oct2024 16:28:49.326] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin [02oct2024 16:28:49.333] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@768b970c [02oct2024 16:28:49.341] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Games/Server/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2365!/ Service=ModLauncher Env=SERVER [02oct2024 16:28:49.344] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager [02oct2024 16:28:49.344] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) [02oct2024 16:28:49.345] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) [02oct2024 16:28:49.345] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) [02oct2024 16:28:49.345] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) [02oct2024 16:28:49.345] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) [02oct2024 16:28:49.347] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin [02oct2024 16:28:49.347] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml [02oct2024 16:28:49.347] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories [02oct2024 16:28:49.347] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is C:\Games\Server [02oct2024 16:28:49.347] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is C:\Games\Server\mods [02oct2024 16:28:49.347] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is C:\Games\Server\config [02oct2024 16:28:49.347] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is C:\Games\Server\config\fml.toml [02oct2024 16:28:49.347] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration [02oct2024 16:28:49.350] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile [02oct2024 16:28:49.352] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler [02oct2024 16:28:49.352] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeserver as launch service [02oct2024 16:28:49.362] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data  : VersionInfo[forgeVersion=47.3.10, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] [02oct2024 16:28:49.363] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml [02oct2024 16:28:49.363] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'srg' [02oct2024 16:28:49.363] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {} [02oct2024 16:28:49.364] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning [02oct2024 16:28:49.364] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin [02oct2024 16:28:49.364] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin [02oct2024 16:28:49.364] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml [02oct2024 16:28:49.364] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan [02oct2024 16:28:49.371] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: [] [02oct2024 16:28:49.373] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) [02oct2024 16:28:49.373] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) [02oct2024 16:28:49.380] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\[1.20.1] SecurityCraft v1.9.10.jar [02oct2024 16:28:49.411] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file [1.20.1] SecurityCraft v1.9.10.jar with {securitycraft} mods - versions {1.9.10} [02oct2024 16:28:49.413] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\advancednetherite-forge-2.1.3-1.20.1.jar [02oct2024 16:28:49.414] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file advancednetherite-forge-2.1.3-1.20.1.jar with {advancednetherite} mods - versions {2.1.3} [02oct2024 16:28:49.415] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\AdvancementPlaques-1.20.1-forge-1.6.7.jar [02oct2024 16:28:49.416] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AdvancementPlaques-1.20.1-forge-1.6.7.jar with {advancementplaques} mods - versions {1.6.7} [02oct2024 16:28:49.417] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\AI-Improvements-1.20-0.5.2.jar [02oct2024 16:28:49.418] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AI-Improvements-1.20-0.5.2.jar with {aiimprovements} mods - versions {0.5.2} [02oct2024 16:28:49.419] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\alexsdelight-1.5.jar [02oct2024 16:28:49.420] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file alexsdelight-1.5.jar with {alexsdelight} mods - versions {1.5} [02oct2024 16:28:49.422] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\alexsmobs-1.22.9.jar [02oct2024 16:28:49.422] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file alexsmobs-1.22.9.jar with {alexsmobs} mods - versions {1.22.9} [02oct2024 16:28:49.424] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\appleskin-forge-mc1.20.1-2.5.1.jar [02oct2024 16:28:49.425] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file appleskin-forge-mc1.20.1-2.5.1.jar with {appleskin} mods - versions {2.5.1+mc1.20.1} [02oct2024 16:28:49.426] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Aquaculture-1.20.1-2.5.2.jar [02oct2024 16:28:49.427] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Aquaculture-1.20.1-2.5.2.jar with {aquaculture} mods - versions {2.5.2} [02oct2024 16:28:49.428] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\aquaculture_delight_1.0.0_forge_1.20.1.jar [02oct2024 16:28:49.429] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file aquaculture_delight_1.0.0_forge_1.20.1.jar with {aquaculturedelight} mods - versions {1.0.0} [02oct2024 16:28:49.431] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\aquamirae-6.API15.jar [02oct2024 16:28:49.432] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file aquamirae-6.API15.jar with {aquamirae} mods - versions {6.API15} [02oct2024 16:28:49.433] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\architectury-9.2.14-forge.jar [02oct2024 16:28:49.434] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file architectury-9.2.14-forge.jar with {architectury} mods - versions {9.2.14} [02oct2024 16:28:49.435] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Armor of the Ages-forge-1.20.1-1.2.1.jar [02oct2024 16:28:49.436] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Armor of the Ages-forge-1.20.1-1.2.1.jar with {armoroftheages} mods - versions {1.2.1} [02oct2024 16:28:49.437] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\armorpointspp-forge-1.20-3.1.1.jar [02oct2024 16:28:49.437] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file armorpointspp-forge-1.20-3.1.1.jar with {armorpointspp} mods - versions {1.20-3.1.1} [02oct2024 16:28:49.453] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\armourersworkshop-forge-1.20.1-3.0.0-beta.18.jar [02oct2024 16:28:49.454] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file armourersworkshop-forge-1.20.1-3.0.0-beta.18.jar with {armourers_workshop} mods - versions {3.0.0-beta.18} [02oct2024 16:28:49.456] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\artifacts-forge-9.5.13.jar [02oct2024 16:28:49.456] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file artifacts-forge-9.5.13.jar with {artifacts} mods - versions {9.5.13} [02oct2024 16:28:49.458] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\athena-forge-1.20.1-3.1.2.jar [02oct2024 16:28:49.459] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file athena-forge-1.20.1-3.1.2.jar with {athena} mods - versions {3.1.2} [02oct2024 16:28:49.462] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\AttributeFix-Forge-1.20.1-21.0.4.jar [02oct2024 16:28:49.463] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AttributeFix-Forge-1.20.1-21.0.4.jar with {attributefix} mods - versions {21.0.4} [02oct2024 16:28:49.463] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\balm-forge-1.20.1-7.3.9-all.jar [02oct2024 16:28:49.464] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file balm-forge-1.20.1-7.3.9-all.jar with {balm} mods - versions {7.3.9} [02oct2024 16:28:49.465] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\bettercombat-forge-1.8.6+1.20.1.jar [02oct2024 16:28:49.466] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file bettercombat-forge-1.8.6+1.20.1.jar with {bettercombat} mods - versions {1.8.6+1.20.1} [02oct2024 16:28:49.469] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Bookshelf-Forge-1.20.1-20.2.13.jar [02oct2024 16:28:49.470] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Bookshelf-Forge-1.20.1-20.2.13.jar with {bookshelf} mods - versions {20.2.13} [02oct2024 16:28:49.472] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\born_in_chaos_[Forge]1.20.1_1.3.1.jar [02oct2024 16:28:49.473] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file born_in_chaos_[Forge]1.20.1_1.3.1.jar with {born_in_chaos_v1} mods - versions {1.0.0} [02oct2024 16:28:49.474] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\caelus-forge-3.2.0+1.20.1.jar [02oct2024 16:28:49.475] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file caelus-forge-3.2.0+1.20.1.jar with {caelus} mods - versions {3.2.0+1.20.1} [02oct2024 16:28:49.477] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\camera-forge-1.20.1-1.0.14.jar [02oct2024 16:28:49.477] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file camera-forge-1.20.1-1.0.14.jar with {camera} mods - versions {1.20.1-1.0.14} [02oct2024 16:28:49.487] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Chipped-forge-1.20.1-3.0.6.jar [02oct2024 16:28:49.488] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Chipped-forge-1.20.1-3.0.6.jar with {chipped} mods - versions {3.0.6} [02oct2024 16:28:49.490] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\citadel-2.6.0-1.20.1.jar [02oct2024 16:28:49.491] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file citadel-2.6.0-1.20.1.jar with {citadel} mods - versions {2.6.0} [02oct2024 16:28:49.492] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\cloth-config-11.1.136-forge.jar [02oct2024 16:28:49.493] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cloth-config-11.1.136-forge.jar with {cloth_config} mods - versions {11.1.136} [02oct2024 16:28:49.494] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Clumps-forge-1.20.1-12.0.0.4.jar [02oct2024 16:28:49.495] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Clumps-forge-1.20.1-12.0.0.4.jar with {clumps} mods - versions {12.0.0.4} [02oct2024 16:28:49.496] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\coroutil-forge-1.20.1-1.3.7.jar [02oct2024 16:28:49.497] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file coroutil-forge-1.20.1-1.3.7.jar with {coroutil} mods - versions {1.20.1-1.3.7} [02oct2024 16:28:49.499] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\CraftTweaker-forge-1.20.1-14.0.43.jar [02oct2024 16:28:49.499] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CraftTweaker-forge-1.20.1-14.0.43.jar with {crafttweaker} mods - versions {14.0.43} [02oct2024 16:28:49.501] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\CreativeCore_FORGE_v2.12.15_mc1.20.1.jar [02oct2024 16:28:49.501] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CreativeCore_FORGE_v2.12.15_mc1.20.1.jar with {creativecore} mods - versions {2.12.15} [02oct2024 16:28:49.502] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\creeperoverhaul-3.0.2-forge.jar [02oct2024 16:28:49.503] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file creeperoverhaul-3.0.2-forge.jar with {creeperoverhaul} mods - versions {3.0.2} [02oct2024 16:28:49.504] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\cristellib-1.1.5-forge.jar [02oct2024 16:28:49.504] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cristellib-1.1.5-forge.jar with {cristellib} mods - versions {1.1.5} [02oct2024 16:28:49.505] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\curios-forge-5.10.0+1.20.1.jar [02oct2024 16:28:49.505] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file curios-forge-5.10.0+1.20.1.jar with {curios} mods - versions {5.10.0+1.20.1} [02oct2024 16:28:49.507] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\CustomNPCs-1.20.1-GBPort-Unofficial-20240824.jar [02oct2024 16:28:49.507] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CustomNPCs-1.20.1-GBPort-Unofficial-20240824.jar with {customnpcs} mods - versions {1.20.1.20240824} [02oct2024 16:28:49.509] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\CyclopsCore-1.20.1-1.19.5.jar [02oct2024 16:28:49.509] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CyclopsCore-1.20.1-1.19.5.jar with {cyclopscore} mods - versions {1.19.5} [02oct2024 16:28:49.511] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\deeperdarker-forge-1.20.1-1.3.2.jar [02oct2024 16:28:49.511] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file deeperdarker-forge-1.20.1-1.3.2.jar with {deeperdarker} mods - versions {1.3.2} [02oct2024 16:28:49.513] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\dummmmmmy-1.20-2.0.2.jar [02oct2024 16:28:49.513] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file dummmmmmy-1.20-2.0.2.jar with {dummmmmmy} mods - versions {1.20-2.0.2} [02oct2024 16:28:49.515] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\dungeons-and-taverns-3.0.3.f.jar [02oct2024 16:28:49.515] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file dungeons-and-taverns-3.0.3.f.jar with {mr_dungeons_andtaverns} mods - versions {3.0.3.f} [02oct2024 16:28:49.517] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\DungeonsArise-1.20.x-2.1.58-release.jar [02oct2024 16:28:49.517] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file DungeonsArise-1.20.x-2.1.58-release.jar with {dungeons_arise} mods - versions {2.1.58-1.20.x} [02oct2024 16:28:49.519] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar [02oct2024 16:28:49.519] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar with {dungeons_arise_seven_seas} mods - versions {1.0.2} [02oct2024 16:28:49.520] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\easy-villagers-forge-1.20.1-1.1.23.jar [02oct2024 16:28:49.521] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file easy-villagers-forge-1.20.1-1.1.23.jar with {easy_villagers} mods - versions {1.20.1-1.1.23} [02oct2024 16:28:49.522] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\elytratrims-forge-3.4.4+1.20.1.jar [02oct2024 16:28:49.523] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file elytratrims-forge-3.4.4+1.20.1.jar with {elytratrims} mods - versions {3.4.4} [02oct2024 16:28:49.524] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\embeddium-0.3.31+mc1.20.1.jar [02oct2024 16:28:49.525] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file embeddium-0.3.31+mc1.20.1.jar with {embeddium,rubidium} mods - versions {0.3.31+mc1.20.1,0.7.1} [02oct2024 16:28:49.526] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\embeddiumplus-1.20.1-v1.2.13.jar [02oct2024 16:28:49.526] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file embeddiumplus-1.20.1-v1.2.13.jar with {embeddiumplus} mods - versions {1.2.13} [02oct2024 16:28:49.528] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Emojiful-Forge-1.20.1-4.2.0.jar [02oct2024 16:28:49.528] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Emojiful-Forge-1.20.1-4.2.0.jar with {emojiful} mods - versions {4.2.0} [02oct2024 16:28:49.530] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\EnchantmentDescriptions-Forge-1.20.1-17.1.18.jar [02oct2024 16:28:49.531] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file EnchantmentDescriptions-Forge-1.20.1-17.1.18.jar with {enchdesc} mods - versions {17.1.18} [02oct2024 16:28:49.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\EnhancedAI-2.5.2-mc1.20.1.jar [02oct2024 16:28:49.533] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file EnhancedAI-2.5.2-mc1.20.1.jar with {enhancedai} mods - versions {2.5.2} [02oct2024 16:28:49.534] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\EverlastingSkins-1.20.1-1.0.jar [02oct2024 16:28:49.534] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file EverlastingSkins-1.20.1-1.0.jar with {everlastingskins} mods - versions {1.0} [02oct2024 16:28:49.536] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\EvilCraft-1.20.1-1.2.47.jar [02oct2024 16:28:49.537] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file EvilCraft-1.20.1-1.2.47.jar with {evilcraft,evilcraftcompat} mods - versions {1.2.47,1.2.47} [02oct2024 16:28:49.538] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\FarmersDelight-1.20.1-1.2.4.jar [02oct2024 16:28:49.539] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FarmersDelight-1.20.1-1.2.4.jar with {farmersdelight} mods - versions {1.20.1-1.2.4} [02oct2024 16:28:49.540] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\fast-ip-ping-v1.0.5-mc1.20.4-forge.jar [02oct2024 16:28:49.540] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file fast-ip-ping-v1.0.5-mc1.20.4-forge.jar with {fastipping} mods - versions {1.0.5} [02oct2024 16:28:49.543] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ferritecore-6.0.1-forge.jar [02oct2024 16:28:49.543] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ferritecore-6.0.1-forge.jar with {ferritecore} mods - versions {6.0.1} [02oct2024 16:28:49.545] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\FpsReducer2-forge-1.20-2.5.jar [02oct2024 16:28:49.545] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FpsReducer2-forge-1.20-2.5.jar with {fpsreducer} mods - versions {1.20-2.5} [02oct2024 16:28:49.547] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\framework-forge-1.20.1-0.6.27.jar [02oct2024 16:28:49.548] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file framework-forge-1.20.1-0.6.27.jar with {framework} mods - versions {0.6.27} [02oct2024 16:28:49.548] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\fusion-1.1.1-forge-mc1.20.1.jar [02oct2024 16:28:49.549] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file fusion-1.1.1-forge-mc1.20.1.jar with {fusion} mods - versions {1.1.1} [02oct2024 16:28:49.551] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\fuze_relics-1.20.1-1.0.9.jar [02oct2024 16:28:49.551] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file fuze_relics-1.20.1-1.0.9.jar with {fuze_relics} mods - versions {1.0.9} [02oct2024 16:28:49.552] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\geckolib-forge-1.20.1-4.4.9.jar [02oct2024 16:28:49.553] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file geckolib-forge-1.20.1-4.4.9.jar with {geckolib} mods - versions {4.4.9} [02oct2024 16:28:49.554] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\genshinstrument-1.20-1.20.1-4.0.2.jar [02oct2024 16:28:49.555] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file genshinstrument-1.20-1.20.1-4.0.2.jar with {genshinstrument} mods - versions {4.0.2} [02oct2024 16:28:49.556] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\GrimoireOfGaia4-1.20.1-4.0.0-alpha.11.jar [02oct2024 16:28:49.557] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file GrimoireOfGaia4-1.20.1-4.0.0-alpha.11.jar with {grimoireofgaia} mods - versions {4.0.0-alpha.11} [02oct2024 16:28:49.559] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\hostile-mobs-improve-over-time-1.9.1.jar [02oct2024 16:28:49.559] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file hostile-mobs-improve-over-time-1.9.1.jar with {mr_hostile_mobsimproveovertime} mods - versions {1.9.1} [02oct2024 16:28:49.560] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Iceberg-1.20.1-forge-1.1.21.jar [02oct2024 16:28:49.560] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Iceberg-1.20.1-forge-1.1.21.jar with {iceberg} mods - versions {1.1.21} [02oct2024 16:28:49.562] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\immersive_melodies-0.3.0+1.20.1-forge.jar [02oct2024 16:28:49.562] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file immersive_melodies-0.3.0+1.20.1-forge.jar with {immersive_melodies} mods - versions {0.3.0+1.20.1} [02oct2024 16:28:49.563] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ImmersiveUI-FORGE-0.2.2.jar [02oct2024 16:28:49.564] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ImmersiveUI-FORGE-0.2.2.jar with {immersiveui} mods - versions {0.2.2} [02oct2024 16:28:49.566] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Incendium_1.20.x_v5.3.5.jar [02oct2024 16:28:49.566] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Incendium_1.20.x_v5.3.5.jar with {incendium} mods - versions {5.3.5} [02oct2024 16:28:49.568] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\InsaneLib-1.15.0-mc1.20.1.jar [02oct2024 16:28:49.568] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file InsaneLib-1.15.0-mc1.20.1.jar with {insanelib} mods - versions {1.15.0} [02oct2024 16:28:49.569] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\inventoryhud.forge.1.20.1-3.4.26.jar [02oct2024 16:28:49.570] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file inventoryhud.forge.1.20.1-3.4.26.jar with {inventoryhud} mods - versions {3.4.26} [02oct2024 16:28:49.571] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\InventoryProfilesNext-forge-1.20-1.10.10.jar [02oct2024 16:28:49.572] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file InventoryProfilesNext-forge-1.20-1.10.10.jar with {inventoryprofilesnext} mods - versions {1.10.10} [02oct2024 16:28:49.573] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ItemBorders-1.20.1-forge-1.2.1.jar [02oct2024 16:28:49.573] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ItemBorders-1.20.1-forge-1.2.1.jar with {itemborders} mods - versions {1.2.1} [02oct2024 16:28:49.574] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ItemPhysicLite_FORGE_v1.6.5_mc1.20.1.jar [02oct2024 16:28:49.575] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ItemPhysicLite_FORGE_v1.6.5_mc1.20.1.jar with {itemphysiclite} mods - versions {1.6.5} [02oct2024 16:28:49.576] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Jade-1.20.1-forge-11.11.1.jar [02oct2024 16:28:49.576] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Jade-1.20.1-forge-11.11.1.jar with {jade} mods - versions {11.11.1+forge} [02oct2024 16:28:49.578] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\jei-1.20.1-forge-15.19.5.99.jar [02oct2024 16:28:49.578] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file jei-1.20.1-forge-15.19.5.99.jar with {jei} mods - versions {15.19.5.99} [02oct2024 16:28:49.580] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\jerintegration-5.5.0.jar [02oct2024 16:28:49.580] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file jerintegration-5.5.0.jar with {jerintegration} mods - versions {5.5.0} [02oct2024 16:28:49.582] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\JustEnoughResources-1.20.1-1.4.0.247.jar [02oct2024 16:28:49.582] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file JustEnoughResources-1.20.1-1.4.0.247.jar with {jeresources} mods - versions {1.4.0.247} [02oct2024 16:28:49.597] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\L_Enders_Cataclysm-1.99.6-1.20.1.jar [02oct2024 16:28:49.598] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file L_Enders_Cataclysm-1.99.6-1.20.1.jar with {cataclysm} mods - versions {1.99.5} [02oct2024 16:28:49.599] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\LegendaryTooltips-1.20.1-forge-1.4.5.jar [02oct2024 16:28:49.600] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file LegendaryTooltips-1.20.1-forge-1.4.5.jar with {legendarytooltips} mods - versions {1.4.5} [02oct2024 16:28:49.601] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\letsdo-API-forge-1.2.15-forge.jar [02oct2024 16:28:49.601] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file letsdo-API-forge-1.2.15-forge.jar with {doapi,terraform} mods - versions {1.2.15,7.0.1} [02oct2024 16:28:49.603] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\letsdo-vinery-forge-1.4.28.jar [02oct2024 16:28:49.603] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file letsdo-vinery-forge-1.4.28.jar with {vinery} mods - versions {1.4.28} [02oct2024 16:28:49.605] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\libIPN-forge-1.20-4.0.2.jar [02oct2024 16:28:49.605] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file libIPN-forge-1.20-4.0.2.jar with {libipn} mods - versions {4.0.2} [02oct2024 16:28:49.606] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\lionfishapi-1.9.jar [02oct2024 16:28:49.607] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file lionfishapi-1.9.jar with {lionfishapi} mods - versions {1.9} [02oct2024 16:28:49.608] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\lootr-forge-1.20-0.7.34.89.jar [02oct2024 16:28:49.608] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file lootr-forge-1.20-0.7.34.89.jar with {lootr} mods - versions {0.7.34.87} [02oct2024 16:28:49.610] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\miningmaster-1.20.1-4.1.3.jar [02oct2024 16:28:49.610] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file miningmaster-1.20.1-4.1.3.jar with {miningmaster} mods - versions {4.1.3} [02oct2024 16:28:49.614] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\mna-forge-1.20.1-3.1.0.1-all.jar [02oct2024 16:28:49.615] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mna-forge-1.20.1-3.1.0.1-all.jar with {mna} mods - versions {3.1.0.1} [02oct2024 16:28:49.616] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\moonlight-1.20-2.13.1-forge.jar [02oct2024 16:28:49.617] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file moonlight-1.20-2.13.1-forge.jar with {moonlight} mods - versions {1.20-2.13.1} [02oct2024 16:28:49.618] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Necronomicon-Forge-1.4.2.jar [02oct2024 16:28:49.618] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Necronomicon-Forge-1.4.2.jar with {necronomicon} mods - versions {1.4.2} [02oct2024 16:28:49.620] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\NekosEnchantedBooks-1.20.1-1.8.0.jar [02oct2024 16:28:49.620] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file NekosEnchantedBooks-1.20.1-1.8.0.jar with {nebs} mods - versions {1.8.0} [02oct2024 16:28:49.622] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\netmusic-1.20.1-1.1.3.jar [02oct2024 16:28:49.622] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file netmusic-1.20.1-1.1.3.jar with {netmusic} mods - versions {0.0NONE} [02oct2024 16:28:49.623] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\nomoportals-1.20.1-5.8.jar [02oct2024 16:28:49.624] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file nomoportals-1.20.1-5.8.jar with {nomoportals} mods - versions {5.8} [02oct2024 16:28:49.625] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\obscure_api-15.jar [02oct2024 16:28:49.625] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file obscure_api-15.jar with {obscure_api} mods - versions {15} [02oct2024 16:28:49.627] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\OctoLib-FORGE-0.4.2+1.20.1.jar [02oct2024 16:28:49.627] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file OctoLib-FORGE-0.4.2+1.20.1.jar with {octolib} mods - versions {0.4.2} [02oct2024 16:28:49.629] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\oculus-mc1.20.1-1.7.0.jar [02oct2024 16:28:49.629] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file oculus-mc1.20.1-1.7.0.jar with {oculus} mods - versions {1.7.0} [02oct2024 16:28:49.630] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Patchouli-1.20.1-84-FORGE (1).jar [02oct2024 16:28:49.631] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Patchouli-1.20.1-84-FORGE (1).jar with {patchouli} mods - versions {1.20.1-84-FORGE} [02oct2024 16:28:49.633] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\PickUpNotifier-v8.0.0-1.20.1-Forge.jar [02oct2024 16:28:49.633] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file PickUpNotifier-v8.0.0-1.20.1-Forge.jar with {pickupnotifier} mods - versions {8.0.0} [02oct2024 16:28:49.634] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\player-animation-lib-forge-1.0.2-rc1+1.20.jar [02oct2024 16:28:49.634] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file player-animation-lib-forge-1.0.2-rc1+1.20.jar with {playeranimator} mods - versions {1.0.2-rc1+1.20} [02oct2024 16:28:49.636] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\PlayerRevive_FORGE_v2.0.27_mc1.20.1.jar [02oct2024 16:28:49.636] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file PlayerRevive_FORGE_v2.0.27_mc1.20.1.jar with {playerrevive} mods - versions {2.0.27} [02oct2024 16:28:49.638] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Powah-5.0.7.jar [02oct2024 16:28:49.638] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Powah-5.0.7.jar with {powah} mods - versions {5.0.7} [02oct2024 16:28:49.640] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ppfluids-1.20.1-2.0.1.jar [02oct2024 16:28:49.640] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ppfluids-1.20.1-2.0.1.jar with {ppfluids} mods - versions {2.0.1} [02oct2024 16:28:49.641] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\PrettyPipes-1.15.0-all.jar [02oct2024 16:28:49.641] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file PrettyPipes-1.15.0-all.jar with {prettypipes} mods - versions {1.15.0} [02oct2024 16:28:49.643] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Prism-1.20.1-forge-1.0.5.jar [02oct2024 16:28:49.643] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Prism-1.20.1-forge-1.0.5.jar with {prism} mods - versions {1.0.5} [02oct2024 16:28:49.644] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\projectile_damage-forge-3.2.2+1.20.1.jar [02oct2024 16:28:49.645] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file projectile_damage-forge-3.2.2+1.20.1.jar with {projectile_damage} mods - versions {3.2.2+1.20.1} [02oct2024 16:28:49.648] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\PuzzlesLib-v8.1.23-1.20.1-Forge.jar [02oct2024 16:28:49.649] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file PuzzlesLib-v8.1.23-1.20.1-Forge.jar with {puzzleslib} mods - versions {8.1.23} [02oct2024 16:28:49.650] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\rch-supplementaries-compat-forge-1.0.0.jar [02oct2024 16:28:49.650] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rch-supplementaries-compat-forge-1.0.0.jar with {rch_supplementaries_compat} mods - versions {1.0.0} [02oct2024 16:28:49.653] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\rechiseled-1.1.6-forge-mc1.20.jar [02oct2024 16:28:49.653] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rechiseled-1.1.6-forge-mc1.20.jar with {rechiseled} mods - versions {1.1.6} [02oct2024 16:28:49.655] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\rechiseled_chipped-1.1.jar [02oct2024 16:28:49.655] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rechiseled_chipped-1.1.jar with {rechiseled_chipped} mods - versions {1.1} [02oct2024 16:28:49.656] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\resourcefulconfig-forge-1.20.1-2.1.2.jar [02oct2024 16:28:49.657] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file resourcefulconfig-forge-1.20.1-2.1.2.jar with {resourcefulconfig} mods - versions {2.1.2} [02oct2024 16:28:49.658] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\resourcefullib-forge-1.20.1-2.1.29.jar [02oct2024 16:28:49.658] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file resourcefullib-forge-1.20.1-2.1.29.jar with {resourcefullib} mods - versions {2.1.29} [02oct2024 16:28:49.660] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\retrodamageindicators-1.0.1.jar [02oct2024 16:28:49.660] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file retrodamageindicators-1.0.1.jar with {retrodamageindicators} mods - versions {1.0.1} [02oct2024 16:28:49.661] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\right-click-harvest-3.2.3+1.20.1-forge.jar [02oct2024 16:28:49.661] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file right-click-harvest-3.2.3+1.20.1-forge.jar with {rightclickharvest} mods - versions {3.2.3+1.20.1-forge} [02oct2024 16:28:49.663] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\rubidium-extra-0.5.4.3+mc1.20.1-build.121.jar [02oct2024 16:28:49.663] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rubidium-extra-0.5.4.3+mc1.20.1-build.121.jar with {embeddium_extra} mods - versions {0.5.4.3+mc1.20.1-build.121} [02oct2024 16:28:49.664] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ScorchedBrass-0.0.3-1.20.1.jar [02oct2024 16:28:49.665] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ScorchedBrass-0.0.3-1.20.1.jar with {scbrass} mods - versions {0.0.1} [02oct2024 16:28:49.667] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ScorchedGuns-0.3.2.5-1.20.1.jar [02oct2024 16:28:49.667] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ScorchedGuns-0.3.2.5-1.20.1.jar with {scguns} mods - versions {0.3.2.5} [02oct2024 16:28:49.668] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ShieldExpansion-1.20.1-1.1.7a.jar [02oct2024 16:28:49.669] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ShieldExpansion-1.20.1-1.1.7a.jar with {shieldexp} mods - versions {1.1.7a} [02oct2024 16:28:49.671] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\simplyswords-forge-1.56.0-1.20.1.jar [02oct2024 16:28:49.671] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file simplyswords-forge-1.56.0-1.20.1.jar with {simplyswords} mods - versions {1.56.0-1.20.1} [02oct2024 16:28:49.672] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\SkyVillages-1.0.4-1.19.2-1.20.1-forge-release.jar [02oct2024 16:28:49.673] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file SkyVillages-1.0.4-1.19.2-1.20.1-forge-release.jar with {skyvillages} mods - versions {1.0.4} [02oct2024 16:28:49.674] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\sophisticatedbackpacks-1.20.1-3.20.9.1103.jar [02oct2024 16:28:49.675] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file sophisticatedbackpacks-1.20.1-3.20.9.1103.jar with {sophisticatedbackpacks} mods - versions {3.20.9.1103} [02oct2024 16:28:49.676] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\sophisticatedcore-1.20.1-0.6.29.697.jar [02oct2024 16:28:49.676] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file sophisticatedcore-1.20.1-0.6.29.697.jar with {sophisticatedcore} mods - versions {0.6.29.697} [02oct2024 16:28:49.678] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\soulslike-weaponry-1.1.4.4d-1.20.1-forge.jar [02oct2024 16:28:49.678] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file soulslike-weaponry-1.1.4.4d-1.20.1-forge.jar with {soulsweapons} mods - versions {1.1.4.4d-1.20.1-forge}} [02oct2024 16:28:49.680] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\StorageDrawers-1.20.1-12.7.2.jar [02oct2024 16:28:49.680] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file StorageDrawers-1.20.1-12.7.2.jar with {storagedrawers} mods - versions {12.7.2} [02oct2024 16:28:49.681] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\supermartijn642configlib-1.1.8-forge-mc1.20.jar [02oct2024 16:28:49.682] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar with {supermartijn642configlib} mods - versions {1.1.8} [02oct2024 16:28:49.683] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar [02oct2024 16:28:49.683] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar with {supermartijn642corelib} mods - versions {1.1.17+a} [02oct2024 16:28:49.686] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\supplementaries-1.20-2.8.17.jar [02oct2024 16:28:49.686] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file supplementaries-1.20-2.8.17.jar with {supplementaries} mods - versions {1.20-2.8.17} [02oct2024 16:28:49.688] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Terralith_1.20.x_v2.5.4.jar [02oct2024 16:28:49.689] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Terralith_1.20.x_v2.5.4.jar with {terralith} mods - versions {2.5.4} [02oct2024 16:28:49.691] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\terramity-0.9.4.1-forge-1.20.1.jar [02oct2024 16:28:49.692] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file terramity-0.9.4.1-forge-1.20.1.jar with {terramity} mods - versions {0.9.4.1} [02oct2024 16:28:49.693] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\tombstone-1.20.1-8.7.4.jar [02oct2024 16:28:49.694] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file tombstone-1.20.1-8.7.4.jar with {tombstone} mods - versions {8.7.4} [02oct2024 16:28:49.695] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\touhoulittlemaid-1.20.1-release-1.1.12-hotfix2.jar [02oct2024 16:28:49.696] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file touhoulittlemaid-1.20.1-release-1.1.12-hotfix2.jar with {touhou_little_maid} mods - versions {1.1.12-hotfix2} [02oct2024 16:28:49.697] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Towns-and-Towers-1.12-Fabric+Forge.jar [02oct2024 16:28:49.698] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Towns-and-Towers-1.12-Fabric+Forge.jar with {t_and_t} mods - versions {0.0NONE} [02oct2024 16:28:49.699] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\trashslot-forge-1.20-15.1.0.jar [02oct2024 16:28:49.699] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file trashslot-forge-1.20-15.1.0.jar with {trashslot} mods - versions {15.1.0} [02oct2024 16:28:49.701] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\TravelersTitles-1.20-Forge-4.0.2.jar [02oct2024 16:28:49.701] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file TravelersTitles-1.20-Forge-4.0.2.jar with {travelerstitles} mods - versions {1.20-Forge-4.0.2} [02oct2024 16:28:49.702] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\tru.e-ending-v1.1.0c.jar [02oct2024 16:28:49.703] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file tru.e-ending-v1.1.0c.jar with {mr_limesplatus_ending} mods - versions {1-v1.1.0c} [02oct2024 16:28:49.706] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\twilightforest-1.20.1-4.3.2508-universal.jar [02oct2024 16:28:49.706] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file twilightforest-1.20.1-4.3.2508-universal.jar with {twilightforest} mods - versions {4.3.2508} [02oct2024 16:28:49.708] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\voicechat-forge-1.20.1-2.5.22.jar [02oct2024 16:28:49.708] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file voicechat-forge-1.20.1-2.5.22.jar with {voicechat} mods - versions {1.20.1-2.5.22} [02oct2024 16:28:49.710] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\watut-forge-1.20.1-1.1.3.jar [02oct2024 16:28:49.710] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file watut-forge-1.20.1-1.1.3.jar with {watut} mods - versions {1.20.1-1.1.3} [02oct2024 16:28:49.711] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\waystones-forge-1.20-14.1.5.jar [02oct2024 16:28:49.712] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file waystones-forge-1.20-14.1.5.jar with {waystones} mods - versions {14.1.5} [02oct2024 16:28:49.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Xaeros_Minimap_24.4.0_Forge_1.20.jar [02oct2024 16:28:49.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Xaeros_Minimap_24.4.0_Forge_1.20.jar with {xaerominimap} mods - versions {24.4.0} [02oct2024 16:28:49.715] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\XaerosWorldMap_1.39.0_Forge_1.20.jar [02oct2024 16:28:49.715] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file XaerosWorldMap_1.39.0_Forge_1.20.jar with {xaeroworldmap} mods - versions {1.39.0} [02oct2024 16:28:49.716] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\xlpackets-1.18.2-2.1.jar [02oct2024 16:28:49.717] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file xlpackets-1.18.2-2.1.jar with {xlpackets} mods - versions {1.18.2-2.1} [02oct2024 16:28:49.718] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YetAnotherConfigLib-3.5.0+1.20.1-forge.jar [02oct2024 16:28:49.718] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YetAnotherConfigLib-3.5.0+1.20.1-forge.jar with {yet_another_config_lib_v3} mods - versions {3.5.0+1.20.1-forge} [02oct2024 16:28:49.719] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YouShallNotSpawn-forge-1.20.x-2.0.1.jar [02oct2024 16:28:49.719] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YouShallNotSpawn-forge-1.20.x-2.0.1.jar with {ysns} mods - versions {2.0.1} [02oct2024 16:28:49.721] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsApi-1.20-Forge-4.0.5.jar [02oct2024 16:28:49.721] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsApi-1.20-Forge-4.0.5.jar with {yungsapi} mods - versions {1.20-Forge-4.0.5} [02oct2024 16:28:49.722] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterDesertTemples-1.20-Forge-3.0.3.jar [02oct2024 16:28:49.723] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterDesertTemples-1.20-Forge-3.0.3.jar with {betterdeserttemples} mods - versions {1.20-Forge-3.0.3} [02oct2024 16:28:49.724] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterDungeons-1.20-Forge-4.0.4.jar [02oct2024 16:28:49.724] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterDungeons-1.20-Forge-4.0.4.jar with {betterdungeons} mods - versions {1.20-Forge-4.0.4} [02oct2024 16:28:49.726] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterEndIsland-1.20-Forge-2.0.6.jar [02oct2024 16:28:49.726] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterEndIsland-1.20-Forge-2.0.6.jar with {betterendisland} mods - versions {1.20-Forge-2.0.6} [02oct2024 16:28:49.727] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterJungleTemples-1.20-Forge-2.0.5.jar [02oct2024 16:28:49.728] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterJungleTemples-1.20-Forge-2.0.5.jar with {betterjungletemples} mods - versions {1.20-Forge-2.0.5} [02oct2024 16:28:49.729] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterMineshafts-1.20-Forge-4.0.4.jar [02oct2024 16:28:49.729] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar with {bettermineshafts} mods - versions {1.20-Forge-4.0.4} [02oct2024 16:28:49.731] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar [02oct2024 16:28:49.731] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar with {betterfortresses} mods - versions {1.20-Forge-2.0.6} [02oct2024 16:28:49.733] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar [02oct2024 16:28:49.733] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar with {betteroceanmonuments} mods - versions {1.20-Forge-3.0.4} [02oct2024 16:28:49.734] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterStrongholds-1.20-Forge-4.0.3.jar [02oct2024 16:28:49.735] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterStrongholds-1.20-Forge-4.0.3.jar with {betterstrongholds} mods - versions {1.20-Forge-4.0.3} [02oct2024 16:28:49.736] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBridges-1.20-Forge-4.0.3.jar [02oct2024 16:28:49.736] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBridges-1.20-Forge-4.0.3.jar with {yungsbridges} mods - versions {1.20-Forge-4.0.3} [02oct2024 16:28:49.745] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\yuushya-1.20.1-forge-2.2.0.jar [02oct2024 16:28:49.746] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file yuushya-1.20.1-forge-2.2.0.jar with {yuushya} mods - versions {2.2.0} [02oct2024 16:28:49.801] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1} [02oct2024 16:28:49.803] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\libraries\net\minecraftforge\fmlcore\1.20.1-47.3.10\fmlcore-1.20.1-47.3.10.jar [02oct2024 16:28:49.803] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Games\Server\libraries\net\minecraftforge\fmlcore\1.20.1-47.3.10\fmlcore-1.20.1-47.3.10.jar is missing mods.toml file [02oct2024 16:28:49.805] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.3.10\javafmllanguage-1.20.1-47.3.10.jar [02oct2024 16:28:49.805] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Games\Server\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.3.10\javafmllanguage-1.20.1-47.3.10.jar is missing mods.toml file [02oct2024 16:28:49.807] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.3.10\lowcodelanguage-1.20.1-47.3.10.jar [02oct2024 16:28:49.808] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Games\Server\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.3.10\lowcodelanguage-1.20.1-47.3.10.jar is missing mods.toml file [02oct2024 16:28:49.810] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\libraries\net\minecraftforge\mclanguage\1.20.1-47.3.10\mclanguage-1.20.1-47.3.10.jar [02oct2024 16:28:49.810] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Games\Server\libraries\net\minecraftforge\mclanguage\1.20.1-47.3.10\mclanguage-1.20.1-47.3.10.jar is missing mods.toml file [02oct2024 16:28:49.830] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\libraries\net\minecraftforge\forge\1.20.1-47.3.10\forge-1.20.1-47.3.10-universal.jar [02oct2024 16:28:49.830] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.10-universal.jar with {forge} mods - versions {47.3.10} [02oct2024 16:28:49.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from CyclopsCore-1.20.1-1.19.5.jar, it does not contain dependency information. [02oct2024 16:28:49.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from SkyVillages-1.0.4-1.19.2-1.20.1-forge-release.jar, it does not contain dependency information. [02oct2024 16:28:49.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterDungeons-1.20-Forge-4.0.4.jar, it does not contain dependency information. [02oct2024 16:28:49.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from embeddiumplus-1.20.1-v1.2.13.jar, it does not contain dependency information. [02oct2024 16:28:49.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from supermartijn642configlib-1.1.8-forge-mc1.20.jar, it does not contain dependency information. [02oct2024 16:28:49.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from alexsmobs-1.22.9.jar, it does not contain dependency information. [02oct2024 16:28:49.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from player-animation-lib-forge-1.0.2-rc1+1.20.jar, it does not contain dependency information. [02oct2024 16:28:49.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar, it does not contain dependency information. [02oct2024 16:28:49.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Incendium_1.20.x_v5.3.5.jar, it does not contain dependency information. [02oct2024 16:28:49.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from aquaculture_delight_1.0.0_forge_1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from sophisticatedcore-1.20.1-0.6.29.697.jar, it does not contain dependency information. [02oct2024 16:28:49.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from ScorchedBrass-0.0.3-1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from netmusic-1.20.1-1.1.3.jar, it does not contain dependency information. [02oct2024 16:28:49.838] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from InsaneLib-1.15.0-mc1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from XaerosWorldMap_1.39.0_Forge_1.20.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from EverlastingSkins-1.20.1-1.0.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Prism-1.20.1-forge-1.0.5.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from citadel-2.6.0-1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from EvilCraft-1.20.1-1.2.47.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsApi-1.20-Forge-4.0.5.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Powah-5.0.7.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from rechiseled_chipped-1.1.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Bookshelf-Forge-1.20.1-20.2.13.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from sophisticatedbackpacks-1.20.1-3.20.9.1103.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from rch-supplementaries-compat-forge-1.0.0.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from GrimoireOfGaia4-1.20.1-4.0.0-alpha.11.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from FpsReducer2-forge-1.20-2.5.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from projectile_damage-forge-3.2.2+1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from JustEnoughResources-1.20.1-1.4.0.247.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from ShieldExpansion-1.20.1-1.1.7a.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from cloth-config-11.1.136-forge.jar, it does not contain dependency information. [02oct2024 16:28:49.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from twilightforest-1.20.1-4.3.2508-universal.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Emojiful-Forge-1.20.1-4.2.0.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from athena-forge-1.20.1-3.1.2.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from AdvancementPlaques-1.20.1-forge-1.6.7.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Chipped-forge-1.20.1-3.0.6.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from terramity-0.9.4.1-forge-1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from FarmersDelight-1.20.1-1.2.4.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from ImmersiveUI-FORGE-0.2.2.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fast-ip-ping-v1.0.5-mc1.20.4-forge.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBridges-1.20-Forge-4.0.3.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from resourcefulconfig-forge-1.20.1-2.1.2.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from jerintegration-5.5.0.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from born_in_chaos_[Forge]1.20.1_1.3.1.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from lionfishapi-1.9.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from touhoulittlemaid-1.20.1-release-1.1.12-hotfix2.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from L_Enders_Cataclysm-1.99.6-1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from curios-forge-5.10.0+1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Patchouli-1.20.1-84-FORGE (1).jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from armorpointspp-forge-1.20-3.1.1.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from right-click-harvest-3.2.3+1.20.1-forge.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from camera-forge-1.20.1-1.0.14.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from advancednetherite-forge-2.1.3-1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.840] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from dungeons-and-taverns-3.0.3.f.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from ScorchedGuns-0.3.2.5-1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterStrongholds-1.20-Forge-4.0.3.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from tombstone-1.20.1-8.7.4.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from CustomNPCs-1.20.1-GBPort-Unofficial-20240824.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YouShallNotSpawn-forge-1.20.x-2.0.1.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from yuushya-1.20.1-forge-2.2.0.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from InventoryProfilesNext-forge-1.20-1.10.10.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from deeperdarker-forge-1.20.1-1.3.2.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from architectury-9.2.14-forge.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from tru.e-ending-v1.1.0c.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from AI-Improvements-1.20-0.5.2.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterEndIsland-1.20-Forge-2.0.6.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from framework-forge-1.20.1-0.6.27.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Towns-and-Towers-1.12-Fabric+Forge.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterMineshafts-1.20-Forge-4.0.4.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from PlayerRevive_FORGE_v2.0.27_mc1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from NekosEnchantedBooks-1.20.1-1.8.0.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterJungleTemples-1.20-Forge-2.0.5.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from retrodamageindicators-1.0.1.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from trashslot-forge-1.20-15.1.0.jar, it does not contain dependency information. [02oct2024 16:28:49.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from nomoportals-1.20.1-5.8.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from rechiseled-1.1.6-forge-mc1.20.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from xlpackets-1.18.2-2.1.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from jei-1.20.1-forge-15.19.5.99.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from AttributeFix-Forge-1.20.1-21.0.4.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from caelus-forge-3.2.0+1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from obscure_api-15.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from waystones-forge-1.20-14.1.5.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Clumps-forge-1.20.1-12.0.0.4.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from ppfluids-1.20.1-2.0.1.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from ItemBorders-1.20.1-forge-1.2.1.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from YungsBetterDesertTemples-1.20-Forge-3.0.3.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Terralith_1.20.x_v2.5.4.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fusion-1.1.1-forge-mc1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from CraftTweaker-forge-1.20.1-14.0.43.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from watut-forge-1.20.1-1.1.3.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from miningmaster-1.20.1-4.1.3.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from genshinstrument-1.20-1.20.1-4.0.2.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from forge-1.20.1-47.3.10-universal.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from TravelersTitles-1.20-Forge-4.0.2.jar, it does not contain dependency information. [02oct2024 16:28:49.842] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from DungeonsArise-1.20.x-2.1.58-release.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from server-1.20.1-20230612.114412-srg.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from voicechat-forge-1.20.1-2.5.22.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from simplyswords-forge-1.56.0-1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from libIPN-forge-1.20-4.0.2.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from EnchantmentDescriptions-Forge-1.20.1-17.1.18.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from ItemPhysicLite_FORGE_v1.6.5_mc1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Necronomicon-Forge-1.4.2.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Jade-1.20.1-forge-11.11.1.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from CreativeCore_FORGE_v2.12.15_mc1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from hostile-mobs-improve-over-time-1.9.1.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from easy-villagers-forge-1.20.1-1.1.23.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Iceberg-1.20.1-forge-1.1.21.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fuze_relics-1.20.1-1.0.9.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from LegendaryTooltips-1.20.1-forge-1.4.5.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Xaeros_Minimap_24.4.0_Forge_1.20.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from [1.20.1] SecurityCraft v1.9.10.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from StorageDrawers-1.20.1-12.7.2.jar, it does not contain dependency information. [02oct2024 16:28:49.843] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Armor of the Ages-forge-1.20.1-1.2.1.jar, it does not contain dependency information. [02oct2024 16:28:49.844] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from armourersworkshop-forge-1.20.1-3.0.0-beta.18.jar, it does not contain dependency information. [02oct2024 16:28:49.844] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from inventoryhud.forge.1.20.1-3.4.26.jar, it does not contain dependency information. [02oct2024 16:28:49.844] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from coroutil-forge-1.20.1-1.3.7.jar, it does not contain dependency information. [02oct2024 16:28:49.844] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from appleskin-forge-mc1.20.1-2.5.1.jar, it does not contain dependency information. [02oct2024 16:28:49.844] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from alexsdelight-1.5.jar, it does not contain dependency information. [02oct2024 16:28:49.844] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from lootr-forge-1.20-0.7.34.89.jar, it does not contain dependency information. [02oct2024 16:28:49.844] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from ferritecore-6.0.1-forge.jar, it does not contain dependency information. [02oct2024 16:28:49.844] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from Aquaculture-1.20.1-2.5.2.jar, it does not contain dependency information. [02oct2024 16:28:49.844] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from immersive_melodies-0.3.0+1.20.1-forge.jar, it does not contain dependency information. [02oct2024 16:28:49.844] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from aquamirae-6.API15.jar, it does not contain dependency information. [02oct2024 16:28:49.844] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from mclanguage-1.20.1-47.3.10.jar, it does not contain dependency information. [02oct2024 16:28:49.844] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from javafmllanguage-1.20.1-47.3.10.jar, it does not contain dependency information. [02oct2024 16:28:49.844] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fmlcore-1.20.1-47.3.10.jar, it does not contain dependency information. [02oct2024 16:28:49.844] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from lowcodelanguage-1.20.1-47.3.10.jar, it does not contain dependency information. [02oct2024 16:28:49.881] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.881] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file expandability-forge-9.0.4.jar with {expandability} mods - versions {9.0.4} [02oct2024 16:28:49.882] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.882] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.3.5.jar with {mixinextras} mods - versions {0.3.5} [02oct2024 16:28:49.893] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.894] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.2.1-beta.2.jar with {mixinextras} mods - versions {0.2.1-beta.2} [02oct2024 16:28:49.894] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.895] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.3.5.jar with {mixinextras} mods - versions {0.3.5} [02oct2024 16:28:49.898] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.898] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file kffmod-4.11.0.jar with {kotlinforforge} mods - versions {4.11.0} [02oct2024 16:28:49.926] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.927] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.3.6.jar with {mixinextras} mods - versions {0.3.6} [02oct2024 16:28:49.927] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.928] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.3.6.jar with {mixinextras} mods - versions {0.3.6} [02oct2024 16:28:49.930] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.930] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file kuma-api-forge-20.1.8+1.20.1.jar with {kuma_api} mods - versions {20.1.8} [02oct2024 16:28:49.933] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.933] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file resourcefullib-forge-1.20.1-2.1.20.jar with {resourcefullib} mods - versions {2.1.20} [02oct2024 16:28:49.936] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.936] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.2.0.jar with {mixinextras} mods - versions {0.2.0} [02oct2024 16:28:49.937] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.937] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.4.0.jar with {mixinextras} mods - versions {0.4.0} [02oct2024 16:28:49.938] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.938] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.3.6.jar with {mixinextras} mods - versions {0.3.6} [02oct2024 16:28:49.938] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.939] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinsquared-forge-0.1.1.jar with {mixinsquared} mods - versions {0.1.1} [02oct2024 16:28:49.939] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.940] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.3.5.jar with {mixinextras} mods - versions {0.3.5} [02oct2024 16:28:49.941] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.941] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file puzzlesaccessapi-forge-8.0.7.jar with {puzzlesaccessapi} mods - versions {8.0.7} [02oct2024 16:28:49.942] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.942] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file conditional-mixin-forge-0.6.2.jar with {conditional_mixin} mods - versions {0.6.2} [02oct2024 16:28:49.943] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.943] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.3.5.jar with {mixinextras} mods - versions {0.3.5} [02oct2024 16:28:49.944] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.944] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinsquared-forge-0.1.2-beta.4.jar with {mixinsquared} mods - versions {0.1.2-beta.4} [02oct2024 16:28:49.949] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.949] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.3.2.jar with {mixinextras} mods - versions {0.3.2} [02oct2024 16:28:49.950] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.950] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.3.5.jar with {mixinextras} mods - versions {0.3.5} [02oct2024 16:28:49.953] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:49.953] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.3.5.jar with {mixinextras} mods - versions {0.3.5} [02oct2024 16:28:49.957] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from imageio-core-3.10.0.jar, it does not contain dependency information. [02oct2024 16:28:49.957] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from imageio-webp-3.10.0.jar, it does not contain dependency information. [02oct2024 16:28:49.958] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from imageio-metadata-3.10.0.jar, it does not contain dependency information. [02oct2024 16:28:49.958] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from common-lang-3.10.0.jar, it does not contain dependency information. [02oct2024 16:28:49.958] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from common-io-3.10.0.jar, it does not contain dependency information. [02oct2024 16:28:49.958] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from common-image-3.10.0.jar, it does not contain dependency information. [02oct2024 16:28:49.958] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from json-0.2.1.jar, it does not contain dependency information. [02oct2024 16:28:49.958] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from gson-0.2.1.jar, it does not contain dependency information. [02oct2024 16:28:49.963] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from NanoLiveConfig-1.2.0.jar, it does not contain dependency information. [02oct2024 16:28:49.963] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from kfflang-4.11.0.jar, it does not contain dependency information. [02oct2024 16:28:49.963] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from kfflib-4.11.0.jar, it does not contain dependency information. [02oct2024 16:28:49.963] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from kffmod-4.11.0.jar, it does not contain dependency information. [02oct2024 16:28:49.963] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from yabn-1.0.3.jar, it does not contain dependency information. [02oct2024 16:28:49.963] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from bytecodecs-1.0.2.jar, it does not contain dependency information. [02oct2024 16:28:49.963] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from jgrapht-core-1.5.2.jar, it does not contain dependency information. [02oct2024 16:28:49.963] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from jheaps-0.14.jar, it does not contain dependency information. [02oct2024 16:28:49.963] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from apfloat-1.10.1.jar, it does not contain dependency information. [02oct2024 16:28:49.968] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from jankson-1.2.3.jar, it does not contain dependency information. [02oct2024 16:28:49.968] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from kuma-api-forge-20.1.8+1.20.1.jar, it does not contain dependency information. [02oct2024 16:28:49.970] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from jcpp-1.4.14.jar, it does not contain dependency information. [02oct2024 16:28:49.970] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from mclib-20.jar, it does not contain dependency information. [02oct2024 16:28:49.979] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from conditional-mixin-forge-0.6.2.jar, it does not contain dependency information. [02oct2024 16:28:49.982] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from snakeyaml-2.2.jar, it does not contain dependency information. [02oct2024 16:28:49.986] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from jankson-1.2.1.jar, it does not contain dependency information. [02oct2024 16:28:49.986] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from jankson-1.2.1.jar, it does not contain dependency information. [02oct2024 16:28:49.988] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.1.1.jar, it does not contain dependency information. [02oct2024 16:28:49.988] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.3.5.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.2.1-beta.2.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.3.5.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.3.6.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.3.6.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from yabn-1.0.3.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from bytecodecs-1.0.2.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.2.0.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.4.0.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.3.6.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinSquared-0.1.1.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.3.5.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.3.5.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinSquared-0.1.2-beta.4.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.3.2.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.3.5.jar, it does not contain dependency information. [02oct2024 16:28:49.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from MixinExtras-0.3.5.jar, it does not contain dependency information. [02oct2024 16:28:50.005] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.005] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file kuma-api-forge-20.1.8+1.20.1.jar with {kuma_api} mods - versions {20.1.8} [02oct2024 16:28:50.015] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.016] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file puzzlesaccessapi-forge-8.0.7.jar with {puzzlesaccessapi} mods - versions {8.0.7} [02oct2024 16:28:50.017] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.017] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file expandability-forge-9.0.4.jar with {expandability} mods - versions {9.0.4} [02oct2024 16:28:50.022] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.022] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file kffmod-4.11.0.jar with {kotlinforforge} mods - versions {4.11.0} [02oct2024 16:28:50.036] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.037] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file conditional-mixin-forge-0.6.2.jar with {conditional_mixin} mods - versions {0.6.2} [02oct2024 16:28:50.041] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.042] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.4.0.jar with {mixinextras} mods - versions {0.4.0} [02oct2024 16:28:50.042] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.042] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinsquared-forge-0.1.2-beta.4.jar with {mixinsquared} mods - versions {0.1.2-beta.4} [02oct2024 16:28:50.069] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.070] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file resourcefullib-forge-1.20.1-2.1.20.jar with {resourcefullib} mods - versions {2.1.20} [02oct2024 16:28:50.071] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: C:\Games\Server\mods\resourcefullib-forge-1.20.1-2.1.29.jar [02oct2024 16:28:50.071] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 29 dependencies adding them to mods collection [02oct2024 16:28:50.073] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\CyclopsCore-1.20.1-1.19.5.jar [02oct2024 16:28:50.074] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CyclopsCore-1.20.1-1.19.5.jar with {cyclopscore} mods - versions {1.19.5} [02oct2024 16:28:50.076] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\CyclopsCore-1.20.1-1.19.5.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.076] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\SkyVillages-1.0.4-1.19.2-1.20.1-forge-release.jar [02oct2024 16:28:50.076] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file SkyVillages-1.0.4-1.19.2-1.20.1-forge-release.jar with {skyvillages} mods - versions {1.0.4} [02oct2024 16:28:50.076] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\SkyVillages-1.0.4-1.19.2-1.20.1-forge-release.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[43,)]] [02oct2024 16:28:50.077] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.077] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file kuma-api-forge-20.1.8+1.20.1.jar with {kuma_api} mods - versions {20.1.8} [02oct2024 16:28:50.077] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.077] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterDungeons-1.20-Forge-4.0.4.jar [02oct2024 16:28:50.077] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterDungeons-1.20-Forge-4.0.4.jar with {betterdungeons} mods - versions {1.20-Forge-4.0.4} [02oct2024 16:28:50.077] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\YungsBetterDungeons-1.20-Forge-4.0.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.077] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\embeddiumplus-1.20.1-v1.2.13.jar [02oct2024 16:28:50.077] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file embeddiumplus-1.20.1-v1.2.13.jar with {embeddiumplus} mods - versions {1.2.13} [02oct2024 16:28:50.077] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\embeddiumplus-1.20.1-v1.2.13.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.077] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\supermartijn642configlib-1.1.8-forge-mc1.20.jar [02oct2024 16:28:50.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file supermartijn642configlib-1.1.8-forge-mc1.20.jar with {supermartijn642configlib} mods - versions {1.1.8} [02oct2024 16:28:50.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\supermartijn642configlib-1.1.8-forge-mc1.20.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\alexsmobs-1.22.9.jar [02oct2024 16:28:50.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file alexsmobs-1.22.9.jar with {alexsmobs} mods - versions {1.22.9} [02oct2024 16:28:50.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\alexsmobs-1.22.9.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\geckolib-forge-1.20.1-4.4.9.jar [02oct2024 16:28:50.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file geckolib-forge-1.20.1-4.4.9.jar with {geckolib} mods - versions {4.4.9} [02oct2024 16:28:50.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\geckolib-forge-1.20.1-4.4.9.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\player-animation-lib-forge-1.0.2-rc1+1.20.jar [02oct2024 16:28:50.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file player-animation-lib-forge-1.0.2-rc1+1.20.jar with {playeranimator} mods - versions {1.0.2-rc1+1.20} [02oct2024 16:28:50.079] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\player-animation-lib-forge-1.0.2-rc1+1.20.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46.0.0,)]] [02oct2024 16:28:50.079] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar [02oct2024 16:28:50.079] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar with {betteroceanmonuments} mods - versions {1.20-Forge-3.0.4} [02oct2024 16:28:50.079] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.079] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\aquaculture_delight_1.0.0_forge_1.20.1.jar [02oct2024 16:28:50.079] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file aquaculture_delight_1.0.0_forge_1.20.1.jar with {aquaculturedelight} mods - versions {1.0.0} [02oct2024 16:28:50.079] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\aquaculture_delight_1.0.0_forge_1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.079] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Incendium_1.20.x_v5.3.5.jar [02oct2024 16:28:50.080] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Incendium_1.20.x_v5.3.5.jar with {incendium} mods - versions {5.3.5} [02oct2024 16:28:50.080] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Incendium_1.20.x_v5.3.5.jar with languages [LanguageSpec[languageName=lowcodefml, acceptedVersions=[1,)]] [02oct2024 16:28:50.080] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\netmusic-1.20.1-1.1.3.jar [02oct2024 16:28:50.080] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file netmusic-1.20.1-1.1.3.jar with {netmusic} mods - versions {0.0NONE} [02oct2024 16:28:50.080] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\netmusic-1.20.1-1.1.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.080] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ScorchedBrass-0.0.3-1.20.1.jar [02oct2024 16:28:50.080] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ScorchedBrass-0.0.3-1.20.1.jar with {scbrass} mods - versions {0.0.1} [02oct2024 16:28:50.080] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\ScorchedBrass-0.0.3-1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[40,)]] [02oct2024 16:28:50.080] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\sophisticatedcore-1.20.1-0.6.29.697.jar [02oct2024 16:28:50.081] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file sophisticatedcore-1.20.1-0.6.29.697.jar with {sophisticatedcore} mods - versions {0.6.29.697} [02oct2024 16:28:50.081] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\sophisticatedcore-1.20.1-0.6.29.697.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.081] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\InsaneLib-1.15.0-mc1.20.1.jar [02oct2024 16:28:50.081] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file InsaneLib-1.15.0-mc1.20.1.jar with {insanelib} mods - versions {1.15.0} [02oct2024 16:28:50.081] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\InsaneLib-1.15.0-mc1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.081] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\letsdo-API-forge-1.2.15-forge.jar [02oct2024 16:28:50.081] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file letsdo-API-forge-1.2.15-forge.jar with {doapi,terraform} mods - versions {1.2.15,7.0.1} [02oct2024 16:28:50.081] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\letsdo-API-forge-1.2.15-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.081] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\EverlastingSkins-1.20.1-1.0.jar [02oct2024 16:28:50.082] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file EverlastingSkins-1.20.1-1.0.jar with {everlastingskins} mods - versions {1.0} [02oct2024 16:28:50.082] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\EverlastingSkins-1.20.1-1.0.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[31,)]] [02oct2024 16:28:50.082] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\XaerosWorldMap_1.39.0_Forge_1.20.jar [02oct2024 16:28:50.082] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file XaerosWorldMap_1.39.0_Forge_1.20.jar with {xaeroworldmap} mods - versions {1.39.0} [02oct2024 16:28:50.082] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\XaerosWorldMap_1.39.0_Forge_1.20.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,48)]] [02oct2024 16:28:50.084] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod xaeroworldmap_core with Javascript path META-INF/xaeroworldmap_core.js [02oct2024 16:28:50.084] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod META-INF/xaeroworldmap_core.js [02oct2024 16:28:50.084] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\citadel-2.6.0-1.20.1.jar [02oct2024 16:28:50.084] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file citadel-2.6.0-1.20.1.jar with {citadel} mods - versions {2.6.0} [02oct2024 16:28:50.084] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\citadel-2.6.0-1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.084] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Prism-1.20.1-forge-1.0.5.jar [02oct2024 16:28:50.084] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Prism-1.20.1-forge-1.0.5.jar with {prism} mods - versions {1.0.5} [02oct2024 16:28:50.084] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Prism-1.20.1-forge-1.0.5.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.084] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\EvilCraft-1.20.1-1.2.47.jar [02oct2024 16:28:50.084] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file EvilCraft-1.20.1-1.2.47.jar with {evilcraft,evilcraftcompat} mods - versions {1.2.47,1.2.47} [02oct2024 16:28:50.084] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\EvilCraft-1.20.1-1.2.47.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.085] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Powah-5.0.7.jar [02oct2024 16:28:50.085] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Powah-5.0.7.jar with {powah} mods - versions {5.0.7} [02oct2024 16:28:50.085] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Powah-5.0.7.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[36,)]] [02oct2024 16:28:50.085] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsApi-1.20-Forge-4.0.5.jar [02oct2024 16:28:50.085] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsApi-1.20-Forge-4.0.5.jar with {yungsapi} mods - versions {1.20-Forge-4.0.5} [02oct2024 16:28:50.085] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\YungsApi-1.20-Forge-4.0.5.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.085] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\rechiseled_chipped-1.1.jar [02oct2024 16:28:50.085] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rechiseled_chipped-1.1.jar with {rechiseled_chipped} mods - versions {1.1} [02oct2024 16:28:50.085] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\rechiseled_chipped-1.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.085] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Bookshelf-Forge-1.20.1-20.2.13.jar [02oct2024 16:28:50.086] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Bookshelf-Forge-1.20.1-20.2.13.jar with {bookshelf} mods - versions {20.2.13} [02oct2024 16:28:50.086] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Bookshelf-Forge-1.20.1-20.2.13.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.086] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\letsdo-vinery-forge-1.4.28.jar [02oct2024 16:28:50.086] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file letsdo-vinery-forge-1.4.28.jar with {vinery} mods - versions {1.4.28} [02oct2024 16:28:50.086] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\letsdo-vinery-forge-1.4.28.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.086] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\sophisticatedbackpacks-1.20.1-3.20.9.1103.jar [02oct2024 16:28:50.086] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file sophisticatedbackpacks-1.20.1-3.20.9.1103.jar with {sophisticatedbackpacks} mods - versions {3.20.9.1103} [02oct2024 16:28:50.086] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\sophisticatedbackpacks-1.20.1-3.20.9.1103.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.086] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\GrimoireOfGaia4-1.20.1-4.0.0-alpha.11.jar [02oct2024 16:28:50.086] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file GrimoireOfGaia4-1.20.1-4.0.0-alpha.11.jar with {grimoireofgaia} mods - versions {4.0.0-alpha.11} [02oct2024 16:28:50.086] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\GrimoireOfGaia4-1.20.1-4.0.0-alpha.11.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.086] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\rch-supplementaries-compat-forge-1.0.0.jar [02oct2024 16:28:50.087] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rch-supplementaries-compat-forge-1.0.0.jar with {rch_supplementaries_compat} mods - versions {1.0.0} [02oct2024 16:28:50.087] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\rch-supplementaries-compat-forge-1.0.0.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.087] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\PickUpNotifier-v8.0.0-1.20.1-Forge.jar [02oct2024 16:28:50.087] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file PickUpNotifier-v8.0.0-1.20.1-Forge.jar with {pickupnotifier} mods - versions {8.0.0} [02oct2024 16:28:50.087] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\PickUpNotifier-v8.0.0-1.20.1-Forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.087] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\balm-forge-1.20.1-7.3.9-all.jar [02oct2024 16:28:50.087] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file balm-forge-1.20.1-7.3.9-all.jar with {balm} mods - versions {7.3.9} [02oct2024 16:28:50.087] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\balm-forge-1.20.1-7.3.9-all.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.087] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\FpsReducer2-forge-1.20-2.5.jar [02oct2024 16:28:50.087] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FpsReducer2-forge-1.20-2.5.jar with {fpsreducer} mods - versions {1.20-2.5} [02oct2024 16:28:50.087] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\FpsReducer2-forge-1.20-2.5.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.087] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\JustEnoughResources-1.20.1-1.4.0.247.jar [02oct2024 16:28:50.088] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file JustEnoughResources-1.20.1-1.4.0.247.jar with {jeresources} mods - versions {1.4.0.247} [02oct2024 16:28:50.088] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\JustEnoughResources-1.20.1-1.4.0.247.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.088] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\projectile_damage-forge-3.2.2+1.20.1.jar [02oct2024 16:28:50.088] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file projectile_damage-forge-3.2.2+1.20.1.jar with {projectile_damage} mods - versions {3.2.2+1.20.1} [02oct2024 16:28:50.088] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\projectile_damage-forge-3.2.2+1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[39,)]] [02oct2024 16:28:50.088] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ShieldExpansion-1.20.1-1.1.7a.jar [02oct2024 16:28:50.088] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ShieldExpansion-1.20.1-1.1.7a.jar with {shieldexp} mods - versions {1.1.7a} [02oct2024 16:28:50.088] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\ShieldExpansion-1.20.1-1.1.7a.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.088] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\cloth-config-11.1.136-forge.jar [02oct2024 16:28:50.088] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cloth-config-11.1.136-forge.jar with {cloth_config} mods - versions {11.1.136} [02oct2024 16:28:50.089] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\cloth-config-11.1.136-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[34,)]] [02oct2024 16:28:50.089] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar [02oct2024 16:28:50.089] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar with {betterfortresses} mods - versions {1.20-Forge-2.0.6} [02oct2024 16:28:50.089] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.089] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\dummmmmmy-1.20-2.0.2.jar [02oct2024 16:28:50.089] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file dummmmmmy-1.20-2.0.2.jar with {dummmmmmy} mods - versions {1.20-2.0.2} [02oct2024 16:28:50.089] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\dummmmmmy-1.20-2.0.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[40,)]] [02oct2024 16:28:50.089] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Emojiful-Forge-1.20.1-4.2.0.jar [02oct2024 16:28:50.089] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Emojiful-Forge-1.20.1-4.2.0.jar with {emojiful} mods - versions {4.2.0} [02oct2024 16:28:50.089] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Emojiful-Forge-1.20.1-4.2.0.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[43,)]] [02oct2024 16:28:50.089] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\supplementaries-1.20-2.8.17.jar [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file supplementaries-1.20-2.8.17.jar with {supplementaries} mods - versions {1.20-2.8.17} [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\supplementaries-1.20-2.8.17.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[40,)]] [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\twilightforest-1.20.1-4.3.2508-universal.jar [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file twilightforest-1.20.1-4.3.2508-universal.jar with {twilightforest} mods - versions {4.3.2508} [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\twilightforest-1.20.1-4.3.2508-universal.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod seed with Javascript path META-INF/asm/seed.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod maprendercontext with Javascript path META-INF/asm/maprendercontext.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod music with Javascript path META-INF/asm/music.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod multipart with Javascript path META-INF/asm/multipart.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod foliage with Javascript path META-INF/asm/foliage.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod mount with Javascript path META-INF/asm/mount.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod book with Javascript path META-INF/asm/book.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod conquered with Javascript path META-INF/asm/conquered.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod reach with Javascript path META-INF/asm/reach.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod shroom with Javascript path META-INF/asm/shroom.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod cloud with Javascript path META-INF/asm/cloud.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod lead with Javascript path META-INF/asm/lead.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod META-INF/asm/seed.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod META-INF/asm/maprendercontext.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod META-INF/asm/music.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod META-INF/asm/multipart.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod META-INF/asm/foliage.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod META-INF/asm/mount.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod META-INF/asm/book.js [02oct2024 16:28:50.090] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod META-INF/asm/conquered.js [02oct2024 16:28:50.091] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod META-INF/asm/reach.js [02oct2024 16:28:50.091] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod META-INF/asm/shroom.js [02oct2024 16:28:50.091] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod META-INF/asm/cloud.js [02oct2024 16:28:50.091] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod META-INF/asm/lead.js [02oct2024 16:28:50.091] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\athena-forge-1.20.1-3.1.2.jar [02oct2024 16:28:50.091] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file athena-forge-1.20.1-3.1.2.jar with {athena} mods - versions {3.1.2} [02oct2024 16:28:50.091] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\athena-forge-1.20.1-3.1.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.091] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\embeddium-0.3.31+mc1.20.1.jar [02oct2024 16:28:50.091] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file embeddium-0.3.31+mc1.20.1.jar with {embeddium,rubidium} mods - versions {0.3.31+mc1.20.1,0.7.1} [02oct2024 16:28:50.091] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\embeddium-0.3.31+mc1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.091] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\PrettyPipes-1.15.0-all.jar [02oct2024 16:28:50.091] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file PrettyPipes-1.15.0-all.jar with {prettypipes} mods - versions {1.15.0} [02oct2024 16:28:50.091] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\PrettyPipes-1.15.0-all.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.091] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\AdvancementPlaques-1.20.1-forge-1.6.7.jar [02oct2024 16:28:50.092] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AdvancementPlaques-1.20.1-forge-1.6.7.jar with {advancementplaques} mods - versions {1.6.7} [02oct2024 16:28:50.092] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\AdvancementPlaques-1.20.1-forge-1.6.7.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.092] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Chipped-forge-1.20.1-3.0.6.jar [02oct2024 16:28:50.092] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Chipped-forge-1.20.1-3.0.6.jar with {chipped} mods - versions {3.0.6} [02oct2024 16:28:50.092] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Chipped-forge-1.20.1-3.0.6.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.092] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\FarmersDelight-1.20.1-1.2.4.jar [02oct2024 16:28:50.092] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FarmersDelight-1.20.1-1.2.4.jar with {farmersdelight} mods - versions {1.20.1-1.2.4} [02oct2024 16:28:50.092] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\FarmersDelight-1.20.1-1.2.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.092] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\terramity-0.9.4.1-forge-1.20.1.jar [02oct2024 16:28:50.092] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file terramity-0.9.4.1-forge-1.20.1.jar with {terramity} mods - versions {0.9.4.1} [02oct2024 16:28:50.092] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\terramity-0.9.4.1-forge-1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.092] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ImmersiveUI-FORGE-0.2.2.jar [02oct2024 16:28:50.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ImmersiveUI-FORGE-0.2.2.jar with {immersiveui} mods - versions {0.2.2} [02oct2024 16:28:50.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\ImmersiveUI-FORGE-0.2.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[4,)]] [02oct2024 16:28:50.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\fast-ip-ping-v1.0.5-mc1.20.4-forge.jar [02oct2024 16:28:50.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file fast-ip-ping-v1.0.5-mc1.20.4-forge.jar with {fastipping} mods - versions {1.0.5} [02oct2024 16:28:50.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\fast-ip-ping-v1.0.5-mc1.20.4-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[31,)]] [02oct2024 16:28:50.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar [02oct2024 16:28:50.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar with {supermartijn642corelib} mods - versions {1.1.17+a} [02oct2024 16:28:50.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBridges-1.20-Forge-4.0.3.jar [02oct2024 16:28:50.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBridges-1.20-Forge-4.0.3.jar with {yungsbridges} mods - versions {1.20-Forge-4.0.3} [02oct2024 16:28:50.093] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\YungsBridges-1.20-Forge-4.0.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.094] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\born_in_chaos_[Forge]1.20.1_1.3.1.jar [02oct2024 16:28:50.094] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file born_in_chaos_[Forge]1.20.1_1.3.1.jar with {born_in_chaos_v1} mods - versions {1.0.0} [02oct2024 16:28:50.094] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\born_in_chaos_[Forge]1.20.1_1.3.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.094] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\jerintegration-5.5.0.jar [02oct2024 16:28:50.094] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file jerintegration-5.5.0.jar with {jerintegration} mods - versions {5.5.0} [02oct2024 16:28:50.094] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\jerintegration-5.5.0.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.094] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\resourcefulconfig-forge-1.20.1-2.1.2.jar [02oct2024 16:28:50.094] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file resourcefulconfig-forge-1.20.1-2.1.2.jar with {resourcefulconfig} mods - versions {2.1.2} [02oct2024 16:28:50.094] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\resourcefulconfig-forge-1.20.1-2.1.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.094] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\lionfishapi-1.9.jar [02oct2024 16:28:50.094] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file lionfishapi-1.9.jar with {lionfishapi} mods - versions {1.9} [02oct2024 16:28:50.095] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\lionfishapi-1.9.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.095] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\curios-forge-5.10.0+1.20.1.jar [02oct2024 16:28:50.095] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file curios-forge-5.10.0+1.20.1.jar with {curios} mods - versions {5.10.0+1.20.1} [02oct2024 16:28:50.095] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\curios-forge-5.10.0+1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]] [02oct2024 16:28:50.095] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\L_Enders_Cataclysm-1.99.6-1.20.1.jar [02oct2024 16:28:50.095] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file L_Enders_Cataclysm-1.99.6-1.20.1.jar with {cataclysm} mods - versions {1.99.5} [02oct2024 16:28:50.095] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\L_Enders_Cataclysm-1.99.6-1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[36,)]] [02oct2024 16:28:50.095] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\touhoulittlemaid-1.20.1-release-1.1.12-hotfix2.jar [02oct2024 16:28:50.095] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file touhoulittlemaid-1.20.1-release-1.1.12-hotfix2.jar with {touhou_little_maid} mods - versions {1.1.12-hotfix2} [02oct2024 16:28:50.095] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\touhoulittlemaid-1.20.1-release-1.1.12-hotfix2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.095] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\armorpointspp-forge-1.20-3.1.1.jar [02oct2024 16:28:50.096] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file armorpointspp-forge-1.20-3.1.1.jar with {armorpointspp} mods - versions {1.20-3.1.1} [02oct2024 16:28:50.096] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\armorpointspp-forge-1.20-3.1.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.096] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Patchouli-1.20.1-84-FORGE (1).jar [02oct2024 16:28:50.096] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Patchouli-1.20.1-84-FORGE (1).jar with {patchouli} mods - versions {1.20.1-84-FORGE} [02oct2024 16:28:50.096] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Patchouli-1.20.1-84-FORGE (1).jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.096] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\oculus-mc1.20.1-1.7.0.jar [02oct2024 16:28:50.096] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file oculus-mc1.20.1-1.7.0.jar with {oculus} mods - versions {1.7.0} [02oct2024 16:28:50.096] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\oculus-mc1.20.1-1.7.0.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [02oct2024 16:28:50.096] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\right-click-harvest-3.2.3+1.20.1-forge.jar [02oct2024 16:28:50.096] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file right-click-harvest-3.2.3+1.20.1-forge.jar with {rightclickharvest} mods - versions {3.2.3+1.20.1-forge} [02oct2024 16:28:50.096] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\right-click-harvest-3.2.3+1.20.1-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[45,)]] [02oct2024 16:28:50.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\advancednetherite-forge-2.1.3-1.20.1.jar [02oct2024 16:28:50.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file advancednetherite-forge-2.1.3-1.20.1.jar with {advancednetherite} mods - versions {2.1.3} [02oct2024 16:28:50.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\advancednetherite-forge-2.1.3-1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\camera-forge-1.20.1-1.0.14.jar [02oct2024 16:28:50.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file camera-forge-1.20.1-1.0.14.jar with {camera} mods - versions {1.20.1-1.0.14} [02oct2024 16:28:50.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\camera-forge-1.20.1-1.0.14.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [02oct2024 16:28:50.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\dungeons-and-taverns-3.0.3.f.jar [02oct2024 16:28:50.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file dungeons-and-taverns-3.0.3.f.jar with {mr_dungeons_andtaverns} mods - versions {3.0.3.f} [02oct2024 16:28:50.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\dungeons-and-taverns-3.0.3.f.jar with languages [LanguageSpec[languageName=lowcodefml, acceptedVersions=[40,)]] [02oct2024 16:28:50.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ScorchedGuns-0.3.2.5-1.20.1.jar [02oct2024 16:28:50.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ScorchedGuns-0.3.2.5-1.20.1.jar with {scguns} mods - versions {0.3.2.5} [02oct2024 16:28:50.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\ScorchedGuns-0.3.2.5-1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[40,)]] [02oct2024 16:28:50.097] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\tombstone-1.20.1-8.7.4.jar [02oct2024 16:28:50.098] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file tombstone-1.20.1-8.7.4.jar with {tombstone} mods - versions {8.7.4} [02oct2024 16:28:50.098] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\tombstone-1.20.1-8.7.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.098] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterStrongholds-1.20-Forge-4.0.3.jar [02oct2024 16:28:50.098] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterStrongholds-1.20-Forge-4.0.3.jar with {betterstrongholds} mods - versions {1.20-Forge-4.0.3} [02oct2024 16:28:50.098] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\YungsBetterStrongholds-1.20-Forge-4.0.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.098] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\CustomNPCs-1.20.1-GBPort-Unofficial-20240824.jar [02oct2024 16:28:50.098] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CustomNPCs-1.20.1-GBPort-Unofficial-20240824.jar with {customnpcs} mods - versions {1.20.1.20240824} [02oct2024 16:28:50.098] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\CustomNPCs-1.20.1-GBPort-Unofficial-20240824.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.098] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\resourcefullib-forge-1.20.1-2.1.29.jar [02oct2024 16:28:50.098] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file resourcefullib-forge-1.20.1-2.1.29.jar with {resourcefullib} mods - versions {2.1.29} [02oct2024 16:28:50.098] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\resourcefullib-forge-1.20.1-2.1.29.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YouShallNotSpawn-forge-1.20.x-2.0.1.jar [02oct2024 16:28:50.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YouShallNotSpawn-forge-1.20.x-2.0.1.jar with {ysns} mods - versions {2.0.1} [02oct2024 16:28:50.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\YouShallNotSpawn-forge-1.20.x-2.0.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[37,)]] [02oct2024 16:28:50.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\yuushya-1.20.1-forge-2.2.0.jar [02oct2024 16:28:50.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file yuushya-1.20.1-forge-2.2.0.jar with {yuushya} mods - versions {2.2.0} [02oct2024 16:28:50.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\yuushya-1.20.1-forge-2.2.0.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\InventoryProfilesNext-forge-1.20-1.10.10.jar [02oct2024 16:28:50.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file InventoryProfilesNext-forge-1.20-1.10.10.jar with {inventoryprofilesnext} mods - versions {1.10.10} [02oct2024 16:28:50.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\InventoryProfilesNext-forge-1.20-1.10.10.jar with languages [LanguageSpec[languageName=kotlinforforge, acceptedVersions=[4.3,)]] [02oct2024 16:28:50.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\architectury-9.2.14-forge.jar [02oct2024 16:28:50.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file architectury-9.2.14-forge.jar with {architectury} mods - versions {9.2.14} [02oct2024 16:28:50.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\architectury-9.2.14-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.099] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\deeperdarker-forge-1.20.1-1.3.2.jar [02oct2024 16:28:50.100] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file deeperdarker-forge-1.20.1-1.3.2.jar with {deeperdarker} mods - versions {1.3.2} [02oct2024 16:28:50.100] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\deeperdarker-forge-1.20.1-1.3.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.100] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\AI-Improvements-1.20-0.5.2.jar [02oct2024 16:28:50.100] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AI-Improvements-1.20-0.5.2.jar with {aiimprovements} mods - versions {0.5.2} [02oct2024 16:28:50.100] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\AI-Improvements-1.20-0.5.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.100] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\tru.e-ending-v1.1.0c.jar [02oct2024 16:28:50.100] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file tru.e-ending-v1.1.0c.jar with {mr_limesplatus_ending} mods - versions {1-v1.1.0c} [02oct2024 16:28:50.100] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\tru.e-ending-v1.1.0c.jar with languages [LanguageSpec[languageName=lowcodefml, acceptedVersions=[40,)]] [02oct2024 16:28:50.100] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.100] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file conditional-mixin-forge-0.6.2.jar with {conditional_mixin} mods - versions {0.6.2} [02oct2024 16:28:50.100] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [LanguageSpec[languageName=javafml, acceptedVersions=[1,)]] [02oct2024 16:28:50.100] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterEndIsland-1.20-Forge-2.0.6.jar [02oct2024 16:28:50.101] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterEndIsland-1.20-Forge-2.0.6.jar with {betterendisland} mods - versions {1.20-Forge-2.0.6} [02oct2024 16:28:50.101] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\YungsBetterEndIsland-1.20-Forge-2.0.6.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.101] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\EnhancedAI-2.5.2-mc1.20.1.jar [02oct2024 16:28:50.101] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file EnhancedAI-2.5.2-mc1.20.1.jar with {enhancedai} mods - versions {2.5.2} [02oct2024 16:28:50.101] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\EnhancedAI-2.5.2-mc1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.101] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\framework-forge-1.20.1-0.6.27.jar [02oct2024 16:28:50.101] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file framework-forge-1.20.1-0.6.27.jar with {framework} mods - versions {0.6.27} [02oct2024 16:28:50.101] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\framework-forge-1.20.1-0.6.27.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[39,)]] [02oct2024 16:28:50.101] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Towns-and-Towers-1.12-Fabric+Forge.jar [02oct2024 16:28:50.102] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Towns-and-Towers-1.12-Fabric+Forge.jar with {t_and_t} mods - versions {0.0NONE} [02oct2024 16:28:50.102] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Towns-and-Towers-1.12-Fabric+Forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[43,)]] [02oct2024 16:28:50.102] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterMineshafts-1.20-Forge-4.0.4.jar [02oct2024 16:28:50.102] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterMineshafts-1.20-Forge-4.0.4.jar with {bettermineshafts} mods - versions {1.20-Forge-4.0.4} [02oct2024 16:28:50.102] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\YungsBetterMineshafts-1.20-Forge-4.0.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.102] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\PlayerRevive_FORGE_v2.0.27_mc1.20.1.jar [02oct2024 16:28:50.102] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file PlayerRevive_FORGE_v2.0.27_mc1.20.1.jar with {playerrevive} mods - versions {2.0.27} [02oct2024 16:28:50.102] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\PlayerRevive_FORGE_v2.0.27_mc1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.102] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\NekosEnchantedBooks-1.20.1-1.8.0.jar [02oct2024 16:28:50.102] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file NekosEnchantedBooks-1.20.1-1.8.0.jar with {nebs} mods - versions {1.8.0} [02oct2024 16:28:50.102] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\NekosEnchantedBooks-1.20.1-1.8.0.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.102] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterJungleTemples-1.20-Forge-2.0.5.jar [02oct2024 16:28:50.103] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterJungleTemples-1.20-Forge-2.0.5.jar with {betterjungletemples} mods - versions {1.20-Forge-2.0.5} [02oct2024 16:28:50.103] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\YungsBetterJungleTemples-1.20-Forge-2.0.5.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.103] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\soulslike-weaponry-1.1.4.4d-1.20.1-forge.jar [02oct2024 16:28:50.103] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file soulslike-weaponry-1.1.4.4d-1.20.1-forge.jar with {soulsweapons} mods - versions {1.1.4.4d-1.20.1-forge}} [02oct2024 16:28:50.103] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\soulslike-weaponry-1.1.4.4d-1.20.1-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[40,)]] [02oct2024 16:28:50.103] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\retrodamageindicators-1.0.1.jar [02oct2024 16:28:50.103] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file retrodamageindicators-1.0.1.jar with {retrodamageindicators} mods - versions {1.0.1} [02oct2024 16:28:50.103] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\retrodamageindicators-1.0.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.103] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\nomoportals-1.20.1-5.8.jar [02oct2024 16:28:50.103] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file nomoportals-1.20.1-5.8.jar with {nomoportals} mods - versions {5.8} [02oct2024 16:28:50.103] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\nomoportals-1.20.1-5.8.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.103] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\trashslot-forge-1.20-15.1.0.jar [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file trashslot-forge-1.20-15.1.0.jar with {trashslot} mods - versions {15.1.0} [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\trashslot-forge-1.20-15.1.0.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\rechiseled-1.1.6-forge-mc1.20.jar [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rechiseled-1.1.6-forge-mc1.20.jar with {rechiseled} mods - versions {1.1.6} [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\rechiseled-1.1.6-forge-mc1.20.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\OctoLib-FORGE-0.4.2+1.20.1.jar [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file OctoLib-FORGE-0.4.2+1.20.1.jar with {octolib} mods - versions {0.4.2} [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\OctoLib-FORGE-0.4.2+1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\jei-1.20.1-forge-15.19.5.99.jar [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file jei-1.20.1-forge-15.19.5.99.jar with {jei} mods - versions {15.19.5.99} [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\jei-1.20.1-forge-15.19.5.99.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\xlpackets-1.18.2-2.1.jar [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file xlpackets-1.18.2-2.1.jar with {xlpackets} mods - versions {1.18.2-2.1} [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\xlpackets-1.18.2-2.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[25,)]] [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\AttributeFix-Forge-1.20.1-21.0.4.jar [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AttributeFix-Forge-1.20.1-21.0.4.jar with {attributefix} mods - versions {21.0.4} [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\AttributeFix-Forge-1.20.1-21.0.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\caelus-forge-3.2.0+1.20.1.jar [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file caelus-forge-3.2.0+1.20.1.jar with {caelus} mods - versions {3.2.0+1.20.1} [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\caelus-forge-3.2.0+1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\obscure_api-15.jar [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file obscure_api-15.jar with {obscure_api} mods - versions {15} [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\obscure_api-15.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\waystones-forge-1.20-14.1.5.jar [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file waystones-forge-1.20-14.1.5.jar with {waystones} mods - versions {14.1.5} [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\waystones-forge-1.20-14.1.5.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.104] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Clumps-forge-1.20.1-12.0.0.4.jar [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Clumps-forge-1.20.1-12.0.0.4.jar with {clumps} mods - versions {12.0.0.4} [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Clumps-forge-1.20.1-12.0.0.4.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]] [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ppfluids-1.20.1-2.0.1.jar [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ppfluids-1.20.1-2.0.1.jar with {ppfluids} mods - versions {2.0.1} [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\ppfluids-1.20.1-2.0.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\artifacts-forge-9.5.13.jar [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file artifacts-forge-9.5.13.jar with {artifacts} mods - versions {9.5.13} [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\artifacts-forge-9.5.13.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ItemBorders-1.20.1-forge-1.2.1.jar [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ItemBorders-1.20.1-forge-1.2.1.jar with {itemborders} mods - versions {1.2.1} [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\ItemBorders-1.20.1-forge-1.2.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YungsBetterDesertTemples-1.20-Forge-3.0.3.jar [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YungsBetterDesertTemples-1.20-Forge-3.0.3.jar with {betterdeserttemples} mods - versions {1.20-Forge-3.0.3} [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\YungsBetterDesertTemples-1.20-Forge-3.0.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.105] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\fusion-1.1.1-forge-mc1.20.1.jar [02oct2024 16:28:50.106] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file fusion-1.1.1-forge-mc1.20.1.jar with {fusion} mods - versions {1.1.1} [02oct2024 16:28:50.106] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\fusion-1.1.1-forge-mc1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.106] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Terralith_1.20.x_v2.5.4.jar [02oct2024 16:28:50.106] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Terralith_1.20.x_v2.5.4.jar with {terralith} mods - versions {2.5.4} [02oct2024 16:28:50.106] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Terralith_1.20.x_v2.5.4.jar with languages [LanguageSpec[languageName=lowcodefml, acceptedVersions=[1,)]] [02oct2024 16:28:50.106] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\CraftTweaker-forge-1.20.1-14.0.43.jar [02oct2024 16:28:50.106] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CraftTweaker-forge-1.20.1-14.0.43.jar with {crafttweaker} mods - versions {14.0.43} [02oct2024 16:28:50.106] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\CraftTweaker-forge-1.20.1-14.0.43.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[39,)]] [02oct2024 16:28:50.106] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\miningmaster-1.20.1-4.1.3.jar [02oct2024 16:28:50.106] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file miningmaster-1.20.1-4.1.3.jar with {miningmaster} mods - versions {4.1.3} [02oct2024 16:28:50.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\miningmaster-1.20.1-4.1.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]] [02oct2024 16:28:50.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\watut-forge-1.20.1-1.1.3.jar [02oct2024 16:28:50.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file watut-forge-1.20.1-1.1.3.jar with {watut} mods - versions {1.20.1-1.1.3} [02oct2024 16:28:50.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\watut-forge-1.20.1-1.1.3.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file puzzlesaccessapi-forge-8.0.7.jar with {puzzlesaccessapi} mods - versions {8.0.7} [02oct2024 16:28:50.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\genshinstrument-1.20-1.20.1-4.0.2.jar [02oct2024 16:28:50.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file genshinstrument-1.20-1.20.1-4.0.2.jar with {genshinstrument} mods - versions {4.0.2} [02oct2024 16:28:50.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\genshinstrument-1.20-1.20.1-4.0.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[0,)]] [02oct2024 16:28:50.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar [02oct2024 16:28:50.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar with {dungeons_arise_seven_seas} mods - versions {1.0.2} [02oct2024 16:28:50.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\DungeonsAriseSevenSeas-1.20.x-1.0.2-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[43,)]] [02oct2024 16:28:50.107] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\libraries\net\minecraftforge\forge\1.20.1-47.3.10\forge-1.20.1-47.3.10-universal.jar [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.10-universal.jar with {forge} mods - versions {47.3.10} [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\libraries\net\minecraftforge\forge\1.20.1-47.3.10\forge-1.20.1-47.3.10-universal.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_method.js [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/method_redirector.js [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\TravelersTitles-1.20-Forge-4.0.2.jar [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file TravelersTitles-1.20-Forge-4.0.2.jar with {travelerstitles} mods - versions {1.20-Forge-4.0.2} [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\TravelersTitles-1.20-Forge-4.0.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\elytratrims-forge-3.4.4+1.20.1.jar [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file elytratrims-forge-3.4.4+1.20.1.jar with {elytratrims} mods - versions {3.4.4} [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\elytratrims-forge-3.4.4+1.20.1.jar with languages [LanguageSpec[languageName=kotlinforforge, acceptedVersions=[1,)]] [02oct2024 16:28:50.108] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\DungeonsArise-1.20.x-2.1.58-release.jar [02oct2024 16:28:50.109] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file DungeonsArise-1.20.x-2.1.58-release.jar with {dungeons_arise} mods - versions {2.1.58-1.20.x} [02oct2024 16:28:50.109] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\DungeonsArise-1.20.x-2.1.58-release.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]] [02oct2024 16:28:50.109] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1} [02oct2024 16:28:50.109] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\libraries\net\minecraft\server\1.20.1-20230612.114412\server-1.20.1-20230612.114412-srg.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] [02oct2024 16:28:50.109] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\EnchantmentDescriptions-Forge-1.20.1-17.1.18.jar [02oct2024 16:28:50.109] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file EnchantmentDescriptions-Forge-1.20.1-17.1.18.jar with {enchdesc} mods - versions {17.1.18} [02oct2024 16:28:50.109] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\EnchantmentDescriptions-Forge-1.20.1-17.1.18.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.109] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\libIPN-forge-1.20-4.0.2.jar [02oct2024 16:28:50.109] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file libIPN-forge-1.20-4.0.2.jar with {libipn} mods - versions {4.0.2} [02oct2024 16:28:50.109] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\libIPN-forge-1.20-4.0.2.jar with languages [LanguageSpec[languageName=kotlinforforge, acceptedVersions=[4.3,)]] [02oct2024 16:28:50.110] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\simplyswords-forge-1.56.0-1.20.1.jar [02oct2024 16:28:50.110] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file simplyswords-forge-1.56.0-1.20.1.jar with {simplyswords} mods - versions {1.56.0-1.20.1} [02oct2024 16:28:50.110] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\simplyswords-forge-1.56.0-1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]] [02oct2024 16:28:50.110] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\voicechat-forge-1.20.1-2.5.22.jar [02oct2024 16:28:50.110] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file voicechat-forge-1.20.1-2.5.22.jar with {voicechat} mods - versions {1.20.1-2.5.22} [02oct2024 16:28:50.110] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\voicechat-forge-1.20.1-2.5.22.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [02oct2024 16:28:50.110] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ItemPhysicLite_FORGE_v1.6.5_mc1.20.1.jar [02oct2024 16:28:50.110] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ItemPhysicLite_FORGE_v1.6.5_mc1.20.1.jar with {itemphysiclite} mods - versions {1.6.5} [02oct2024 16:28:50.110] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\ItemPhysicLite_FORGE_v1.6.5_mc1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.110] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\moonlight-1.20-2.13.1-forge.jar [02oct2024 16:28:50.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file moonlight-1.20-2.13.1-forge.jar with {moonlight} mods - versions {1.20-2.13.1} [02oct2024 16:28:50.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\moonlight-1.20-2.13.1-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[40,)]] [02oct2024 16:28:50.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\bettercombat-forge-1.8.6+1.20.1.jar [02oct2024 16:28:50.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file bettercombat-forge-1.8.6+1.20.1.jar with {bettercombat} mods - versions {1.8.6+1.20.1} [02oct2024 16:28:50.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\bettercombat-forge-1.8.6+1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[39,)]] [02oct2024 16:28:50.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Necronomicon-Forge-1.4.2.jar [02oct2024 16:28:50.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Necronomicon-Forge-1.4.2.jar with {necronomicon} mods - versions {1.4.2} [02oct2024 16:28:50.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Necronomicon-Forge-1.4.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [02oct2024 16:28:50.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Jade-1.20.1-forge-11.11.1.jar [02oct2024 16:28:50.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Jade-1.20.1-forge-11.11.1.jar with {jade} mods - versions {11.11.1+forge} [02oct2024 16:28:50.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Jade-1.20.1-forge-11.11.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\CreativeCore_FORGE_v2.12.15_mc1.20.1.jar [02oct2024 16:28:50.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file CreativeCore_FORGE_v2.12.15_mc1.20.1.jar with {creativecore} mods - versions {2.12.15} [02oct2024 16:28:50.111] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\CreativeCore_FORGE_v2.12.15_mc1.20.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\hostile-mobs-improve-over-time-1.9.1.jar [02oct2024 16:28:50.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file hostile-mobs-improve-over-time-1.9.1.jar with {mr_hostile_mobsimproveovertime} mods - versions {1.9.1} [02oct2024 16:28:50.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\hostile-mobs-improve-over-time-1.9.1.jar with languages [LanguageSpec[languageName=lowcodefml, acceptedVersions=[40,)]] [02oct2024 16:28:50.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file kffmod-4.11.0.jar with {kotlinforforge} mods - versions {4.11.0} [02oct2024 16:28:50.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [LanguageSpec[languageName=kotlinforforge, acceptedVersions=[4,)]] [02oct2024 16:28:50.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\easy-villagers-forge-1.20.1-1.1.23.jar [02oct2024 16:28:50.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file easy-villagers-forge-1.20.1-1.1.23.jar with {easy_villagers} mods - versions {1.20.1-1.1.23} [02oct2024 16:28:50.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\easy-villagers-forge-1.20.1-1.1.23.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [02oct2024 16:28:50.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\fuze_relics-1.20.1-1.0.9.jar [02oct2024 16:28:50.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file fuze_relics-1.20.1-1.0.9.jar with {fuze_relics} mods - versions {1.0.9} [02oct2024 16:28:50.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\fuze_relics-1.20.1-1.0.9.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.112] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Iceberg-1.20.1-forge-1.1.21.jar [02oct2024 16:28:50.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Iceberg-1.20.1-forge-1.1.21.jar with {iceberg} mods - versions {1.1.21} [02oct2024 16:28:50.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Iceberg-1.20.1-forge-1.1.21.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\LegendaryTooltips-1.20.1-forge-1.4.5.jar [02oct2024 16:28:50.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file LegendaryTooltips-1.20.1-forge-1.4.5.jar with {legendarytooltips} mods - versions {1.4.5} [02oct2024 16:28:50.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\LegendaryTooltips-1.20.1-forge-1.4.5.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Xaeros_Minimap_24.4.0_Forge_1.20.jar [02oct2024 16:28:50.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Xaeros_Minimap_24.4.0_Forge_1.20.jar with {xaerominimap} mods - versions {24.4.0} [02oct2024 16:28:50.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Xaeros_Minimap_24.4.0_Forge_1.20.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,48)]] [02oct2024 16:28:50.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod xaerohud_core with Javascript path META-INF/xaerohud_core.js [02oct2024 16:28:50.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod META-INF/xaerohud_core.js [02oct2024 16:28:50.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\[1.20.1] SecurityCraft v1.9.10.jar [02oct2024 16:28:50.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file [1.20.1] SecurityCraft v1.9.10.jar with {securitycraft} mods - versions {1.9.10} [02oct2024 16:28:50.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\[1.20.1] SecurityCraft v1.9.10.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\StorageDrawers-1.20.1-12.7.2.jar [02oct2024 16:28:50.114] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file StorageDrawers-1.20.1-12.7.2.jar with {storagedrawers} mods - versions {12.7.2} [02oct2024 16:28:50.114] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\StorageDrawers-1.20.1-12.7.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.114] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Armor of the Ages-forge-1.20.1-1.2.1.jar [02oct2024 16:28:50.114] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Armor of the Ages-forge-1.20.1-1.2.1.jar with {armoroftheages} mods - versions {1.2.1} [02oct2024 16:28:50.114] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Armor of the Ages-forge-1.20.1-1.2.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.114] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\mna-forge-1.20.1-3.1.0.1-all.jar [02oct2024 16:28:50.114] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mna-forge-1.20.1-3.1.0.1-all.jar with {mna} mods - versions {3.1.0.1} [02oct2024 16:28:50.114] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\mna-forge-1.20.1-3.1.0.1-all.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[43,)]] [02oct2024 16:28:50.114] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\armourersworkshop-forge-1.20.1-3.0.0-beta.18.jar [02oct2024 16:28:50.114] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file armourersworkshop-forge-1.20.1-3.0.0-beta.18.jar with {armourers_workshop} mods - versions {3.0.0-beta.18} [02oct2024 16:28:50.114] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\armourersworkshop-forge-1.20.1-3.0.0-beta.18.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[36,)]] [02oct2024 16:28:50.114] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\inventoryhud.forge.1.20.1-3.4.26.jar [02oct2024 16:28:50.115] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file inventoryhud.forge.1.20.1-3.4.26.jar with {inventoryhud} mods - versions {3.4.26} [02oct2024 16:28:50.115] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\inventoryhud.forge.1.20.1-3.4.26.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,50)]] [02oct2024 16:28:50.115] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\coroutil-forge-1.20.1-1.3.7.jar [02oct2024 16:28:50.115] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file coroutil-forge-1.20.1-1.3.7.jar with {coroutil} mods - versions {1.20.1-1.3.7} [02oct2024 16:28:50.115] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\coroutil-forge-1.20.1-1.3.7.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.115] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\alexsdelight-1.5.jar [02oct2024 16:28:50.115] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file alexsdelight-1.5.jar with {alexsdelight} mods - versions {1.5} [02oct2024 16:28:50.115] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\alexsdelight-1.5.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.115] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\appleskin-forge-mc1.20.1-2.5.1.jar [02oct2024 16:28:50.115] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file appleskin-forge-mc1.20.1-2.5.1.jar with {appleskin} mods - versions {2.5.1+mc1.20.1} [02oct2024 16:28:50.115] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\appleskin-forge-mc1.20.1-2.5.1.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.115] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\creeperoverhaul-3.0.2-forge.jar [02oct2024 16:28:50.115] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file creeperoverhaul-3.0.2-forge.jar with {creeperoverhaul} mods - versions {3.0.2} [02oct2024 16:28:50.115] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\creeperoverhaul-3.0.2-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\ferritecore-6.0.1-forge.jar [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ferritecore-6.0.1-forge.jar with {ferritecore} mods - versions {6.0.1} [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\ferritecore-6.0.1-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[28,)]] [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\lootr-forge-1.20-0.7.34.89.jar [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file lootr-forge-1.20-0.7.34.89.jar with {lootr} mods - versions {0.7.34.87} [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\lootr-forge-1.20-0.7.34.89.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[44,)]] [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\rubidium-extra-0.5.4.3+mc1.20.1-build.121.jar [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file rubidium-extra-0.5.4.3+mc1.20.1-build.121.jar with {embeddium_extra} mods - versions {0.5.4.3+mc1.20.1-build.121} [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\rubidium-extra-0.5.4.3+mc1.20.1-build.121.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\YetAnotherConfigLib-3.5.0+1.20.1-forge.jar [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file YetAnotherConfigLib-3.5.0+1.20.1-forge.jar with {yet_another_config_lib_v3} mods - versions {3.5.0+1.20.1-forge} [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\YetAnotherConfigLib-3.5.0+1.20.1-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\PuzzlesLib-v8.1.23-1.20.1-Forge.jar [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file PuzzlesLib-v8.1.23-1.20.1-Forge.jar with {puzzleslib} mods - versions {8.1.23} [02oct2024 16:28:50.116] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\PuzzlesLib-v8.1.23-1.20.1-Forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\Aquaculture-1.20.1-2.5.2.jar [02oct2024 16:28:50.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Aquaculture-1.20.1-2.5.2.jar with {aquaculture} mods - versions {2.5.2} [02oct2024 16:28:50.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\Aquaculture-1.20.1-2.5.2.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\immersive_melodies-0.3.0+1.20.1-forge.jar [02oct2024 16:28:50.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file immersive_melodies-0.3.0+1.20.1-forge.jar with {immersive_melodies} mods - versions {0.3.0+1.20.1} [02oct2024 16:28:50.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\immersive_melodies-0.3.0+1.20.1-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[35,)]] [02oct2024 16:28:50.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file expandability-forge-9.0.4.jar with {expandability} mods - versions {9.0.4} [02oct2024 16:28:50.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [LanguageSpec[languageName=javafml, acceptedVersions=[46,)]] [02oct2024 16:28:50.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\aquamirae-6.API15.jar [02oct2024 16:28:50.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file aquamirae-6.API15.jar with {aquamirae} mods - versions {6.API15} [02oct2024 16:28:50.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\aquamirae-6.API15.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Games\Server\mods\cristellib-1.1.5-forge.jar [02oct2024 16:28:50.117] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cristellib-1.1.5-forge.jar with {cristellib} mods - versions {1.1.5} [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Games\Server\mods\cristellib-1.1.5-forge.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.4.0.jar with {mixinextras} mods - versions {0.4.0} [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinsquared-forge-0.1.2-beta.4.jar with {mixinsquared} mods - versions {0.1.2-beta.4} [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.118] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinextras-forge-0.4.0.jar with {mixinextras} mods - versions {0.4.0} [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mixinsquared-forge-0.1.2-beta.4.jar with {mixinsquared} mods - versions {0.1.2-beta.4} [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [LanguageSpec[languageName=javafml, acceptedVersions=*]] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.119] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file  with languages [] [02oct2024 16:28:50.120] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml [02oct2024 16:28:50.127] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 4 language providers [02oct2024 16:28:50.127] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 [02oct2024 16:28:50.128] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 [02oct2024 16:28:50.128] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider kotlinforforge, version 4.11.0 [02oct2024 16:28:50.128] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 [02oct2024 16:28:50.131] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid org.quiltmc.parsers.json, selecting most recent based on version data [02oct2024 16:28:50.131] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file json-0.2.1.jar for modid org.quiltmc.parsers.json with version 0.0NONE [02oct2024 16:28:50.131] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid mclib, selecting most recent based on version data [02oct2024 16:28:50.131] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file mclib-20.jar for modid mclib with version 0.0NONE [02oct2024 16:28:50.131] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid com.twelvemonkeys.imageio.webp, selecting most recent based on version data [02oct2024 16:28:50.131] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file imageio-webp-3.10.0.jar for modid com.twelvemonkeys.imageio.webp with version 3.10.0 [02oct2024 16:28:50.131] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid mixinextras, selecting most recent based on version data [02oct2024 16:28:50.131] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file mixinextras-forge-0.4.0.jar for modid mixinextras with version 0.4.0 [02oct2024 16:28:50.131] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid org.jheaps, selecting most recent based on version data [02oct2024 16:28:50.131] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file jheaps-0.14.jar for modid org.jheaps with version 0.0NONE [02oct2024 16:28:50.131] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid com.twelvemonkeys.common.lang, selecting most recent based on version data [02oct2024 16:28:50.131] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file common-lang-3.10.0.jar for modid com.twelvemonkeys.common.lang with version 3.10.0 [02oct2024 16:28:50.131] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid com.twelvemonkeys.imageio.metadata, selecting most recent based on version data [02oct2024 16:28:50.131] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file imageio-metadata-3.10.0.jar for modid com.twelvemonkeys.imageio.metadata with version 3.10.0 [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid org.yaml.snakeyaml, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file snakeyaml-2.2.jar for modid org.yaml.snakeyaml with version 0.0NONE [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid MixinSquared.beta._4, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file MixinSquared-0.1.2-beta.4.jar for modid MixinSquared.beta._4 with version 0.0NONE [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid org.jgrapht.core, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file jgrapht-core-1.5.2.jar for modid org.jgrapht.core with version 0.0NONE [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid yabn, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file yabn-1.0.3.jar for modid yabn with version 0.0NONE [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid org.quiltmc.parsers.gson, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file gson-0.2.1.jar for modid org.quiltmc.parsers.gson with version 0.0NONE [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid org.apfloat, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file apfloat-1.10.1.jar for modid org.apfloat with version 1.10.1 [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid NanoLiveConfig, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file NanoLiveConfig-1.2.0.jar for modid NanoLiveConfig with version 0.0NONE [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid bytecodecs, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file bytecodecs-1.0.2.jar for modid bytecodecs with version 0.0NONE [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid jankson, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file jankson-1.2.3.jar for modid jankson with version 0.0NONE [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid jcpp, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file jcpp-1.4.14.jar for modid jcpp with version 1.4.14 [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid com.twelvemonkeys.common.image, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file common-image-3.10.0.jar for modid com.twelvemonkeys.common.image with version 3.10.0 [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid mixinsquared, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file mixinsquared-forge-0.1.2-beta.4.jar for modid mixinsquared with version 0.1.2-beta.4 [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid com.twelvemonkeys.imageio.core, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file imageio-core-3.10.0.jar for modid com.twelvemonkeys.imageio.core with version 3.10.0 [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid thedarkcolour.kotlinforforge.kfflib, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file kfflib-4.11.0.jar for modid thedarkcolour.kotlinforforge.kfflib with version 4.11.0 [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid com.twelvemonkeys.common.io, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file common-io-3.10.0.jar for modid com.twelvemonkeys.common.io with version 3.10.0 [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Found 2 mods for first modid MixinExtras, selecting most recent based on version data [02oct2024 16:28:50.132] [main/DEBUG] [net.minecraftforge.fml.loading.UniqueModListBuilder/]: Selected file MixinExtras-0.4.0.jar for modid MixinExtras with version 0.0NONE [02oct2024 16:28:50.133] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Configured system mods: [minecraft, forge] [02oct2024 16:28:50.133] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: minecraft [02oct2024 16:28:50.133] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: forge [02oct2024 16:28:50.136] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 344 mod requirements (305 mandatory, 39 optional) [02oct2024 16:28:50.136] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) [02oct2024 16:28:50.441] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers [02oct2024 16:28:50.442] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin [02oct2024 16:28:50.442] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin [02oct2024 16:28:50.442] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml [02oct2024 16:28:50.442] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading coremod transformers [02oct2024 16:28:50.443] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/xaeroworldmap_core.js [02oct2024 16:28:50.581] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.581] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/asm/seed.js [02oct2024 16:28:50.590] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.590] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/asm/maprendercontext.js [02oct2024 16:28:50.612] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.612] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/asm/music.js [02oct2024 16:28:50.618] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.618] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/asm/multipart.js [02oct2024 16:28:50.628] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.628] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/asm/foliage.js [02oct2024 16:28:50.635] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.635] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/asm/mount.js [02oct2024 16:28:50.643] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.643] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/asm/book.js [02oct2024 16:28:50.648] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.648] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/asm/conquered.js [02oct2024 16:28:50.654] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.654] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/asm/reach.js [02oct2024 16:28:50.660] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.660] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/asm/shroom.js [02oct2024 16:28:50.665] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.665] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/asm/cloud.js [02oct2024 16:28:50.673] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.673] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/asm/lead.js [02oct2024 16:28:50.679] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.679] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js [02oct2024 16:28:50.687] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.687] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js [02oct2024 16:28:50.702] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.702] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js [02oct2024 16:28:50.716] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.716] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js [02oct2024 16:28:50.744] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.744] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/xaerohud_core.js [02oct2024 16:28:50.766] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [02oct2024 16:28:50.774] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@6d8b7ea9 to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_6773_} {(Lnet/minecraft/network/protocol/game/ClientboundBlockUpdatePacket;)V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@4f8659d0 to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_5771_} {(Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket;)V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@278fe428 to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_194198_} {(IILnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData;)V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@3b4bd341 to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_183388_} {(Lnet/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket;)V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@1d4cc7 to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_183514_} {(Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacket;)V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@7d28cdcd to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_194252_} {(Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@255ed8e4 to Target : METHOD {Lnet/minecraft/client/player/AbstractClientPlayer;} {m_108561_} {()Lnet/minecraft/resources/ResourceLocation;} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@406ad6d5 to Target : METHOD {Lnet/minecraft/world/entity/player/Player;} {m_36170_} {(Lnet/minecraft/world/entity/player/PlayerModelPart;)Z} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@2a7bc16b to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_5998_} {(Lnet/minecraft/network/protocol/game/ClientboundLoginPacket;)V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@1186374c to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_261044_} {()V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@42cc5460 to Target : METHOD {Lnet/minecraft/server/players/PlayerList;} {m_11229_} {(Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/level/ServerLevel;)V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@5486ee92 to Target : METHOD {Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;} {m_78311_} {()V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@20820df0 to Target : METHOD {Lnet/minecraft/client/Minecraft;} {m_91383_} {(Z)V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@9e62fb to Target : METHOD {Lnet/minecraft/client/Minecraft;} {m_91383_} {(Z)V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@205159dc to Target : METHOD {Lnet/minecraft/client/multiplayer/chat/ChatListener;} {m_240494_} {(Lnet/minecraft/network/chat/Component;Z)V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@43c0c13a to Target : METHOD {Lnet/minecraft/client/multiplayer/chat/ChatListener;} {m_245141_} {(Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@731db93f to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_6571_} {(Lnet/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket;)V} [02oct2024 16:28:50.775] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@67941d to Target : METHOD {Lnet/minecraft/world/level/levelgen/WorldOptions;} {<init>} {(JZZLjava/util/Optional;)V} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@2ad2b274 to Target : METHOD {Lnet/minecraft/client/gui/MapRenderer$MapInstance;} {m_93291_} {(Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ZI)V} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@6fde6f05 to Target : METHOD {Lnet/minecraft/client/renderer/ItemInHandRenderer;} {m_109371_} {(Lnet/minecraft/client/player/AbstractClientPlayer;FFLnet/minecraft/world/InteractionHand;FLnet/minecraft/world/item/ItemStack;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@7114e780 to Target : METHOD {Lnet/minecraft/world/entity/decoration/ItemFrame;} {m_218868_} {()Ljava/util/OptionalInt;} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@4def42c3 to Target : METHOD {Lnet/minecraft/client/renderer/ItemInHandRenderer;} {m_109366_} {(Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/item/ItemStack;)V} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@72110818 to Target : METHOD {Lnet/minecraft/world/item/MapItem;} {m_7373_} {(Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@6eabe718 to Target : METHOD {Lnet/minecraft/client/sounds/MusicManager;} {m_120183_} {()V} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@38d525aa to Target : METHOD {Lnet/minecraft/server/level/ServerEntity;} {m_8543_} {()V} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@f9b8129 to Target : METHOD {Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;} {m_6213_} {(Lnet/minecraft/server/packs/resources/ResourceManager;)V} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@7530090a to Target : METHOD {Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;} {m_114382_} {(Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/client/renderer/entity/EntityRenderer;} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@4492b393 to Target : METHOD {Lnet/minecraft/client/renderer/LevelRenderer;} {m_109599_} {(Lcom/mojang/blaze3d/vertex/PoseStack;FJZLnet/minecraft/client/Camera;Lnet/minecraft/client/renderer/GameRenderer;Lnet/minecraft/client/renderer/LightTexture;Lorg/joml/Matrix4f;)V} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@55fb36de to Target : METHOD {Lnet/minecraft/client/renderer/BiomeColors;} {m_108807_} {(Lnet/minecraft/world/level/biome/Biome;DD)I} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@63a7781 to Target : METHOD {Lnet/minecraft/client/player/LocalPlayer;} {m_6083_} {()V} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@73b74615 to Target : METHOD {Lnet/minecraft/world/item/WrittenBookItem;} {m_7626_} {(Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component;} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@22686ddb to Target : METHOD {Lnet/minecraft/world/level/levelgen/structure/StructureStart;} {m_226857_} {(Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;J)Lnet/minecraft/world/level/levelgen/structure/StructureStart;} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@2e29f28e to Target : METHOD {Lnet/minecraft/world/item/Item;} {m_41435_} {(Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/ClipContext$Fluid;)Lnet/minecraft/world/phys/BlockHitResult;} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@7bfa1eb5 to Target : METHOD {Lnet/minecraft/world/level/block/MushroomBlock;} {m_7898_} {(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@32b46831 to Target : METHOD {Lnet/minecraft/world/level/Level;} {m_46758_} {(Lnet/minecraft/core/BlockPos;)Z} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@5353dd09 to Target : METHOD {Lnet/minecraft/world/entity/decoration/LeashFenceKnotEntity;} {m_7088_} {()Z} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@320ff86f to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_6773_} {(Lnet/minecraft/network/protocol/game/ClientboundBlockUpdatePacket;)V} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@192b472d to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_5771_} {(Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket;)V} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@84f51d9 to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_194198_} {(IILnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData;)V} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@45b96e4c to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_183388_} {(Lnet/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket;)V} [02oct2024 16:28:50.776] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@8383a14 to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_183514_} {(Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacket;)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@4b691611 to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_194252_} {(Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@395a573c to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_6571_} {(Lnet/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket;)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@379f9555 to Target : METHOD {Lnet/minecraft/client/player/AbstractClientPlayer;} {m_108561_} {()Lnet/minecraft/resources/ResourceLocation;} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@7e3ee128 to Target : METHOD {Lnet/minecraft/world/entity/player/Player;} {m_36170_} {(Lnet/minecraft/world/entity/player/PlayerModelPart;)Z} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@7d64a960 to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_5998_} {(Lnet/minecraft/network/protocol/game/ClientboundLoginPacket;)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@166ce247 to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_261044_} {()V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@5d92e8e2 to Target : METHOD {Lnet/minecraft/client/player/LocalPlayer;} {m_7583_} {()V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@542c65d9 to Target : METHOD {Lnet/minecraft/server/players/PlayerList;} {m_11229_} {(Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/level/ServerLevel;)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@cdbe995 to Target : METHOD {Lnet/minecraft/client/gui/components/BossHealthOverlay;} {m_280652_} {(Lnet/minecraft/client/gui/GuiGraphics;)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@7dd45c93 to Target : METHOD {Lnet/minecraft/client/model/ListModel;} {m_7695_} {(Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@374b6e33 to Target : METHOD {Lnet/minecraft/client/model/AgeableListModel;} {m_7695_} {(Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@7ed7ae to Target : METHOD {Lnet/minecraft/client/model/LlamaModel;} {m_7695_} {(Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@53ba1175 to Target : METHOD {Lnet/minecraft/client/model/RabbitModel;} {m_7695_} {(Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@cd5ff55 to Target : METHOD {Lnet/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel;} {m_7695_} {(Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@6003220a to Target : METHOD {Lnet/minecraft/client/model/HierarchicalModel;} {m_7695_} {(Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@16b64a03 to Target : METHOD {Lnet/minecraft/client/model/geom/ModelPart;} {m_104290_} {(Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@1584c019 to Target : METHOD {Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;} {m_78311_} {()V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@3688baab to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_246623_} {(Ljava/lang/String;)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@4fe2dd02 to Target : METHOD {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {m_246979_} {(Ljava/lang/String;)Z} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@6ba060af to Target : METHOD {Lnet/minecraft/client/multiplayer/chat/ChatListener;} {m_240494_} {(Lnet/minecraft/network/chat/Component;Z)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@5817f1ca to Target : METHOD {Lnet/minecraft/client/multiplayer/chat/ChatListener;} {m_245141_} {(Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@726a8729 to Target : CLASS {Lnet/minecraft/world/level/chunk/LevelChunk;} {} {V} [02oct2024 16:28:50.777] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1a2724d3 to Target : CLASS {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7dd91ffc to Target : CLASS {Lnet/minecraft/client/multiplayer/ClientLevel;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1c2dd89b to Target : CLASS {Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3ad847f8 to Target : CLASS {Lnet/minecraft/client/gui/components/CycleButton;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@19faedcc to Target : CLASS {Lnet/minecraft/server/MinecraftServer;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2c6927f0 to Target : CLASS {Lnet/minecraft/server/level/ServerPlayer;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5ef2cbe6 to Target : CLASS {Lnet/minecraft/client/Minecraft;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@266da047 to Target : CLASS {Lnet/minecraft/server/level/ServerLevel;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@68b7bdcb to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@d84418a to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@45e11627 to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@ec5f944 to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b4954b2 to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@74eec640 to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3973b6d4 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@18dd7767 to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@9205c0a to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} [02oct2024 16:28:50.778] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} [02oct2024 16:28:50.779] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} [02oct2024 16:28:50.779] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} [02oct2024 16:28:50.779] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@bfe47a8 to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} [02oct2024 16:28:50.779] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2f1f9515 to Target : CLASS {Lnet/minecraft/world/level/chunk/LevelChunk;} {} {V} [02oct2024 16:28:50.779] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5c8ab9de to Target : CLASS {Lnet/minecraft/client/multiplayer/ClientPacketListener;} {} {V} [02oct2024 16:28:50.779] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@57416e49 to Target : CLASS {Lnet/minecraft/client/multiplayer/ClientLevel;} {} {V} [02oct2024 16:28:50.779] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2e7bb00e to Target : CLASS {Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket;} {} {V} [02oct2024 16:28:50.779] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7d1f3fe9 to Target : CLASS {Lnet/minecraft/client/gui/components/CycleButton;} {} {V} [02oct2024 16:28:50.779] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@74d22ddd to Target : CLASS {Lnet/minecraft/server/MinecraftServer;} {} {V} [02oct2024 16:28:50.779] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@283d3628 to Target : CLASS {Lnet/minecraft/server/level/ServerPlayer;} {} {V} [02oct2024 16:28:50.779] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b3518e1 to Target : CLASS {Lnet/minecraft/client/Minecraft;} {} {V} [02oct2024 16:28:50.779] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5fd18419 to Target : CLASS {Lnet/minecraft/client/gui/components/AbstractSelectionList;} {} {V} [02oct2024 16:28:50.779] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(cyclopscore) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(cyclopscore) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(cyclopscore) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(cyclopscore) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(cyclopscore) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(cyclopscore)] [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(skyvillages) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(skyvillages) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(skyvillages) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(skyvillages) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(skyvillages) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(skyvillages)] [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betterdungeons) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betterdungeons) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betterdungeons) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betterdungeons) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betterdungeons) [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterdungeons)] [02oct2024 16:28:52.108] [main/DEBUG] [mixin/]: Registering mixin config: betterdungeons.mixins.json [02oct2024 16:28:52.117] [main/DEBUG] [mixin/]: Compatibility level JAVA_17 specified by betterdungeons.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [02oct2024 16:28:52.120] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [02oct2024 16:28:52.121] [main/DEBUG] [mixin/]: Registering mixin config: betterdungeons_forge.mixins.json [02oct2024 16:28:52.122] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(kuma_api) [02oct2024 16:28:52.122] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(kuma_api) [02oct2024 16:28:52.122] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(kuma_api) [02oct2024 16:28:52.122] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(kuma_api) [02oct2024 16:28:52.122] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(kuma_api) [02oct2024 16:28:52.122] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(kuma_api)] [02oct2024 16:28:52.122] [main/DEBUG] [mixin/]: Registering mixin config: kuma_api.mixins.json [02oct2024 16:28:52.123] [main/DEBUG] [mixin/]: Registering mixin config: kuma_api.forge.mixins.json [02oct2024 16:28:52.124] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(supermartijn642configlib) [02oct2024 16:28:52.124] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(supermartijn642configlib) [02oct2024 16:28:52.124] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(supermartijn642configlib) [02oct2024 16:28:52.124] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(supermartijn642configlib) [02oct2024 16:28:52.124] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(supermartijn642configlib) [02oct2024 16:28:52.124] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(supermartijn642configlib)] [02oct2024 16:28:52.124] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(geckolib) [02oct2024 16:28:52.124] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(geckolib) [02oct2024 16:28:52.124] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(geckolib) [02oct2024 16:28:52.124] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(geckolib) [02oct2024 16:28:52.124] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(geckolib) [02oct2024 16:28:52.124] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(geckolib)] [02oct2024 16:28:52.124] [main/DEBUG] [mixin/]: Registering mixin config: geckolib.mixins.json [02oct2024 16:28:52.125] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(playeranimator) [02oct2024 16:28:52.125] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(playeranimator) [02oct2024 16:28:52.125] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(playeranimator) [02oct2024 16:28:52.125] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(playeranimator) [02oct2024 16:28:52.125] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(playeranimator) [02oct2024 16:28:52.125] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(playeranimator)] [02oct2024 16:28:52.125] [main/DEBUG] [mixin/]: Registering mixin config: playerAnimator-common.mixins.json [02oct2024 16:28:52.126] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by playerAnimator-common.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [02oct2024 16:28:52.126] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betteroceanmonuments) [02oct2024 16:28:52.126] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betteroceanmonuments) [02oct2024 16:28:52.126] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betteroceanmonuments) [02oct2024 16:28:52.126] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betteroceanmonuments) [02oct2024 16:28:52.126] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betteroceanmonuments) [02oct2024 16:28:52.126] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betteroceanmonuments)] [02oct2024 16:28:52.126] [main/DEBUG] [mixin/]: Registering mixin config: betteroceanmonuments.mixins.json [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Registering mixin config: betteroceanmonuments_forge.mixins.json [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(incendium) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(incendium) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(incendium) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(incendium) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(incendium) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(incendium)] [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(aquaculturedelight) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(aquaculturedelight) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(aquaculturedelight) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(aquaculturedelight) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(aquaculturedelight) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(aquaculturedelight)] [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(sophisticatedcore) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(sophisticatedcore) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(sophisticatedcore) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(sophisticatedcore) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(sophisticatedcore) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(sophisticatedcore)] [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(scbrass) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(scbrass) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(scbrass) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(scbrass) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(scbrass) [02oct2024 16:28:52.127] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(scbrass)] [02oct2024 16:28:52.128] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(insanelib) [02oct2024 16:28:52.128] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(insanelib) [02oct2024 16:28:52.128] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(insanelib) [02oct2024 16:28:52.128] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(insanelib) [02oct2024 16:28:52.128] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(insanelib) [02oct2024 16:28:52.128] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(insanelib)] [02oct2024 16:28:52.128] [main/DEBUG] [mixin/]: Registering mixin config: insanelib.mixins.json [02oct2024 16:28:52.128] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by insanelib.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(xaeroworldmap) [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(xaeroworldmap) [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(xaeroworldmap) [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(xaeroworldmap) [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(xaeroworldmap) [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(xaeroworldmap)] [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(everlastingskins) [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(everlastingskins) [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(everlastingskins) [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(everlastingskins) [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(everlastingskins) [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(everlastingskins)] [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: Registering mixin config: everlastingskins.mixins.json [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by everlastingskins.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(prism) [02oct2024 16:28:52.129] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(prism) [02oct2024 16:28:52.130] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(prism) [02oct2024 16:28:52.130] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(prism) [02oct2024 16:28:52.130] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(prism) [02oct2024 16:28:52.130] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(prism)] [02oct2024 16:28:52.130] [main/DEBUG] [mixin/]: Registering mixin config: prism.mixins.json [02oct2024 16:28:52.130] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(citadel) [02oct2024 16:28:52.130] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(citadel) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(citadel) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(citadel) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(citadel) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(citadel)] [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Registering mixin config: citadel.mixins.json [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(alexsmobs) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(alexsmobs) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(alexsmobs) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(alexsmobs) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(alexsmobs) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(alexsmobs)] [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Registering mixin config: citadel.mixins.json [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(evilcraft) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(evilcraft) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(evilcraft) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(evilcraft) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(evilcraft) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(evilcraft)] [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(yungsapi) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(yungsapi) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(yungsapi) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(yungsapi) [02oct2024 16:28:52.131] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(yungsapi) [02oct2024 16:28:52.132] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yungsapi)] [02oct2024 16:28:52.132] [main/DEBUG] [mixin/]: Registering mixin config: yungsapi.mixins.json [02oct2024 16:28:52.132] [main/DEBUG] [mixin/]: Registering mixin config: yungsapi_forge.mixins.json [02oct2024 16:28:52.133] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(powah) [02oct2024 16:28:52.133] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(powah) [02oct2024 16:28:52.133] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(powah) [02oct2024 16:28:52.133] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(powah) [02oct2024 16:28:52.133] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(powah) [02oct2024 16:28:52.133] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(powah)] [02oct2024 16:28:52.133] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mixinextras) [02oct2024 16:28:52.133] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mixinextras) [02oct2024 16:28:52.133] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mixinextras) [02oct2024 16:28:52.133] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mixinextras) [02oct2024 16:28:52.133] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mixinextras) [02oct2024 16:28:52.133] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixinextras)] [02oct2024 16:28:52.133] [main/DEBUG] [mixin/]: Registering mixin config: mixinextras.init.mixins.json [02oct2024 16:28:52.134] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(bookshelf) [02oct2024 16:28:52.134] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(bookshelf) [02oct2024 16:28:52.134] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(bookshelf) [02oct2024 16:28:52.134] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(bookshelf) [02oct2024 16:28:52.134] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(bookshelf) [02oct2024 16:28:52.134] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(bookshelf)] [02oct2024 16:28:52.134] [main/DEBUG] [mixin/]: Registering mixin config: bookshelf.common.mixins.json [02oct2024 16:28:52.134] [main/DEBUG] [mixin/]: Registering mixin config: bookshelf.forge.mixins.json [02oct2024 16:28:52.135] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(sophisticatedbackpacks) [02oct2024 16:28:52.135] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(sophisticatedbackpacks) [02oct2024 16:28:52.135] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(sophisticatedbackpacks) [02oct2024 16:28:52.135] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(sophisticatedbackpacks) [02oct2024 16:28:52.135] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(sophisticatedbackpacks) [02oct2024 16:28:52.135] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(sophisticatedbackpacks)] [02oct2024 16:28:52.135] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(rch_supplementaries_compat) [02oct2024 16:28:52.135] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(rch_supplementaries_compat) [02oct2024 16:28:52.135] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(rch_supplementaries_compat) [02oct2024 16:28:52.135] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(rch_supplementaries_compat) [02oct2024 16:28:52.135] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(rch_supplementaries_compat) [02oct2024 16:28:52.135] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(rch_supplementaries_compat)] [02oct2024 16:28:52.135] [main/DEBUG] [mixin/]: Registering mixin config: rch_supplementaries_compat.mixins.json [02oct2024 16:28:52.136] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(grimoireofgaia) [02oct2024 16:28:52.136] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(grimoireofgaia) [02oct2024 16:28:52.136] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(grimoireofgaia) [02oct2024 16:28:52.136] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(grimoireofgaia) [02oct2024 16:28:52.136] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(grimoireofgaia) [02oct2024 16:28:52.136] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(grimoireofgaia)] [02oct2024 16:28:52.136] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(pickupnotifier) [02oct2024 16:28:52.136] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(pickupnotifier) [02oct2024 16:28:52.136] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(pickupnotifier) [02oct2024 16:28:52.136] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(pickupnotifier) [02oct2024 16:28:52.136] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(pickupnotifier) [02oct2024 16:28:52.136] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(pickupnotifier)] [02oct2024 16:28:52.136] [main/DEBUG] [mixin/]: Registering mixin config: pickupnotifier.common.mixins.json [02oct2024 16:28:52.137] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(balm) [02oct2024 16:28:52.137] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(balm) [02oct2024 16:28:52.137] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(balm) [02oct2024 16:28:52.137] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(balm) [02oct2024 16:28:52.137] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(balm) [02oct2024 16:28:52.137] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(balm)] [02oct2024 16:28:52.137] [main/DEBUG] [mixin/]: Registering mixin config: balm.mixins.json [02oct2024 16:28:52.137] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(fpsreducer) [02oct2024 16:28:52.137] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(fpsreducer) [02oct2024 16:28:52.137] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(fpsreducer) [02oct2024 16:28:52.137] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(fpsreducer) [02oct2024 16:28:52.137] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(fpsreducer) [02oct2024 16:28:52.137] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fpsreducer)] [02oct2024 16:28:52.137] [main/DEBUG] [mixin/]: Registering mixin config: fpsreducer.mixins.json [02oct2024 16:28:52.138] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(projectile_damage) [02oct2024 16:28:52.138] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(projectile_damage) [02oct2024 16:28:52.138] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(projectile_damage) [02oct2024 16:28:52.138] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(projectile_damage) [02oct2024 16:28:52.138] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(projectile_damage) [02oct2024 16:28:52.138] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(projectile_damage)] [02oct2024 16:28:52.138] [main/DEBUG] [mixin/]: Registering mixin config: projectile_damage.mixins.json [02oct2024 16:28:52.139] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(jeresources) [02oct2024 16:28:52.139] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(jeresources) [02oct2024 16:28:52.139] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(jeresources) [02oct2024 16:28:52.139] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(jeresources) [02oct2024 16:28:52.139] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(jeresources) [02oct2024 16:28:52.139] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jeresources)] [02oct2024 16:28:52.139] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(shieldexp) [02oct2024 16:28:52.139] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(shieldexp) [02oct2024 16:28:52.139] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(shieldexp) [02oct2024 16:28:52.139] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(shieldexp) [02oct2024 16:28:52.139] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(shieldexp) [02oct2024 16:28:52.139] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(shieldexp)] [02oct2024 16:28:52.139] [main/DEBUG] [mixin/]: Registering mixin config: shieldexp.mixins.json [02oct2024 16:28:52.140] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betterfortresses) [02oct2024 16:28:52.140] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betterfortresses) [02oct2024 16:28:52.140] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betterfortresses) [02oct2024 16:28:52.140] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betterfortresses) [02oct2024 16:28:52.140] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betterfortresses) [02oct2024 16:28:52.140] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterfortresses)] [02oct2024 16:28:52.140] [main/DEBUG] [mixin/]: Registering mixin config: betterfortresses.mixins.json [02oct2024 16:28:52.140] [main/DEBUG] [mixin/]: Registering mixin config: betterfortresses_forge.mixins.json [02oct2024 16:28:52.141] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(cloth_config) [02oct2024 16:28:52.141] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(cloth_config) [02oct2024 16:28:52.141] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(cloth_config) [02oct2024 16:28:52.141] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(cloth_config) [02oct2024 16:28:52.141] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(cloth_config) [02oct2024 16:28:52.141] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(cloth_config)] [02oct2024 16:28:52.141] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(dummmmmmy) [02oct2024 16:28:52.141] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(dummmmmmy) [02oct2024 16:28:52.141] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(dummmmmmy) [02oct2024 16:28:52.141] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(dummmmmmy) [02oct2024 16:28:52.141] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(dummmmmmy) [02oct2024 16:28:52.141] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(dummmmmmy)] [02oct2024 16:28:52.141] [main/DEBUG] [mixin/]: Registering mixin config: dummmmmmy-common.mixins.json [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: Registering mixin config: dummmmmmy.mixins.json [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by dummmmmmy.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(twilightforest) [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(twilightforest) [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(twilightforest) [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(twilightforest) [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(twilightforest) [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(twilightforest)] [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(supplementaries) [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(supplementaries) [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(supplementaries) [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(supplementaries) [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(supplementaries) [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(supplementaries)] [02oct2024 16:28:52.142] [main/DEBUG] [mixin/]: Registering mixin config: supplementaries-common.mixins.json [02oct2024 16:28:52.143] [main/DEBUG] [mixin/]: Registering mixin config: supplementaries.mixins.json [02oct2024 16:28:52.144] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(emojiful) [02oct2024 16:28:52.144] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(emojiful) [02oct2024 16:28:52.144] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(emojiful) [02oct2024 16:28:52.144] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(emojiful) [02oct2024 16:28:52.144] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(emojiful) [02oct2024 16:28:52.144] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(emojiful)] [02oct2024 16:28:52.144] [main/DEBUG] [mixin/]: Registering mixin config: emojiful.mixins.json [02oct2024 16:28:52.144] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(embeddium) [02oct2024 16:28:52.144] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(embeddium) [02oct2024 16:28:52.144] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(embeddium) [02oct2024 16:28:52.144] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(embeddium) [02oct2024 16:28:52.144] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(embeddium) [02oct2024 16:28:52.144] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(embeddium)] [02oct2024 16:28:52.144] [main/DEBUG] [mixin/]: Registering mixin config: embeddium.mixins.json [02oct2024 16:28:52.145] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(embeddiumplus) [02oct2024 16:28:52.145] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(embeddiumplus) [02oct2024 16:28:52.145] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(embeddiumplus) [02oct2024 16:28:52.145] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(embeddiumplus) [02oct2024 16:28:52.145] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(embeddiumplus) [02oct2024 16:28:52.145] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(embeddiumplus)] [02oct2024 16:28:52.145] [main/DEBUG] [mixin/]: Registering mixin config: embeddiumplus.mixin.json [02oct2024 16:28:52.146] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(athena) [02oct2024 16:28:52.146] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(athena) [02oct2024 16:28:52.146] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(athena) [02oct2024 16:28:52.146] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(athena) [02oct2024 16:28:52.146] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(athena) [02oct2024 16:28:52.146] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(athena)] [02oct2024 16:28:52.146] [main/DEBUG] [mixin/]: Registering mixin config: athena.mixins.json [02oct2024 16:28:52.147] [main/DEBUG] [mixin/]: Registering mixin config: athena-forge.mixins.json [02oct2024 16:28:52.147] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(prettypipes) [02oct2024 16:28:52.147] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(prettypipes) [02oct2024 16:28:52.147] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(prettypipes) [02oct2024 16:28:52.147] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(prettypipes) [02oct2024 16:28:52.147] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(prettypipes) [02oct2024 16:28:52.147] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(prettypipes)] [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(advancementplaques) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(advancementplaques) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(advancementplaques) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(advancementplaques) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(advancementplaques) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(advancementplaques)] [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(chipped) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(chipped) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(chipped) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(chipped) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(chipped) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(chipped)] [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: Registering mixin config: chipped-common.mixins.json [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(farmersdelight) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(farmersdelight) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(farmersdelight) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(farmersdelight) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(farmersdelight) [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(farmersdelight)] [02oct2024 16:28:52.148] [main/DEBUG] [mixin/]: Registering mixin config: farmersdelight.mixins.json [02oct2024 16:28:52.149] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(immersiveui) [02oct2024 16:28:52.149] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(immersiveui) [02oct2024 16:28:52.149] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(immersiveui) [02oct2024 16:28:52.149] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(immersiveui) [02oct2024 16:28:52.149] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(immersiveui) [02oct2024 16:28:52.149] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(immersiveui)] [02oct2024 16:28:52.149] [main/DEBUG] [mixin/]: Registering mixin config: immersiveui-common.mixins.json [02oct2024 16:28:52.150] [main/DEBUG] [mixin/]: Registering mixin config: immersiveui.mixins.json [02oct2024 16:28:52.150] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(fastipping) [02oct2024 16:28:52.150] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(fastipping) [02oct2024 16:28:52.150] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(fastipping) [02oct2024 16:28:52.150] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(fastipping) [02oct2024 16:28:52.150] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(fastipping) [02oct2024 16:28:52.150] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fastipping)] [02oct2024 16:28:52.150] [main/DEBUG] [mixin/]: Registering mixin config: fastipping.mixins.json [02oct2024 16:28:52.151] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(supermartijn642corelib) [02oct2024 16:28:52.151] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(supermartijn642corelib) [02oct2024 16:28:52.151] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(supermartijn642corelib) [02oct2024 16:28:52.151] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(supermartijn642corelib) [02oct2024 16:28:52.151] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(supermartijn642corelib) [02oct2024 16:28:52.151] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(supermartijn642corelib)] [02oct2024 16:28:52.151] [main/DEBUG] [mixin/]: Registering mixin config: supermartijn642corelib.mixins.json [02oct2024 16:28:52.151] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(yungsbridges) [02oct2024 16:28:52.151] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(yungsbridges) [02oct2024 16:28:52.151] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(yungsbridges) [02oct2024 16:28:52.151] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(yungsbridges) [02oct2024 16:28:52.151] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(yungsbridges) [02oct2024 16:28:52.151] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yungsbridges)] [02oct2024 16:28:52.151] [main/DEBUG] [mixin/]: Registering mixin config: yungsbridges.mixins.json [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Registering mixin config: yungsbridges_forge.mixins.json [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(resourcefulconfig) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(resourcefulconfig) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(resourcefulconfig) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(resourcefulconfig) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(resourcefulconfig) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(resourcefulconfig)] [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(jerintegration) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(jerintegration) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(jerintegration) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(jerintegration) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(jerintegration) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jerintegration)] [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(born_in_chaos_v1) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(born_in_chaos_v1) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(born_in_chaos_v1) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(born_in_chaos_v1) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(born_in_chaos_v1) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(born_in_chaos_v1)] [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(lionfishapi) [02oct2024 16:28:52.152] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(lionfishapi) [02oct2024 16:28:52.153] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(lionfishapi) [02oct2024 16:28:52.153] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(lionfishapi) [02oct2024 16:28:52.153] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(lionfishapi) [02oct2024 16:28:52.153] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(lionfishapi)] [02oct2024 16:28:52.153] [main/DEBUG] [mixin/]: Registering mixin config: lionfishapi.mixins.json [02oct2024 16:28:52.153] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(touhou_little_maid) [02oct2024 16:28:52.153] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(touhou_little_maid) [02oct2024 16:28:52.153] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(touhou_little_maid) [02oct2024 16:28:52.153] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(touhou_little_maid) [02oct2024 16:28:52.153] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(touhou_little_maid) [02oct2024 16:28:52.153] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(touhou_little_maid)] [02oct2024 16:28:52.153] [main/DEBUG] [mixin/]: Registering mixin config: touhou_little_maid.mixins.json [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(netmusic) [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(netmusic) [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(netmusic) [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(netmusic) [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(netmusic) [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(netmusic)] [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(cataclysm) [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(cataclysm) [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(cataclysm) [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(cataclysm) [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(cataclysm) [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(cataclysm)] [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: Registering mixin config: lionfishapi.mixins.json [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: Registering mixin config: cataclysm.mixins.json [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(curios) [02oct2024 16:28:52.154] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(curios) [02oct2024 16:28:52.155] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(curios) [02oct2024 16:28:52.155] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(curios) [02oct2024 16:28:52.155] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(curios) [02oct2024 16:28:52.155] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(curios)] [02oct2024 16:28:52.155] [main/DEBUG] [mixin/]: Registering mixin config: curios.mixins.json [02oct2024 16:28:52.155] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(patchouli) [02oct2024 16:28:52.155] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(patchouli) [02oct2024 16:28:52.155] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(patchouli) [02oct2024 16:28:52.155] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(patchouli) [02oct2024 16:28:52.155] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(patchouli) [02oct2024 16:28:52.155] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(patchouli)] [02oct2024 16:28:52.155] [main/DEBUG] [mixin/]: Registering mixin config: patchouli_xplat.mixins.json [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(armorpointspp) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(armorpointspp) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(armorpointspp) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(armorpointspp) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(armorpointspp) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(armorpointspp)] [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Registering mixin config: armorpointspp.mixins.json [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(rightclickharvest) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(rightclickharvest) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(rightclickharvest) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(rightclickharvest) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(rightclickharvest) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(rightclickharvest)] [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(oculus) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(oculus) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(oculus) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(oculus) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(oculus) [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(oculus)] [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.json [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.156] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.fantastic.json [02oct2024 16:28:52.157] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.fantastic.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.157] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.vertexformat.json [02oct2024 16:28:52.158] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.vertexformat.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.158] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.bettermipmaps.json [02oct2024 16:28:52.158] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.bettermipmaps.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.158] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.fixes.maxfpscrash.json [02oct2024 16:28:52.159] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.fixes.maxfpscrash.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.159] [main/DEBUG] [mixin/]: Registering mixin config: oculus-batched-entity-rendering.mixins.json [02oct2024 16:28:52.159] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by oculus-batched-entity-rendering.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.159] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.compat.sodium.json [02oct2024 16:28:52.160] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.compat.sodium.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.160] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.compat.indigo.json [02oct2024 16:28:52.160] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.compat.indigo.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.160] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.compat.indium.json [02oct2024 16:28:52.161] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.compat.indium.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.161] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.compat.dh.json [02oct2024 16:28:52.161] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.compat.dh.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.161] [main/DEBUG] [mixin/]: Registering mixin config: mixins.oculus.compat.pixelmon.json [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mixins.oculus.compat.pixelmon.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(camera) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(camera) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(camera) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(camera) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(camera) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(camera)] [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(advancednetherite) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(advancednetherite) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(advancednetherite) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(advancednetherite) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(advancednetherite) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(advancednetherite)] [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mr_dungeons_andtaverns) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mr_dungeons_andtaverns) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mr_dungeons_andtaverns) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mr_dungeons_andtaverns) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mr_dungeons_andtaverns) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mr_dungeons_andtaverns)] [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(scguns) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(scguns) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(scguns) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(scguns) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(scguns) [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(scguns)] [02oct2024 16:28:52.162] [main/DEBUG] [mixin/]: Registering mixin config: scguns.mixins.json [02oct2024 16:28:52.163] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by scguns.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.163] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betterstrongholds) [02oct2024 16:28:52.163] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betterstrongholds) [02oct2024 16:28:52.163] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betterstrongholds) [02oct2024 16:28:52.163] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betterstrongholds) [02oct2024 16:28:52.163] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betterstrongholds) [02oct2024 16:28:52.163] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterstrongholds)] [02oct2024 16:28:52.163] [main/DEBUG] [mixin/]: Registering mixin config: betterstrongholds.mixins.json [02oct2024 16:28:52.164] [main/DEBUG] [mixin/]: Registering mixin config: betterstrongholds_forge.mixins.json [02oct2024 16:28:52.164] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(tombstone) [02oct2024 16:28:52.164] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(tombstone) [02oct2024 16:28:52.164] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(tombstone) [02oct2024 16:28:52.164] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(tombstone) [02oct2024 16:28:52.164] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(tombstone) [02oct2024 16:28:52.164] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(tombstone)] [02oct2024 16:28:52.164] [main/DEBUG] [mixin/]: Registering mixin config: tombstone.mixins.json [02oct2024 16:28:52.165] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(customnpcs) [02oct2024 16:28:52.165] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(customnpcs) [02oct2024 16:28:52.165] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(customnpcs) [02oct2024 16:28:52.165] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(customnpcs) [02oct2024 16:28:52.165] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(customnpcs) [02oct2024 16:28:52.165] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(customnpcs)] [02oct2024 16:28:52.165] [main/DEBUG] [mixin/]: Registering mixin config: customnpcs.mixins.json [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(ysns) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(ysns) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(ysns) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(ysns) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(ysns) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(ysns)] [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: Registering mixin config: ysns.mixins.json [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(resourcefullib) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(resourcefullib) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(resourcefullib) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(resourcefullib) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(resourcefullib) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(resourcefullib)] [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(inventoryprofilesnext) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(inventoryprofilesnext) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(inventoryprofilesnext) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(inventoryprofilesnext) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(inventoryprofilesnext) [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(inventoryprofilesnext)] [02oct2024 16:28:52.166] [main/DEBUG] [mixin/]: Registering mixin config: mixins.ipnext.json [02oct2024 16:28:52.167] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(deeperdarker) [02oct2024 16:28:52.167] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(deeperdarker) [02oct2024 16:28:52.167] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(deeperdarker) [02oct2024 16:28:52.167] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(deeperdarker) [02oct2024 16:28:52.167] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(deeperdarker) [02oct2024 16:28:52.167] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(deeperdarker)] [02oct2024 16:28:52.167] [main/DEBUG] [mixin/]: Registering mixin config: mixins.deeperdarker.json [02oct2024 16:28:52.167] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(architectury) [02oct2024 16:28:52.168] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(architectury) [02oct2024 16:28:52.168] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(architectury) [02oct2024 16:28:52.168] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(architectury) [02oct2024 16:28:52.168] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(architectury) [02oct2024 16:28:52.168] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(architectury)] [02oct2024 16:28:52.168] [main/DEBUG] [mixin/]: Registering mixin config: architectury.mixins.json [02oct2024 16:28:52.168] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by architectury.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [02oct2024 16:28:52.168] [main/DEBUG] [mixin/]: Registering mixin config: architectury-common.mixins.json [02oct2024 16:28:52.169] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by architectury-common.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [02oct2024 16:28:52.169] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(doapi) [02oct2024 16:28:52.169] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(doapi) [02oct2024 16:28:52.169] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(doapi) [02oct2024 16:28:52.169] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(doapi) [02oct2024 16:28:52.169] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(doapi) [02oct2024 16:28:52.169] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(doapi)] [02oct2024 16:28:52.169] [main/DEBUG] [mixin/]: Registering mixin config: doapi-common.mixins.json [02oct2024 16:28:52.169] [main/DEBUG] [mixin/]: Registering mixin config: doapi.mixins.json [02oct2024 16:28:52.170] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(vinery) [02oct2024 16:28:52.170] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(vinery) [02oct2024 16:28:52.170] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(vinery) [02oct2024 16:28:52.170] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(vinery) [02oct2024 16:28:52.170] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(vinery) [02oct2024 16:28:52.170] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(vinery)] [02oct2024 16:28:52.170] [main/DEBUG] [mixin/]: Registering mixin config: vinery-common.mixins.json [02oct2024 16:28:52.170] [main/DEBUG] [mixin/]: Registering mixin config: vinery.mixins.json [02oct2024 16:28:52.171] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(yuushya) [02oct2024 16:28:52.171] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(yuushya) [02oct2024 16:28:52.171] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(yuushya) [02oct2024 16:28:52.171] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(yuushya) [02oct2024 16:28:52.171] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(yuushya) [02oct2024 16:28:52.171] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yuushya)] [02oct2024 16:28:52.171] [main/DEBUG] [mixin/]: Registering mixin config: yuushya-common.mixins.json [02oct2024 16:28:52.171] [main/DEBUG] [mixin/]: Registering mixin config: yuushya.mixins.json [02oct2024 16:28:52.172] [main/ERROR] [mixin/]: Mixin config yuushya.mixins.json does not specify "minVersion" property [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mr_limesplatus_ending) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mr_limesplatus_ending) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mr_limesplatus_ending) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mr_limesplatus_ending) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mr_limesplatus_ending) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mr_limesplatus_ending)] [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(aiimprovements) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(aiimprovements) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(aiimprovements) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(aiimprovements) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(aiimprovements) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(aiimprovements)] [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(conditional_mixin) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(conditional_mixin) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(conditional_mixin) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(conditional_mixin) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(conditional_mixin) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(conditional_mixin)] [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betterendisland) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betterendisland) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betterendisland) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betterendisland) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betterendisland) [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterendisland)] [02oct2024 16:28:52.172] [main/DEBUG] [mixin/]: Registering mixin config: betterendisland.mixins.json [02oct2024 16:28:52.173] [main/DEBUG] [mixin/]: Registering mixin config: betterendisland_forge.mixins.json [02oct2024 16:28:52.174] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(enhancedai) [02oct2024 16:28:52.174] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(enhancedai) [02oct2024 16:28:52.174] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(enhancedai) [02oct2024 16:28:52.174] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(enhancedai) [02oct2024 16:28:52.174] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(enhancedai) [02oct2024 16:28:52.174] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(enhancedai)] [02oct2024 16:28:52.174] [main/DEBUG] [mixin/]: Registering mixin config: enhancedai.mixins.json [02oct2024 16:28:52.174] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by enhancedai.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.174] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(framework) [02oct2024 16:28:52.174] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(framework) [02oct2024 16:28:52.174] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(framework) [02oct2024 16:28:52.174] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(framework) [02oct2024 16:28:52.174] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(framework) [02oct2024 16:28:52.174] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(framework)] [02oct2024 16:28:52.175] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(t_and_t) [02oct2024 16:28:52.175] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(t_and_t) [02oct2024 16:28:52.175] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(t_and_t) [02oct2024 16:28:52.175] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(t_and_t) [02oct2024 16:28:52.175] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(t_and_t) [02oct2024 16:28:52.175] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(t_and_t)] [02oct2024 16:28:52.175] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(bettermineshafts) [02oct2024 16:28:52.175] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(bettermineshafts) [02oct2024 16:28:52.175] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(bettermineshafts) [02oct2024 16:28:52.175] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(bettermineshafts) [02oct2024 16:28:52.175] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(bettermineshafts) [02oct2024 16:28:52.175] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(bettermineshafts)] [02oct2024 16:28:52.175] [main/DEBUG] [mixin/]: Registering mixin config: bettermineshafts.mixins.json [02oct2024 16:28:52.175] [main/DEBUG] [mixin/]: Registering mixin config: bettermineshafts_forge.mixins.json [02oct2024 16:28:52.176] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(playerrevive) [02oct2024 16:28:52.176] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(playerrevive) [02oct2024 16:28:52.176] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(playerrevive) [02oct2024 16:28:52.176] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(playerrevive) [02oct2024 16:28:52.176] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(playerrevive) [02oct2024 16:28:52.176] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(playerrevive)] [02oct2024 16:28:52.176] [main/DEBUG] [mixin/]: Registering mixin config: playerrevive.mixins.json [02oct2024 16:28:52.176] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(nebs) [02oct2024 16:28:52.176] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(nebs) [02oct2024 16:28:52.176] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(nebs) [02oct2024 16:28:52.176] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(nebs) [02oct2024 16:28:52.176] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(nebs) [02oct2024 16:28:52.176] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(nebs)] [02oct2024 16:28:52.176] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betterjungletemples) [02oct2024 16:28:52.177] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betterjungletemples) [02oct2024 16:28:52.177] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betterjungletemples) [02oct2024 16:28:52.177] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betterjungletemples) [02oct2024 16:28:52.177] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betterjungletemples) [02oct2024 16:28:52.177] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterjungletemples)] [02oct2024 16:28:52.177] [main/DEBUG] [mixin/]: Registering mixin config: betterjungletemples.mixins.json [02oct2024 16:28:52.177] [main/DEBUG] [mixin/]: Registering mixin config: betterjungletemples_forge.mixins.json [02oct2024 16:28:52.178] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(soulsweapons) [02oct2024 16:28:52.178] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(soulsweapons) [02oct2024 16:28:52.178] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(soulsweapons) [02oct2024 16:28:52.178] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(soulsweapons) [02oct2024 16:28:52.178] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(soulsweapons) [02oct2024 16:28:52.178] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(soulsweapons)] [02oct2024 16:28:52.178] [main/DEBUG] [mixin/]: Registering mixin config: soulsweapons.mixins.json [02oct2024 16:28:52.178] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(retrodamageindicators) [02oct2024 16:28:52.178] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(retrodamageindicators) [02oct2024 16:28:52.178] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(retrodamageindicators) [02oct2024 16:28:52.178] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(retrodamageindicators) [02oct2024 16:28:52.178] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(retrodamageindicators) [02oct2024 16:28:52.178] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(retrodamageindicators)] [02oct2024 16:28:52.178] [main/DEBUG] [mixin/]: Registering mixin config: retrodamageindicators.mixins.json [02oct2024 16:28:52.179] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(trashslot) [02oct2024 16:28:52.179] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(trashslot) [02oct2024 16:28:52.179] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(trashslot) [02oct2024 16:28:52.179] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(trashslot) [02oct2024 16:28:52.179] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(trashslot) [02oct2024 16:28:52.179] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(trashslot)] [02oct2024 16:28:52.179] [main/DEBUG] [mixin/]: Registering mixin config: trashslot.mixins.json [02oct2024 16:28:52.179] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(nomoportals) [02oct2024 16:28:52.179] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(nomoportals) [02oct2024 16:28:52.179] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(nomoportals) [02oct2024 16:28:52.179] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(nomoportals) [02oct2024 16:28:52.179] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(nomoportals) [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(nomoportals)] [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: Registering mixin config: nomoportals.mixins.json [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(rechiseled) [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(rechiseled) [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(rechiseled) [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(rechiseled) [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(rechiseled) [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(rechiseled)] [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(rechiseled_chipped) [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(rechiseled_chipped) [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(rechiseled_chipped) [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(rechiseled_chipped) [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(rechiseled_chipped) [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(rechiseled_chipped)] [02oct2024 16:28:52.180] [main/DEBUG] [mixin/]: Registering mixin config: rechiseled_chipped.mixins.json [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by rechiseled_chipped.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(octolib) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(octolib) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(octolib) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(octolib) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(octolib) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(octolib)] [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(xlpackets) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(xlpackets) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(xlpackets) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(xlpackets) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(xlpackets) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(xlpackets)] [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Registering mixin config: xlpackets.mixins.json [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(jei) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(jei) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(jei) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(jei) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(jei) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jei)] [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(attributefix) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(attributefix) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(attributefix) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(attributefix) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(attributefix) [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(attributefix)] [02oct2024 16:28:52.181] [main/DEBUG] [mixin/]: Registering mixin config: attributefix.mixins.json [02oct2024 16:28:52.182] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(caelus) [02oct2024 16:28:52.182] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(caelus) [02oct2024 16:28:52.182] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(caelus) [02oct2024 16:28:52.182] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(caelus) [02oct2024 16:28:52.182] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(caelus) [02oct2024 16:28:52.182] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(caelus)] [02oct2024 16:28:52.182] [main/DEBUG] [mixin/]: Registering mixin config: caelus.mixins.json [02oct2024 16:28:52.182] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(obscure_api) [02oct2024 16:28:52.182] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(obscure_api) [02oct2024 16:28:52.182] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(obscure_api) [02oct2024 16:28:52.182] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(obscure_api) [02oct2024 16:28:52.182] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(obscure_api) [02oct2024 16:28:52.182] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(obscure_api)] [02oct2024 16:28:52.182] [main/DEBUG] [mixin/]: Registering mixin config: obscure_api.mixins.json [02oct2024 16:28:52.183] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(waystones) [02oct2024 16:28:52.183] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(waystones) [02oct2024 16:28:52.183] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(waystones) [02oct2024 16:28:52.183] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(waystones) [02oct2024 16:28:52.183] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(waystones) [02oct2024 16:28:52.183] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(waystones)] [02oct2024 16:28:52.183] [main/DEBUG] [mixin/]: Registering mixin config: waystones.mixins.json [02oct2024 16:28:52.183] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(clumps) [02oct2024 16:28:52.183] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(clumps) [02oct2024 16:28:52.183] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(clumps) [02oct2024 16:28:52.183] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(clumps) [02oct2024 16:28:52.183] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(clumps) [02oct2024 16:28:52.183] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(clumps)] [02oct2024 16:28:52.183] [main/DEBUG] [mixin/]: Registering mixin config: clumps.mixins.json [02oct2024 16:28:52.184] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(ppfluids) [02oct2024 16:28:52.184] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(ppfluids) [02oct2024 16:28:52.184] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(ppfluids) [02oct2024 16:28:52.184] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(ppfluids) [02oct2024 16:28:52.184] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(ppfluids) [02oct2024 16:28:52.184] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(ppfluids)] [02oct2024 16:28:52.184] [main/DEBUG] [mixin/]: Registering mixin config: ppfluids.mixins.json [02oct2024 16:28:52.184] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(artifacts) [02oct2024 16:28:52.184] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(artifacts) [02oct2024 16:28:52.184] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(artifacts) [02oct2024 16:28:52.184] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(artifacts) [02oct2024 16:28:52.184] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(artifacts) [02oct2024 16:28:52.184] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(artifacts)] [02oct2024 16:28:52.184] [main/DEBUG] [mixin/]: Registering mixin config: mixins.artifacts.common.json [02oct2024 16:28:52.185] [main/DEBUG] [mixin/]: Registering mixin config: mixins.artifacts.forge.json [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(itemborders) [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(itemborders) [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(itemborders) [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(itemborders) [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(itemborders) [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(itemborders)] [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: Registering mixin config: itemborders.mixins.json [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by itemborders.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(betterdeserttemples) [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(betterdeserttemples) [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(betterdeserttemples) [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(betterdeserttemples) [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(betterdeserttemples) [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterdeserttemples)] [02oct2024 16:28:52.186] [main/DEBUG] [mixin/]: Registering mixin config: betterdeserttemples.mixins.json [02oct2024 16:28:52.187] [main/DEBUG] [mixin/]: Registering mixin config: betterdeserttemples_forge.mixins.json [02oct2024 16:28:52.187] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(terralith) [02oct2024 16:28:52.187] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(terralith) [02oct2024 16:28:52.187] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(terralith) [02oct2024 16:28:52.187] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(terralith) [02oct2024 16:28:52.187] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(terralith) [02oct2024 16:28:52.187] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(terralith)] [02oct2024 16:28:52.187] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(fusion) [02oct2024 16:28:52.187] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(fusion) [02oct2024 16:28:52.187] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(fusion) [02oct2024 16:28:52.187] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(fusion) [02oct2024 16:28:52.187] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(fusion) [02oct2024 16:28:52.187] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fusion)] [02oct2024 16:28:52.188] [main/DEBUG] [mixin/]: Registering mixin config: fusion.mixins.json [02oct2024 16:28:52.188] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(crafttweaker) [02oct2024 16:28:52.188] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(crafttweaker) [02oct2024 16:28:52.188] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(crafttweaker) [02oct2024 16:28:52.188] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(crafttweaker) [02oct2024 16:28:52.188] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(crafttweaker) [02oct2024 16:28:52.188] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(crafttweaker)] [02oct2024 16:28:52.188] [main/DEBUG] [mixin/]: Registering mixin config: crafttweaker.mixins.json [02oct2024 16:28:52.188] [main/DEBUG] [mixin/]: Registering mixin config: crafttweaker.forge.mixins.json [02oct2024 16:28:52.189] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(watut) [02oct2024 16:28:52.189] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(watut) [02oct2024 16:28:52.189] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(watut) [02oct2024 16:28:52.189] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(watut) [02oct2024 16:28:52.189] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(watut) [02oct2024 16:28:52.189] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(watut)] [02oct2024 16:28:52.189] [main/DEBUG] [mixin/]: Registering mixin config: watut.mixins.json [02oct2024 16:28:52.189] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(miningmaster) [02oct2024 16:28:52.189] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(miningmaster) [02oct2024 16:28:52.189] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(miningmaster) [02oct2024 16:28:52.189] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(miningmaster) [02oct2024 16:28:52.189] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(miningmaster) [02oct2024 16:28:52.189] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(miningmaster)] [02oct2024 16:28:52.189] [main/DEBUG] [mixin/]: Registering mixin config: mining-master.mixins.json [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by mining-master.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(genshinstrument) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(genshinstrument) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(genshinstrument) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(genshinstrument) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(genshinstrument) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(genshinstrument)] [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(puzzlesaccessapi) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(puzzlesaccessapi) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(puzzlesaccessapi) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(puzzlesaccessapi) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(puzzlesaccessapi) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(puzzlesaccessapi)] [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(dungeons_arise_seven_seas) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(dungeons_arise_seven_seas) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(dungeons_arise_seven_seas) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(dungeons_arise_seven_seas) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(dungeons_arise_seven_seas) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(dungeons_arise_seven_seas)] [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(travelerstitles) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(travelerstitles) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(travelerstitles) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(travelerstitles) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(travelerstitles) [02oct2024 16:28:52.190] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(travelerstitles)] [02oct2024 16:28:52.191] [main/DEBUG] [mixin/]: Registering mixin config: travelerstitles.mixins.json [02oct2024 16:28:52.191] [main/DEBUG] [mixin/]: Registering mixin config: travelerstitles_forge.mixins.json [02oct2024 16:28:52.191] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(elytratrims) [02oct2024 16:28:52.191] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(elytratrims) [02oct2024 16:28:52.191] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(elytratrims) [02oct2024 16:28:52.191] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(elytratrims) [02oct2024 16:28:52.191] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(elytratrims) [02oct2024 16:28:52.191] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(elytratrims)] [02oct2024 16:28:52.191] [main/DEBUG] [mixin/]: Registering mixin config: elytratrims-client.mixins.json [02oct2024 16:28:52.192] [main/DEBUG] [mixin/]: Registering mixin config: elytratrims-common.mixins.json [02oct2024 16:28:52.192] [main/DEBUG] [mixin/]: Registering mixin config: elytratrims-compat.mixins.json [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(dungeons_arise) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(dungeons_arise) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(dungeons_arise) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(dungeons_arise) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(dungeons_arise) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(dungeons_arise)] [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(terramity) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(terramity) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(terramity) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(terramity) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(terramity) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(terramity)] [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(voicechat) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(voicechat) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(voicechat) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(voicechat) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(voicechat) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(voicechat)] [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(simplyswords) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(simplyswords) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(simplyswords) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(simplyswords) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(simplyswords) [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(simplyswords)] [02oct2024 16:28:52.193] [main/DEBUG] [mixin/]: Registering mixin config: simplyswords-common.mixins.json [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: Registering mixin config: simplyswords.mixins.json [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(libipn) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(libipn) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(libipn) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(libipn) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(libipn) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(libipn)] [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(enchdesc) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(enchdesc) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(enchdesc) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(enchdesc) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(enchdesc) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(enchdesc)] [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(moonlight) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(moonlight) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(moonlight) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(moonlight) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(moonlight) [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(moonlight)] [02oct2024 16:28:52.194] [main/DEBUG] [mixin/]: Registering mixin config: moonlight-common.mixins.json [02oct2024 16:28:52.221] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out [02oct2024 16:28:52.222] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[PREINIT] [02oct2024 16:28:52.234] [main/DEBUG] [mixin/]: Registering mixin config: moonlight.mixins.json [02oct2024 16:28:52.235] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(itemphysiclite) [02oct2024 16:28:52.235] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(itemphysiclite) [02oct2024 16:28:52.235] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(itemphysiclite) [02oct2024 16:28:52.235] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(itemphysiclite) [02oct2024 16:28:52.235] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(itemphysiclite) [02oct2024 16:28:52.235] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(itemphysiclite)] [02oct2024 16:28:52.235] [main/DEBUG] [mixin/]: Registering mixin config: itemphysiclite.mixins.json [02oct2024 16:28:52.235] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(bettercombat) [02oct2024 16:28:52.235] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(bettercombat) [02oct2024 16:28:52.236] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(bettercombat) [02oct2024 16:28:52.236] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(bettercombat) [02oct2024 16:28:52.236] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(bettercombat) [02oct2024 16:28:52.236] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(bettercombat)] [02oct2024 16:28:52.236] [main/DEBUG] [mixin/]: Registering mixin config: bettercombat.mixins.json [02oct2024 16:28:52.236] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(necronomicon) [02oct2024 16:28:52.236] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(necronomicon) [02oct2024 16:28:52.236] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(necronomicon) [02oct2024 16:28:52.236] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(necronomicon) [02oct2024 16:28:52.236] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(necronomicon) [02oct2024 16:28:52.236] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(necronomicon)] [02oct2024 16:28:52.236] [main/DEBUG] [mixin/]: Registering mixin config: necronomicon.forge.mixins.json [02oct2024 16:28:52.237] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by necronomicon.forge.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [02oct2024 16:28:52.237] [main/ERROR] [mixin/]: Mixin config necronomicon.forge.mixins.json does not specify "minVersion" property [02oct2024 16:28:52.237] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mixinsquared) [02oct2024 16:28:52.237] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mixinsquared) [02oct2024 16:28:52.237] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mixinsquared) [02oct2024 16:28:52.237] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mixinsquared) [02oct2024 16:28:52.237] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mixinsquared) [02oct2024 16:28:52.237] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixinsquared)] [02oct2024 16:28:52.237] [main/DEBUG] [mixin/]: Registering mixin config: mixinsquared.init.mixins.json [02oct2024 16:28:52.238] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(jade) [02oct2024 16:28:52.238] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(jade) [02oct2024 16:28:52.238] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(jade) [02oct2024 16:28:52.238] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(jade) [02oct2024 16:28:52.238] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(jade) [02oct2024 16:28:52.238] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jade)] [02oct2024 16:28:52.238] [main/DEBUG] [mixin/]: Registering mixin config: jade.mixins.json [02oct2024 16:28:52.238] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by jade.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [02oct2024 16:28:52.238] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(creativecore) [02oct2024 16:28:52.238] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(creativecore) [02oct2024 16:28:52.238] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(creativecore) [02oct2024 16:28:52.238] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(creativecore) [02oct2024 16:28:52.238] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(creativecore) [02oct2024 16:28:52.238] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(creativecore)] [02oct2024 16:28:52.239] [main/DEBUG] [mixin/]: Registering mixin config: creativecore.mixins.json [02oct2024 16:28:52.239] [main/DEBUG] [mixin/]: Registering mixin config: creativecore.forge.mixins.json [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mr_hostile_mobsimproveovertime) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mr_hostile_mobsimproveovertime) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mr_hostile_mobsimproveovertime) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mr_hostile_mobsimproveovertime) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mr_hostile_mobsimproveovertime) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mr_hostile_mobsimproveovertime)] [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(kotlinforforge) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(kotlinforforge) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(kotlinforforge) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(kotlinforforge) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(kotlinforforge) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(kotlinforforge)] [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(easy_villagers) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(easy_villagers) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(easy_villagers) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(easy_villagers) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(easy_villagers) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(easy_villagers)] [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(iceberg) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(iceberg) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(iceberg) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(iceberg) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(iceberg) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(iceberg)] [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Registering mixin config: iceberg.mixins.json [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(fuze_relics) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(fuze_relics) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(fuze_relics) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(fuze_relics) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(fuze_relics) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fuze_relics)] [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(legendarytooltips) [02oct2024 16:28:52.240] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(legendarytooltips) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(legendarytooltips) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(legendarytooltips) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(legendarytooltips) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(legendarytooltips)] [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Registering mixin config: legendarytooltips.mixins.json [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(xaerominimap) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(xaerominimap) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(xaerominimap) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(xaerominimap) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(xaerominimap) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(xaerominimap)] [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(securitycraft) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(securitycraft) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(securitycraft) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(securitycraft) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(securitycraft) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(securitycraft)] [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Registering mixin config: securitycraft.mixins.json [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(storagedrawers) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(storagedrawers) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(storagedrawers) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(storagedrawers) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(storagedrawers) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(storagedrawers)] [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(armoroftheages) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(armoroftheages) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(armoroftheages) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(armoroftheages) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(armoroftheages) [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(armoroftheages)] [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Registering mixin config: armoroftheages.mixins.json [02oct2024 16:28:52.241] [main/DEBUG] [mixin/]: Registering mixin config: armoroftheages.forge.mixins.json [02oct2024 16:28:52.242] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mna) [02oct2024 16:28:52.242] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mna) [02oct2024 16:28:52.242] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mna) [02oct2024 16:28:52.242] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mna) [02oct2024 16:28:52.242] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mna) [02oct2024 16:28:52.242] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mna)] [02oct2024 16:28:52.242] [main/DEBUG] [mixin/]: Registering mixin config: mna.mixins.json [02oct2024 16:28:52.242] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(armourers_workshop) [02oct2024 16:28:52.242] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(armourers_workshop) [02oct2024 16:28:52.242] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(armourers_workshop) [02oct2024 16:28:52.242] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(armourers_workshop) [02oct2024 16:28:52.242] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(armourers_workshop) [02oct2024 16:28:52.242] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(armourers_workshop)] [02oct2024 16:28:52.242] [main/DEBUG] [mixin/]: Registering mixin config: armourersworkshop-mixins.json [02oct2024 16:28:52.243] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by armourersworkshop-mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [02oct2024 16:28:52.243] [main/DEBUG] [mixin/]: Registering mixin config: armourersworkshop-forge-mixins.json [02oct2024 16:28:52.244] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by armourersworkshop-forge-mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [02oct2024 16:28:52.244] [main/DEBUG] [mixin/]: Registering mixin config: armourersworkshop-compatibility-mixins.json [02oct2024 16:28:52.244] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by armourersworkshop-compatibility-mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [02oct2024 16:28:52.244] [main/DEBUG] [mixin/]: Registering mixin config: armourersworkshop-compatibility-forge-mixins.json [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by armourersworkshop-compatibility-forge-mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(inventoryhud) [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(inventoryhud) [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(inventoryhud) [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(inventoryhud) [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(inventoryhud) [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(inventoryhud)] [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(coroutil) [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(coroutil) [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(coroutil) [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(coroutil) [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(coroutil) [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(coroutil)] [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: Registering mixin config: coroutil.mixins.json [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(creeperoverhaul) [02oct2024 16:28:52.245] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(creeperoverhaul) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(creeperoverhaul) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(creeperoverhaul) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(creeperoverhaul) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(creeperoverhaul)] [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Registering mixin config: creeperoverhaul-common.mixins.json [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(appleskin) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(appleskin) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(appleskin) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(appleskin) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(appleskin) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(appleskin)] [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(alexsdelight) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(alexsdelight) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(alexsdelight) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(alexsdelight) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(alexsdelight) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(alexsdelight)] [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(lootr) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(lootr) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(lootr) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(lootr) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(lootr) [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(lootr)] [02oct2024 16:28:52.246] [main/DEBUG] [mixin/]: Registering mixin config: lootr.mixins.json [02oct2024 16:28:52.247] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(ferritecore) [02oct2024 16:28:52.247] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(ferritecore) [02oct2024 16:28:52.247] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(ferritecore) [02oct2024 16:28:52.247] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(ferritecore) [02oct2024 16:28:52.247] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(ferritecore) [02oct2024 16:28:52.247] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(ferritecore)] [02oct2024 16:28:52.247] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.predicates.mixin.json [02oct2024 16:28:52.248] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.fastmap.mixin.json [02oct2024 16:28:52.248] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.mrl.mixin.json [02oct2024 16:28:52.248] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.dedupmultipart.mixin.json [02oct2024 16:28:52.249] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.blockstatecache.mixin.json [02oct2024 16:28:52.249] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.dedupbakedquad.mixin.json [02oct2024 16:28:52.250] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.threaddetec.mixin.json [02oct2024 16:28:52.250] [main/DEBUG] [mixin/]: Registering mixin config: ferritecore.modelsides.mixin.json [02oct2024 16:28:52.250] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(yet_another_config_lib_v3) [02oct2024 16:28:52.250] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(yet_another_config_lib_v3) [02oct2024 16:28:52.250] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(yet_another_config_lib_v3) [02oct2024 16:28:52.250] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(yet_another_config_lib_v3) [02oct2024 16:28:52.250] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(yet_another_config_lib_v3) [02oct2024 16:28:52.250] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yet_another_config_lib_v3)] [02oct2024 16:28:52.250] [main/DEBUG] [mixin/]: Registering mixin config: yacl.mixins.json [02oct2024 16:28:52.251] [main/ERROR] [mixin/]: Mixin config yacl.mixins.json does not specify "minVersion" property [02oct2024 16:28:52.251] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(embeddium_extra) [02oct2024 16:28:52.251] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(embeddium_extra) [02oct2024 16:28:52.251] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(embeddium_extra) [02oct2024 16:28:52.251] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(embeddium_extra) [02oct2024 16:28:52.251] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(embeddium_extra) [02oct2024 16:28:52.251] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(embeddium_extra)] [02oct2024 16:28:52.251] [main/DEBUG] [mixin/]: Registering mixin config: sodium-extra.mixins.json [02oct2024 16:28:52.252] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(puzzleslib) [02oct2024 16:28:52.252] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(puzzleslib) [02oct2024 16:28:52.252] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(puzzleslib) [02oct2024 16:28:52.252] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(puzzleslib) [02oct2024 16:28:52.252] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(puzzleslib) [02oct2024 16:28:52.252] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(puzzleslib)] [02oct2024 16:28:52.252] [main/DEBUG] [mixin/]: Registering mixin config: puzzleslib.common.mixins.json [02oct2024 16:28:52.253] [main/DEBUG] [mixin/]: Registering mixin config: puzzleslib.forge.mixins.json [02oct2024 16:28:52.253] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(aquaculture) [02oct2024 16:28:52.253] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(aquaculture) [02oct2024 16:28:52.253] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(aquaculture) [02oct2024 16:28:52.253] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(aquaculture) [02oct2024 16:28:52.253] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(aquaculture) [02oct2024 16:28:52.253] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(aquaculture)] [02oct2024 16:28:52.253] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(immersive_melodies) [02oct2024 16:28:52.253] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(immersive_melodies) [02oct2024 16:28:52.253] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(immersive_melodies) [02oct2024 16:28:52.253] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(immersive_melodies) [02oct2024 16:28:52.253] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(immersive_melodies) [02oct2024 16:28:52.253] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(immersive_melodies)] [02oct2024 16:28:52.253] [main/DEBUG] [mixin/]: Registering mixin config: immersive_melodies.mixin.json [02oct2024 16:28:52.254] [main/DEBUG] [mixin/]: Compatibility level JAVA_16 specified by immersive_melodies.mixin.json is higher than the maximum level supported by this version of mixin (JAVA_13). [02oct2024 16:28:52.254] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(expandability) [02oct2024 16:28:52.254] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(expandability) [02oct2024 16:28:52.254] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(expandability) [02oct2024 16:28:52.254] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(expandability) [02oct2024 16:28:52.254] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(expandability) [02oct2024 16:28:52.254] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(expandability)] [02oct2024 16:28:52.254] [main/DEBUG] [mixin/]: Registering mixin config: expandability.mixins.json [02oct2024 16:28:52.254] [main/DEBUG] [mixin/]: Registering mixin config: expandability-common.mixins.json [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(aquamirae) [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(aquamirae) [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(aquamirae) [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(aquamirae) [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(aquamirae) [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(aquamirae)] [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: Registering mixin config: aquamirae.mixins.json [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: Compatibility level JAVA_8 specified by aquamirae.mixins.json is lower than the default level supported by the current mixin service (JAVA_16). [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(cristellib) [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(cristellib) [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(cristellib) [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(cristellib) [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(cristellib) [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(cristellib)] [02oct2024 16:28:52.255] [main/DEBUG] [mixin/]: Registering mixin config: cristellib-common.mixins.json [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Registering mixin config: cristellib.mixins.json [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(mclib) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(mclib) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(mclib) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(mclib) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(mclib) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mclib)] [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(org.quiltmc.parsers.json) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(org.quiltmc.parsers.json) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(org.quiltmc.parsers.json) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(org.quiltmc.parsers.json) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(org.quiltmc.parsers.json) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(org.quiltmc.parsers.json)] [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(com.twelvemonkeys.imageio.webp) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(com.twelvemonkeys.imageio.webp) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(com.twelvemonkeys.imageio.webp) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(com.twelvemonkeys.imageio.webp) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(com.twelvemonkeys.imageio.webp) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(com.twelvemonkeys.imageio.webp)] [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(org.jheaps) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(org.jheaps) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(org.jheaps) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(org.jheaps) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(org.jheaps) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(org.jheaps)] [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(com.twelvemonkeys.common.lang) [02oct2024 16:28:52.256] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(com.twelvemonkeys.common.lang) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(com.twelvemonkeys.common.lang) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(com.twelvemonkeys.common.lang) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(com.twelvemonkeys.common.lang) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(com.twelvemonkeys.common.lang)] [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(com.twelvemonkeys.imageio.metadata) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(com.twelvemonkeys.imageio.metadata) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(com.twelvemonkeys.imageio.metadata) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(com.twelvemonkeys.imageio.metadata) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(com.twelvemonkeys.imageio.metadata) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(com.twelvemonkeys.imageio.metadata)] [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(org.yaml.snakeyaml) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(org.yaml.snakeyaml) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(org.yaml.snakeyaml) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(org.yaml.snakeyaml) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(org.yaml.snakeyaml) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(org.yaml.snakeyaml)] [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(MixinSquared.beta._4) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(MixinSquared.beta._4) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(MixinSquared.beta._4) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(MixinSquared.beta._4) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(MixinSquared.beta._4) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(MixinSquared.beta._4)] [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(org.jgrapht.core) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(org.jgrapht.core) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(org.jgrapht.core) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(org.jgrapht.core) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(org.jgrapht.core) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(org.jgrapht.core)] [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(yabn) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(yabn) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(yabn) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(yabn) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(yabn) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yabn)] [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(org.quiltmc.parsers.gson) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(org.quiltmc.parsers.gson) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(org.quiltmc.parsers.gson) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(org.quiltmc.parsers.gson) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(org.quiltmc.parsers.gson) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(org.quiltmc.parsers.gson)] [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(org.apfloat) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(org.apfloat) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(org.apfloat) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(org.apfloat) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(org.apfloat) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(org.apfloat)] [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(NanoLiveConfig) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(NanoLiveConfig) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(NanoLiveConfig) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(NanoLiveConfig) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(NanoLiveConfig) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(NanoLiveConfig)] [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(bytecodecs) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(bytecodecs) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(bytecodecs) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(bytecodecs) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(bytecodecs) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(bytecodecs)] [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(jankson) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(jankson) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(jankson) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(jankson) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(jankson) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jankson)] [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(com.twelvemonkeys.common.image) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(com.twelvemonkeys.common.image) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(com.twelvemonkeys.common.image) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(com.twelvemonkeys.common.image) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(com.twelvemonkeys.common.image) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(com.twelvemonkeys.common.image)] [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(jcpp) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(jcpp) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(jcpp) [02oct2024 16:28:52.257] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(jcpp) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(jcpp) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jcpp)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(com.twelvemonkeys.imageio.core) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(com.twelvemonkeys.imageio.core) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(com.twelvemonkeys.imageio.core) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(com.twelvemonkeys.imageio.core) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(com.twelvemonkeys.imageio.core) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(com.twelvemonkeys.imageio.core)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(thedarkcolour.kotlinforforge.kfflib) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(thedarkcolour.kotlinforforge.kfflib) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(thedarkcolour.kotlinforforge.kfflib) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(thedarkcolour.kotlinforforge.kfflib) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(thedarkcolour.kotlinforforge.kfflib) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(thedarkcolour.kotlinforforge.kfflib)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(com.twelvemonkeys.common.io) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(com.twelvemonkeys.common.io) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(com.twelvemonkeys.common.io) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(com.twelvemonkeys.common.io) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(com.twelvemonkeys.common.io) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(com.twelvemonkeys.common.io)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(MixinExtras) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(MixinExtras) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(MixinExtras) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(MixinExtras) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(MixinExtras) [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(MixinExtras)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: inject() running with 179 agents [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(cyclopscore)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(skyvillages)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterdungeons)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(kuma_api)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(supermartijn642configlib)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(geckolib)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(playeranimator)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betteroceanmonuments)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(incendium)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(aquaculturedelight)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(sophisticatedcore)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(scbrass)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(insanelib)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(xaeroworldmap)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(everlastingskins)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(prism)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(citadel)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(alexsmobs)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(evilcraft)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yungsapi)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(powah)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixinextras)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(bookshelf)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(sophisticatedbackpacks)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(rch_supplementaries_compat)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(grimoireofgaia)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(pickupnotifier)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(balm)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fpsreducer)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(projectile_damage)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jeresources)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(shieldexp)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterfortresses)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(cloth_config)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(dummmmmmy)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(twilightforest)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(supplementaries)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(emojiful)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(embeddium)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(embeddiumplus)] [02oct2024 16:28:52.258] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(athena)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(prettypipes)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(advancementplaques)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(chipped)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(farmersdelight)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(immersiveui)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fastipping)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(supermartijn642corelib)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yungsbridges)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(resourcefulconfig)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jerintegration)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(born_in_chaos_v1)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(lionfishapi)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(touhou_little_maid)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(netmusic)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(cataclysm)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(curios)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(patchouli)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(armorpointspp)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(rightclickharvest)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(oculus)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(camera)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(advancednetherite)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mr_dungeons_andtaverns)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(scguns)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterstrongholds)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(tombstone)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(customnpcs)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(ysns)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(resourcefullib)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(inventoryprofilesnext)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(deeperdarker)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(architectury)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(doapi)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(vinery)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yuushya)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mr_limesplatus_ending)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(aiimprovements)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(conditional_mixin)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterendisland)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(enhancedai)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(framework)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(t_and_t)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(bettermineshafts)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(playerrevive)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(nebs)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterjungletemples)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(soulsweapons)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(retrodamageindicators)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(trashslot)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(nomoportals)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(rechiseled)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(rechiseled_chipped)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(octolib)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(xlpackets)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jei)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(attributefix)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(caelus)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(obscure_api)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(waystones)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(clumps)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(ppfluids)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(artifacts)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(itemborders)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(betterdeserttemples)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(terralith)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fusion)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(crafttweaker)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(watut)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(miningmaster)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(genshinstrument)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(puzzlesaccessapi)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(dungeons_arise_seven_seas)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(travelerstitles)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(elytratrims)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(dungeons_arise)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] [02oct2024 16:28:52.259] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(terramity)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(voicechat)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(simplyswords)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(libipn)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(enchdesc)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(moonlight)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(itemphysiclite)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(bettercombat)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(necronomicon)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mixinsquared)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jade)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(creativecore)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mr_hostile_mobsimproveovertime)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(kotlinforforge)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(easy_villagers)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(iceberg)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(fuze_relics)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(legendarytooltips)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(xaerominimap)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(securitycraft)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(storagedrawers)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(armoroftheages)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mna)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(armourers_workshop)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(inventoryhud)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(coroutil)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(creeperoverhaul)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(appleskin)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(alexsdelight)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(lootr)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(ferritecore)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yet_another_config_lib_v3)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(embeddium_extra)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(puzzleslib)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(aquaculture)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(immersive_melodies)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(expandability)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(aquamirae)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(cristellib)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(mclib)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(org.quiltmc.parsers.json)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(com.twelvemonkeys.imageio.webp)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(org.jheaps)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(com.twelvemonkeys.common.lang)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(com.twelvemonkeys.imageio.metadata)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(org.yaml.snakeyaml)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(MixinSquared.beta._4)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(org.jgrapht.core)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(yabn)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(org.quiltmc.parsers.gson)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(org.apfloat)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(NanoLiveConfig)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(bytecodecs)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jankson)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(com.twelvemonkeys.common.image)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(jcpp)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(com.twelvemonkeys.imageio.core)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(thedarkcolour.kotlinforforge.kfflib)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(com.twelvemonkeys.common.io)] [02oct2024 16:28:52.260] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(MixinExtras)] [02oct2024 16:28:52.261] [main/DEBUG] [mixin/]: Checking for additional mixins for MixinEnvironment[PREINIT] [02oct2024 16:28:52.262] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [de.maxhenkel.camera.MixinConnector] [02oct2024 16:28:52.263] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [] [02oct2024 16:28:52.264] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] [02oct2024 16:28:52.264] [main/DEBUG] [mixin/]: Selecting config betterdungeons.mixins.json [02oct2024 16:28:52.266] [main/DEBUG] [mixin/]: Selecting config betterdungeons_forge.mixins.json [02oct2024 16:28:52.267] [main/DEBUG] [mixin/]: Selecting config kuma_api.mixins.json [02oct2024 16:28:52.267] [main/DEBUG] [mixin/]: Selecting config kuma_api.forge.mixins.json [02oct2024 16:28:52.268] [main/DEBUG] [mixin/]: Selecting config geckolib.mixins.json [02oct2024 16:28:52.268] [main/DEBUG] [mixin/]: Selecting config playerAnimator-common.mixins.json [02oct2024 16:28:52.269] [main/DEBUG] [mixin/]: Selecting config betteroceanmonuments.mixins.json [02oct2024 16:28:52.270] [main/DEBUG] [mixin/]: Selecting config betteroceanmonuments_forge.mixins.json [02oct2024 16:28:52.270] [main/DEBUG] [mixin/]: Selecting config insanelib.mixins.json [02oct2024 16:28:52.271] [main/DEBUG] [mixin/]: Selecting config everlastingskins.mixins.json [02oct2024 16:28:52.271] [main/DEBUG] [mixin/]: Selecting config prism.mixins.json [02oct2024 16:28:52.271] [main/DEBUG] [mixin/]: Selecting config citadel.mixins.json [02oct2024 16:28:52.272] [main/DEBUG] [mixin/]: Selecting config yungsapi.mixins.json [02oct2024 16:28:52.273] [main/DEBUG] [mixin/]: Selecting config yungsapi_forge.mixins.json [02oct2024 16:28:52.273] [main/DEBUG] [mixin/]: Selecting config mixinextras.init.mixins.json [02oct2024 16:28:52.290] [main/DEBUG] [MixinExtras|Service/]: com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.0) is taking over from null [02oct2024 16:28:52.309] [main/DEBUG] [mixin/]: Registering new injector for @Inject with org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo [02oct2024 16:28:52.310] [main/DEBUG] [mixin/]: Registering new injector for @ModifyArg with org.spongepowered.asm.mixin.injection.struct.ModifyArgInjectionInfo [02oct2024 16:28:52.310] [main/DEBUG] [mixin/]: Registering new injector for @ModifyArgs with org.spongepowered.asm.mixin.injection.struct.ModifyArgsInjectionInfo [02oct2024 16:28:52.311] [main/DEBUG] [mixin/]: Registering new injector for @Redirect with org.spongepowered.asm.mixin.injection.struct.RedirectInjectionInfo [02oct2024 16:28:52.311] [main/DEBUG] [mixin/]: Registering new injector for @ModifyVariable with org.spongepowered.asm.mixin.injection.struct.ModifyVariableInjectionInfo [02oct2024 16:28:52.312] [main/DEBUG] [mixin/]: Registering new injector for @ModifyConstant with org.spongepowered.asm.mixin.injection.struct.ModifyConstantInjectionInfo [02oct2024 16:28:52.318] [main/DEBUG] [mixin/]: Selecting config bookshelf.common.mixins.json [02oct2024 16:28:52.319] [main/DEBUG] [mixin/]: Selecting config bookshelf.forge.mixins.json [02oct2024 16:28:52.320] [main/DEBUG] [mixin/]: Selecting config rch_supplementaries_compat.mixins.json [02oct2024 16:28:52.321] [main/DEBUG] [mixin/]: Selecting config pickupnotifier.common.mixins.json [02oct2024 16:28:52.321] [main/DEBUG] [mixin/]: Selecting config balm.mixins.json [02oct2024 16:28:52.322] [main/DEBUG] [mixin/]: Selecting config fpsreducer.mixins.json [02oct2024 16:28:52.323] [main/INFO] [fpsreducer/]: OptiFine was NOT detected. [02oct2024 16:28:52.324] [main/INFO] [fpsreducer/]: OptiFabric was NOT detected. [02oct2024 16:28:52.325] [main/DEBUG] [mixin/]: Selecting config projectile_damage.mixins.json [02oct2024 16:28:52.325] [main/DEBUG] [mixin/]: Selecting config shieldexp.mixins.json [02oct2024 16:28:52.325] [main/DEBUG] [mixin/]: Selecting config betterfortresses.mixins.json [02oct2024 16:28:52.326] [main/DEBUG] [mixin/]: Selecting config betterfortresses_forge.mixins.json [02oct2024 16:28:52.326] [main/DEBUG] [mixin/]: Selecting config dummmmmmy-common.mixins.json [02oct2024 16:28:52.327] [main/DEBUG] [mixin/]: Selecting config dummmmmmy.mixins.json [02oct2024 16:28:52.327] [main/DEBUG] [mixin/]: Selecting config supplementaries-common.mixins.json [02oct2024 16:28:52.328] [main/DEBUG] [mixin/]: Selecting config supplementaries.mixins.json [02oct2024 16:28:52.328] [main/DEBUG] [mixin/]: Selecting config emojiful.mixins.json [02oct2024 16:28:52.329] [main/DEBUG] [mixin/]: Selecting config embeddium.mixins.json [02oct2024 16:28:52.333] [main/INFO] [Embeddium/]: Loaded configuration file for Embeddium: 204 options available, 3 override(s) found [02oct2024 16:28:52.337] [main/DEBUG] [mixin/]: Selecting config embeddiumplus.mixin.json [02oct2024 16:28:52.338] [main/DEBUG] [mixin/]: Selecting config athena.mixins.json [02oct2024 16:28:52.338] [main/DEBUG] [mixin/]: Selecting config athena-forge.mixins.json [02oct2024 16:28:52.339] [main/DEBUG] [mixin/]: Selecting config chipped-common.mixins.json [02oct2024 16:28:52.339] [main/DEBUG] [mixin/]: Selecting config farmersdelight.mixins.json [02oct2024 16:28:52.339] [main/DEBUG] [mixin/]: Selecting config immersiveui-common.mixins.json [02oct2024 16:28:52.340] [main/DEBUG] [mixin/]: Selecting config immersiveui.mixins.json [02oct2024 16:28:52.340] [main/DEBUG] [mixin/]: Selecting config fastipping.mixins.json [02oct2024 16:28:52.340] [main/DEBUG] [mixin/]: Selecting config supermartijn642corelib.mixins.json [02oct2024 16:28:52.341] [main/DEBUG] [mixin/]: Selecting config yungsbridges.mixins.json [02oct2024 16:28:52.341] [main/DEBUG] [mixin/]: Selecting config yungsbridges_forge.mixins.json [02oct2024 16:28:52.341] [main/DEBUG] [mixin/]: Selecting config lionfishapi.mixins.json [02oct2024 16:28:52.342] [main/DEBUG] [mixin/]: Selecting config touhou_little_maid.mixins.json [02oct2024 16:28:52.342] [main/DEBUG] [mixin/]: Selecting config cataclysm.mixins.json [02oct2024 16:28:52.342] [main/DEBUG] [mixin/]: Selecting config curios.mixins.json [02oct2024 16:28:52.343] [main/DEBUG] [mixin/]: Selecting config patchouli_xplat.mixins.json [02oct2024 16:28:52.343] [main/DEBUG] [mixin/]: Selecting config armorpointspp.mixins.json [02oct2024 16:28:52.344] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.json [02oct2024 16:28:52.346] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.fantastic.json [02oct2024 16:28:52.348] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.vertexformat.json [02oct2024 16:28:52.349] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.bettermipmaps.json [02oct2024 16:28:52.350] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.fixes.maxfpscrash.json [02oct2024 16:28:52.351] [main/DEBUG] [mixin/]: Selecting config oculus-batched-entity-rendering.mixins.json [02oct2024 16:28:52.352] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.compat.sodium.json [02oct2024 16:28:52.354] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.compat.indigo.json [02oct2024 16:28:52.355] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.compat.indium.json [02oct2024 16:28:52.357] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.compat.dh.json [02oct2024 16:28:52.359] [main/DEBUG] [mixin/]: Selecting config mixins.oculus.compat.pixelmon.json [02oct2024 16:28:52.360] [main/DEBUG] [mixin/]: Selecting config scguns.mixins.json [02oct2024 16:28:52.362] [main/DEBUG] [mixin/]: Selecting config betterstrongholds.mixins.json [02oct2024 16:28:52.362] [main/DEBUG] [mixin/]: Selecting config betterstrongholds_forge.mixins.json [02oct2024 16:28:52.362] [main/DEBUG] [mixin/]: Selecting config tombstone.mixins.json [02oct2024 16:28:52.363] [main/DEBUG] [mixin/]: Selecting config customnpcs.mixins.json [02oct2024 16:28:52.363] [main/DEBUG] [mixin/]: Selecting config ysns.mixins.json [02oct2024 16:28:52.364] [main/DEBUG] [mixin/]: Selecting config mixins.ipnext.json [02oct2024 16:28:52.366] [main/DEBUG] [mixin/]: Selecting config mixins.deeperdarker.json [02oct2024 16:28:52.366] [main/DEBUG] [mixin/]: Selecting config architectury.mixins.json [02oct2024 16:28:52.367] [main/DEBUG] [mixin/]: Selecting config architectury-common.mixins.json [02oct2024 16:28:52.367] [main/DEBUG] [mixin/]: Selecting config doapi-common.mixins.json [02oct2024 16:28:52.367] [main/DEBUG] [mixin/]: Selecting config doapi.mixins.json [02oct2024 16:28:52.368] [main/DEBUG] [mixin/]: Selecting config vinery-common.mixins.json [02oct2024 16:28:52.368] [main/DEBUG] [mixin/]: Selecting config vinery.mixins.json [02oct2024 16:28:52.368] [main/DEBUG] [mixin/]: Selecting config yuushya-common.mixins.json [02oct2024 16:28:52.369] [main/DEBUG] [mixin/]: Selecting config yuushya.mixins.json [02oct2024 16:28:52.369] [main/DEBUG] [mixin/]: Selecting config betterendisland.mixins.json [02oct2024 16:28:52.369] [main/DEBUG] [mixin/]: Selecting config betterendisland_forge.mixins.json [02oct2024 16:28:52.369] [main/DEBUG] [mixin/]: Selecting config enhancedai.mixins.json [02oct2024 16:28:52.369] [main/DEBUG] [mixin/]: Selecting config bettermineshafts.mixins.json [02oct2024 16:28:52.369] [main/DEBUG] [mixin/]: Selecting config bettermineshafts_forge.mixins.json [02oct2024 16:28:52.370] [main/DEBUG] [mixin/]: Selecting config playerrevive.mixins.json [02oct2024 16:28:52.370] [main/DEBUG] [mixin/]: Selecting config betterjungletemples.mixins.json [02oct2024 16:28:52.370] [main/DEBUG] [mixin/]: Selecting config betterjungletemples_forge.mixins.json [02oct2024 16:28:52.371] [main/DEBUG] [mixin/]: Selecting config soulsweapons.mixins.json [02oct2024 16:28:52.371] [main/DEBUG] [mixin/]: Selecting config retrodamageindicators.mixins.json [02oct2024 16:28:52.371] [main/DEBUG] [mixin/]: Selecting config trashslot.mixins.json [02oct2024 16:28:52.372] [main/WARN] [mixin/]: Reference map 'trashslot.refmap.json' for trashslot.mixins.json could not be read. If this is a development environment you can ignore this message [02oct2024 16:28:52.372] [main/DEBUG] [mixin/]: Selecting config nomoportals.mixins.json [02oct2024 16:28:52.373] [main/DEBUG] [mixin/]: Selecting config rechiseled_chipped.mixins.json [02oct2024 16:28:52.373] [main/WARN] [mixin/]: Reference map 'rechiseledchipped.refmap.json' for rechiseled_chipped.mixins.json could not be read. If this is a development environment you can ignore this message [02oct2024 16:28:52.373] [main/DEBUG] [mixin/]: Selecting config xlpackets.mixins.json [02oct2024 16:28:52.374] [main/WARN] [mixin/]: Reference map 'xlpackets.refmap.json' for xlpackets.mixins.json could not be read. If this is a development environment you can ignore this message [02oct2024 16:28:52.374] [main/DEBUG] [mixin/]: Selecting config attributefix.mixins.json [02oct2024 16:28:52.374] [main/DEBUG] [mixin/]: Selecting config caelus.mixins.json [02oct2024 16:28:52.375] [main/DEBUG] [mixin/]: Selecting config obscure_api.mixins.json [02oct2024 16:28:52.375] [main/DEBUG] [mixin/]: Selecting config waystones.mixins.json [02oct2024 16:28:52.376] [main/DEBUG] [mixin/]: Selecting config clumps.mixins.json [02oct2024 16:28:52.376] [main/DEBUG] [mixin/]: Selecting config ppfluids.mixins.json [02oct2024 16:28:52.376] [main/DEBUG] [mixin/]: Selecting config mixins.artifacts.common.json [02oct2024 16:28:52.377] [main/DEBUG] [mixin/]: Selecting config mixins.artifacts.forge.json [02oct2024 16:28:52.377] [main/DEBUG] [mixin/]: Selecting config itemborders.mixins.json [02oct2024 16:28:52.378] [main/DEBUG] [mixin/]: Selecting config betterdeserttemples.mixins.json [02oct2024 16:28:52.378] [main/DEBUG] [mixin/]: Selecting config betterdeserttemples_forge.mixins.json [02oct2024 16:28:52.378] [main/DEBUG] [mixin/]: Selecting config fusion.mixins.json [02oct2024 16:28:52.379] [main/DEBUG] [mixin/]: Selecting config crafttweaker.mixins.json [02oct2024 16:28:52.379] [main/DEBUG] [mixin/]: Selecting config crafttweaker.forge.mixins.json [02oct2024 16:28:52.379] [main/DEBUG] [mixin/]: Selecting config watut.mixins.json [02oct2024 16:28:52.380] [main/DEBUG] [mixin/]: Selecting config mining-master.mixins.json [02oct2024 16:28:52.380] [main/DEBUG] [mixin/]: Selecting config travelerstitles.mixins.json [02oct2024 16:28:52.381] [main/DEBUG] [mixin/]: Selecting config travelerstitles_forge.mixins.json [02oct2024 16:28:52.381] [main/DEBUG] [mixin/]: Selecting config elytratrims-client.mixins.json [02oct2024 16:28:52.387] [main/DEBUG] [mixin/]: Selecting config elytratrims-common.mixins.json [02oct2024 16:28:52.387] [main/DEBUG] [mixin/]: Selecting config elytratrims-compat.mixins.json [02oct2024 16:28:52.388] [main/DEBUG] [mixin/]: Selecting config simplyswords-common.mixins.json [02oct2024 16:28:52.388] [main/DEBUG] [mixin/]: Selecting config simplyswords.mixins.json [02oct2024 16:28:52.388] [main/WARN] [mixin/]: Reference map 'simplyswords-forge-refmap.json' for simplyswords.mixins.json could not be read. If this is a development environment you can ignore this message [02oct2024 16:28:52.389] [main/DEBUG] [mixin/]: Selecting config moonlight-common.mixins.json [02oct2024 16:28:52.390] [main/DEBUG] [mixin/]: Selecting config moonlight.mixins.json [02oct2024 16:28:52.390] [main/DEBUG] [mixin/]: Selecting config itemphysiclite.mixins.json [02oct2024 16:28:52.391] [main/DEBUG] [mixin/]: Selecting config bettercombat.mixins.json [02oct2024 16:28:52.392] [main/DEBUG] [mixin/]: Selecting config necronomicon.forge.mixins.json [02oct2024 16:28:52.392] [main/DEBUG] [mixin/]: Selecting config mixinsquared.init.mixins.json [02oct2024 16:28:52.398] [main/DEBUG] [mixin/]: Registering new target selector for @mixinsquared:handler with com.bawnorton.mixinsquared.selector.DynamicSelectorHandler [02oct2024 16:28:52.402] [main/DEBUG] [mixin/]: Selecting config jade.mixins.json [02oct2024 16:28:52.402] [main/DEBUG] [mixin/]: Selecting config creativecore.mixins.json [02oct2024 16:28:52.403] [main/DEBUG] [mixin/]: Selecting config creativecore.forge.mixins.json [02oct2024 16:28:52.403] [main/DEBUG] [mixin/]: Selecting config iceberg.mixins.json [02oct2024 16:28:52.404] [main/DEBUG] [mixin/]: Selecting config legendarytooltips.mixins.json [02oct2024 16:28:52.404] [main/DEBUG] [mixin/]: Selecting config securitycraft.mixins.json [02oct2024 16:28:52.405] [main/DEBUG] [mixin/]: Selecting config armoroftheages.mixins.json [02oct2024 16:28:52.405] [main/DEBUG] [mixin/]: Selecting config armoroftheages.forge.mixins.json [02oct2024 16:28:52.405] [main/DEBUG] [mixin/]: Selecting config mna.mixins.json [02oct2024 16:28:52.406] [main/DEBUG] [mixin/]: Selecting config armourersworkshop-mixins.json [02oct2024 16:28:52.407] [main/DEBUG] [mixin/]: Selecting config armourersworkshop-forge-mixins.json [02oct2024 16:28:52.407] [main/DEBUG] [mixin/]: Selecting config armourersworkshop-compatibility-mixins.json [02oct2024 16:28:52.408] [main/DEBUG] [mixin/]: Selecting config armourersworkshop-compatibility-forge-mixins.json [02oct2024 16:28:52.408] [main/DEBUG] [mixin/]: Selecting config coroutil.mixins.json [02oct2024 16:28:52.408] [main/WARN] [mixin/]: Reference map 'coroutil.refmap.json' for coroutil.mixins.json could not be read. If this is a development environment you can ignore this message [02oct2024 16:28:52.409] [main/DEBUG] [mixin/]: Selecting config creeperoverhaul-common.mixins.json [02oct2024 16:28:52.409] [main/DEBUG] [mixin/]: Selecting config lootr.mixins.json [02oct2024 16:28:52.409] [main/DEBUG] [mixin/]: Selecting config ferritecore.predicates.mixin.json [02oct2024 16:28:52.417] [main/DEBUG] [mixin/]: Selecting config ferritecore.fastmap.mixin.json [02oct2024 16:28:52.418] [main/DEBUG] [mixin/]: Selecting config ferritecore.mrl.mixin.json [02oct2024 16:28:52.419] [main/DEBUG] [mixin/]: Selecting config ferritecore.dedupmultipart.mixin.json [02oct2024 16:28:52.420] [main/DEBUG] [mixin/]: Selecting config ferritecore.blockstatecache.mixin.json [02oct2024 16:28:52.420] [main/DEBUG] [mixin/]: Selecting config ferritecore.dedupbakedquad.mixin.json [02oct2024 16:28:52.421] [main/DEBUG] [mixin/]: Selecting config ferritecore.threaddetec.mixin.json [02oct2024 16:28:52.422] [main/DEBUG] [mixin/]: Selecting config ferritecore.modelsides.mixin.json [02oct2024 16:28:52.422] [main/DEBUG] [mixin/]: Selecting config yacl.mixins.json [02oct2024 16:28:52.423] [main/DEBUG] [mixin/]: Selecting config sodium-extra.mixins.json [02oct2024 16:28:52.432] [main/INFO] [Embeddium Extra/]: Loaded configuration file for Sodium Extra: 35 options available, 0 override(s) found [02oct2024 16:28:52.434] [main/DEBUG] [mixin/]: Selecting config puzzleslib.common.mixins.json [02oct2024 16:28:52.445] [main/INFO] [Puzzles Lib/]: Loading 157 mods:     - advancednetherite 2.1.3     - advancementplaques 1.6.7     - aiimprovements 0.5.2     - alexsdelight 1.5     - alexsmobs 1.22.9     - appleskin 2.5.1+mc1.20.1     - aquaculture 2.5.2     - aquaculturedelight 1.0.0     - aquamirae 6.API15     - architectury 9.2.14     - armoroftheages 1.2.1     - armorpointspp 1.20-3.1.1     - armourers_workshop 3.0.0-beta.18     - artifacts 9.5.13         \-- expandability 9.0.4     - athena 3.1.2     - attributefix 21.0.4     - balm 7.3.9         \-- kuma_api 20.1.8     - bettercombat 1.8.6+1.20.1     - betterdeserttemples 1.20-Forge-3.0.3     - betterdungeons 1.20-Forge-4.0.4     - betterendisland 1.20-Forge-2.0.6     - betterfortresses 1.20-Forge-2.0.6     - betterjungletemples 1.20-Forge-2.0.5     - bettermineshafts 1.20-Forge-4.0.4     - betteroceanmonuments 1.20-Forge-3.0.4     - betterstrongholds 1.20-Forge-4.0.3     - bookshelf 20.2.13     - born_in_chaos_v1 1.0.0     - caelus 3.2.0+1.20.1     - camera 1.20.1-1.0.14     - cataclysm 1.99.5     - chipped 3.0.6     - citadel 2.6.0     - cloth_config 11.1.136     - clumps 12.0.0.4     - coroutil 1.20.1-1.3.7     - crafttweaker 14.0.43     - creativecore 2.12.15     - creeperoverhaul 3.0.2     - cristellib 1.1.5     - curios 5.10.0+1.20.1     - customnpcs 1.20.1.20240824     - cyclopscore 1.19.5     - deeperdarker 1.3.2     - doapi 1.2.15         \-- terraform 7.0.1     - dummmmmmy 1.20-2.0.2     - dungeons_arise 2.1.58-1.20.x     - dungeons_arise_seven_seas 1.0.2     - easy_villagers 1.20.1-1.1.23     - elytratrims 3.4.4         |-- conditional_mixin 0.6.2         \-- mixinsquared 0.1.2-beta.4     - embeddium 0.3.31+mc1.20.1         \-- rubidium 0.7.1     - embeddium_extra 0.5.4.3+mc1.20.1-build.121     - embeddiumplus 1.2.13     - emojiful 4.2.0     - enchdesc 17.1.18     - enhancedai 2.5.2     - everlastingskins 1.0     - evilcraft 1.2.47         \-- evilcraftcompat 1.2.47     - farmersdelight 1.20.1-1.2.4     - fastipping 1.0.5     - ferritecore 6.0.1     - forge 47.3.10     - fpsreducer 1.20-2.5     - framework 0.6.27     - fusion 1.1.1     - fuze_relics 1.0.9     - geckolib 4.4.9     - genshinstrument 4.0.2     - grimoireofgaia 4.0.0-alpha.11     - iceberg 1.1.21     - immersive_melodies 0.3.0+1.20.1     - immersiveui 0.2.2     - incendium 5.3.5     - insanelib 1.15.0     - inventoryhud 3.4.26     - inventoryprofilesnext 1.10.10     - itemborders 1.2.1     - itemphysiclite 1.6.5     - jade 11.11.1+forge     - jei 15.19.5.99     - jeresources 1.4.0.247     - jerintegration 5.5.0     - kotlinforforge 4.11.0     - legendarytooltips 1.4.5     - libipn 4.0.2     - lionfishapi 1.9     - lootr 0.7.34.87     - minecraft 1.20.1     - miningmaster 4.1.3     - mna 3.1.0.1     - moonlight 1.20-2.13.1     - mr_dungeons_andtaverns 3.0.3.f     - mr_hostile_mobsimproveovertime 1.9.1     - mr_limesplatus_ending 1-v1.1.0c     - nebs 1.8.0     - necronomicon 1.4.2     - netmusic 0.0NONE     - nomoportals 5.8     - obscure_api 15     - octolib 0.4.2     - oculus 1.7.0     - patchouli 1.20.1-84-FORGE     - pickupnotifier 8.0.0     - playeranimator 1.0.2-rc1+1.20     - playerrevive 2.0.27     - powah 5.0.7     - ppfluids 2.0.1     - prettypipes 1.15.0     - prism 1.0.5     - projectile_damage 3.2.2+1.20.1     - puzzleslib 8.1.23         \-- puzzlesaccessapi 8.0.7     - rch_supplementaries_compat 1.0.0     - rechiseled 1.1.6     - rechiseled_chipped 1.1     - resourcefulconfig 2.1.2     - resourcefullib 2.1.29     - retrodamageindicators 1.0.1     - rightclickharvest 3.2.3+1.20.1-forge     - scbrass 0.0.1     - scguns 0.3.2.5     - securitycraft 1.9.10     - shieldexp 1.1.7a     - simplyswords 1.56.0-1.20.1     - skyvillages 1.0.4     - sophisticatedbackpacks 3.20.9.1103     - sophisticatedcore 0.6.29.697     - soulsweapons 1.1.4.4d-1.20.1-forge}         \-- mixinextras 0.4.0     - storagedrawers 12.7.2     - supermartijn642configlib 1.1.8     - supermartijn642corelib 1.1.17+a     - supplementaries 1.20-2.8.17     - t_and_t 0.0NONE     - terralith 2.5.4     - terramity 0.9.4.1     - tombstone 8.7.4     - touhou_little_maid 1.1.12-hotfix2     - trashslot 15.1.0     - travelerstitles 1.20-Forge-4.0.2     - twilightforest 4.3.2508     - vinery 1.4.28     - voicechat 1.20.1-2.5.22     - watut 1.20.1-1.1.3     - waystones 14.1.5     - xaerominimap 24.4.0     - xaeroworldmap 1.39.0     - xlpackets 1.18.2-2.1     - yet_another_config_lib_v3 3.5.0+1.20.1-forge     - ysns 2.0.1     - yungsapi 1.20-Forge-4.0.5     - yungsbridges 1.20-Forge-4.0.3     - yuushya 2.2.0 [02oct2024 16:28:52.451] [main/DEBUG] [mixin/]: Selecting config puzzleslib.forge.mixins.json [02oct2024 16:28:52.451] [main/DEBUG] [mixin/]: Selecting config immersive_melodies.mixin.json [02oct2024 16:28:52.451] [main/DEBUG] [mixin/]: Selecting config expandability.mixins.json [02oct2024 16:28:52.452] [main/DEBUG] [mixin/]: Selecting config expandability-common.mixins.json [02oct2024 16:28:52.453] [main/DEBUG] [mixin/]: Selecting config aquamirae.mixins.json [02oct2024 16:28:52.453] [main/WARN] [mixin/]: Reference map 'Aquamirae.refmap.json' for aquamirae.mixins.json could not be read. If this is a development environment you can ignore this message [02oct2024 16:28:52.454] [main/DEBUG] [mixin/]: Selecting config cristellib-common.mixins.json [02oct2024 16:28:52.454] [main/DEBUG] [mixin/]: Selecting config cristellib.mixins.json [02oct2024 16:28:52.455] [main/WARN] [mixin/]: Reference map 'cristellib-forge-refmap.json' for cristellib.mixins.json could not be read. If this is a development environment you can ignore this message [02oct2024 16:28:52.455] [main/DEBUG] [mixin/]: Selecting config assets/camera/camera.mixins.json [02oct2024 16:28:52.455] [main/DEBUG] [mixin/]: Preparing betterdungeons.mixins.json (8) [02oct2024 16:28:52.473] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate [02oct2024 16:28:52.590] [main/DEBUG] [mixin/]: Preparing betterdungeons_forge.mixins.json (0) [02oct2024 16:28:52.590] [main/DEBUG] [mixin/]: Preparing kuma_api.mixins.json (1) [02oct2024 16:28:52.590] [main/DEBUG] [mixin/]: Preparing kuma_api.forge.mixins.json (0) [02oct2024 16:28:52.590] [main/DEBUG] [mixin/]: Preparing geckolib.mixins.json (1) [02oct2024 16:28:52.590] [main/DEBUG] [mixin/]: Preparing playerAnimator-common.mixins.json (14) [02oct2024 16:28:52.590] [main/DEBUG] [mixin/]: Preparing betteroceanmonuments.mixins.json (8) [02oct2024 16:28:52.602] [main/DEBUG] [mixin/]: Preparing betteroceanmonuments_forge.mixins.json (0) [02oct2024 16:28:52.602] [main/DEBUG] [mixin/]: Preparing insanelib.mixins.json (7) [02oct2024 16:28:52.611] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack [02oct2024 16:28:52.643] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_36170_ with desc (Lnet/minecraft/world/entity/player/PlayerModelPart;)Z [02oct2024 16:28:52.644] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_36170_ with desc (Lnet/minecraft/world/entity/player/PlayerModelPart;)Z [02oct2024 16:28:52.652] [main/DEBUG] [mixin/]: Preparing everlastingskins.mixins.json (2) [02oct2024 16:28:52.655] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_11229_ with desc (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/level/ServerLevel;)V [02oct2024 16:28:52.665] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_11229_ with desc (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/level/ServerLevel;)V [02oct2024 16:28:52.669] [main/DEBUG] [mixin/]: Preparing prism.mixins.json (1) [02oct2024 16:28:52.670] [main/DEBUG] [mixin/]: Preparing citadel.mixins.json (15) [02oct2024 16:28:52.675] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_46758_ with desc (Lnet/minecraft/core/BlockPos;)Z [02oct2024 16:28:52.693] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/server/MinecraftServer [02oct2024 16:28:52.718] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/server/MinecraftServer [02oct2024 16:28:52.744] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/server/level/ServerLevel [02oct2024 16:28:52.750] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_46758_ with desc (Lnet/minecraft/core/BlockPos;)Z [02oct2024 16:28:52.762] [main/DEBUG] [mixin/]: Preparing yungsapi.mixins.json (11) [02oct2024 16:28:52.765] [main/DEBUG] [yungsapi/]: Loaded com.yungnickyoung.minecraft.yungsapi.services.ForgePlatformHelper@2e4339c1 for service interface com.yungnickyoung.minecraft.yungsapi.services.IPlatformHelper [02oct2024 16:28:52.766] [main/DEBUG] [yungsapi/]: Loaded com.yungnickyoung.minecraft.yungsapi.services.ForgeAutoRegisterHelper@f08f8a9 for service interface com.yungnickyoung.minecraft.yungsapi.services.IAutoRegisterHelper [02oct2024 16:28:52.767] [main/DEBUG] [yungsapi/]: Loaded com.yungnickyoung.minecraft.yungsapi.services.ForgeBlockEntityTypeHelper@7d49a1a0 for service interface com.yungnickyoung.minecraft.yungsapi.services.IBlockEntityTypeHelper [02oct2024 16:28:52.772] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/server/level/ServerPlayer [02oct2024 16:28:52.776] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/server/level/ServerPlayer [02oct2024 16:28:52.784] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_36170_ with desc (Lnet/minecraft/world/entity/player/PlayerModelPart;)Z [02oct2024 16:28:52.784] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_36170_ with desc (Lnet/minecraft/world/entity/player/PlayerModelPart;)Z [02oct2024 16:28:52.808] [main/DEBUG] [mixin/]: Preparing yungsapi_forge.mixins.json (1) [02oct2024 16:28:52.808] [main/DEBUG] [mixin/]: Preparing mixinextras.init.mixins.json (0) [02oct2024 16:28:52.808] [main/DEBUG] [mixin/]: Preparing bookshelf.common.mixins.json (23) [02oct2024 16:28:52.813] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance [02oct2024 16:28:52.836] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_41435_ with desc (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/ClipContext$Fluid;)Lnet/minecraft/world/phys/BlockHitResult; [02oct2024 16:28:52.845] [main/DEBUG] [mixin/]: Preparing bookshelf.forge.mixins.json (1) [02oct2024 16:28:52.846] [main/DEBUG] [mixin/]: Preparing rch_supplementaries_compat.mixins.json (2) [02oct2024 16:28:52.849] [main/DEBUG] [mixin/]: Preparing pickupnotifier.common.mixins.json (3) [02oct2024 16:28:52.849] [main/DEBUG] [mixin/]: Preparing balm.mixins.json (17) [02oct2024 16:28:52.853] [main/DEBUG] [mixin/]: Preparing fpsreducer.mixins.json (2) [02oct2024 16:28:52.853] [main/DEBUG] [mixin/]: Preparing projectile_damage.mixins.json (5) [02oct2024 16:28:52.856] [main/DEBUG] [mixin/]: Preparing shieldexp.mixins.json (2) [02oct2024 16:28:52.857] [main/DEBUG] [mixin/]: Preparing betterfortresses.mixins.json (6) [02oct2024 16:28:52.859] [main/DEBUG] [mixin/]: Preparing betterfortresses_forge.mixins.json (0) [02oct2024 16:28:52.859] [main/DEBUG] [mixin/]: Preparing dummmmmmy-common.mixins.json (5) [02oct2024 16:28:52.862] [main/DEBUG] [mixin/]: Preparing dummmmmmy.mixins.json (0) [02oct2024 16:28:52.862] [main/DEBUG] [mixin/]: Preparing supplementaries-common.mixins.json (63) [02oct2024 16:28:52.892] [main/DEBUG] [mixin/]: @Mixin target vectorwing.farmersdelight.common.block.TomatoVineBlock is public in supplementaries-common.mixins.json:CompatFarmersDelightTomatoMixin and should be specified in value [02oct2024 16:28:52.899] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_7373_ with desc (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V [02oct2024 16:28:52.921] [main/DEBUG] [mixin/]: Preparing supplementaries.mixins.json (23) [02oct2024 16:28:52.934] [main/DEBUG] [mixin/]: @Mixin target net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds is public in supplementaries.mixins.json:TreasureMapForEmeraldsMixin and should be specified in value [02oct2024 16:28:52.942] [main/DEBUG] [mixin/]: Preparing emojiful.mixins.json (1) [02oct2024 16:28:52.942] [main/DEBUG] [mixin/]: Preparing embeddium.mixins.json (0) [02oct2024 16:28:52.942] [main/DEBUG] [mixin/]: Preparing embeddiumplus.mixin.json (29) [02oct2024 16:28:52.942] [main/DEBUG] [mixin/]: Preparing athena.mixins.json (1) [02oct2024 16:28:52.942] [main/DEBUG] [mixin/]: Preparing athena-forge.mixins.json (1) [02oct2024 16:28:52.942] [main/DEBUG] [mixin/]: Preparing chipped-common.mixins.json (2) [02oct2024 16:28:52.944] [main/DEBUG] [mixin/]: Preparing farmersdelight.mixins.json (9) [02oct2024 16:28:52.950] [main/DEBUG] [mixin/]: Preparing immersiveui-common.mixins.json (4) [02oct2024 16:28:52.950] [main/DEBUG] [mixin/]: Preparing immersiveui.mixins.json (2) [02oct2024 16:28:52.950] [main/DEBUG] [mixin/]: Preparing fastipping.mixins.json (3) [02oct2024 16:28:52.951] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/multiplayer/resolver/ServerAddressResolver (java.lang.ClassNotFoundException: net.minecraft.client.multiplayer.resolver.ServerAddressResolver) [02oct2024 16:28:52.951] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.multiplayer.resolver.ServerAddressResolver was not found fastipping.mixins.json:AddressResolverMixin [02oct2024 16:28:52.952] [main/DEBUG] [mixin/]: Preparing supermartijn642corelib.mixins.json (9) [02oct2024 16:28:52.958] [main/DEBUG] [mixin/]: Preparing yungsbridges.mixins.json (1) [02oct2024 16:28:52.960] [main/DEBUG] [mixin/]: Preparing yungsbridges_forge.mixins.json (0) [02oct2024 16:28:52.960] [main/DEBUG] [mixin/]: Preparing lionfishapi.mixins.json (2) [02oct2024 16:28:52.961] [main/DEBUG] [mixin/]: Preparing touhou_little_maid.mixins.json (7) [02oct2024 16:28:52.963] [main/DEBUG] [mixin/]: Preparing cataclysm.mixins.json (13) [02oct2024 16:28:52.968] [main/DEBUG] [mixin/]: Preparing curios.mixins.json (13) [02oct2024 16:28:52.978] [main/DEBUG] [mixin/]: Preparing patchouli_xplat.mixins.json (10) [02oct2024 16:28:52.979] [main/DEBUG] [mixin/]: Preparing armorpointspp.mixins.json (3) [02oct2024 16:28:52.979] [main/DEBUG] [mixin/]: Preparing mixins.oculus.json (86) [02oct2024 16:28:52.979] [main/DEBUG] [mixin/]: Preparing mixins.oculus.fantastic.json (5) [02oct2024 16:28:52.979] [main/DEBUG] [mixin/]: Preparing mixins.oculus.vertexformat.json (8) [02oct2024 16:28:52.979] [main/DEBUG] [mixin/]: Preparing mixins.oculus.bettermipmaps.json (0) [02oct2024 16:28:52.979] [main/DEBUG] [mixin/]: Preparing mixins.oculus.fixes.maxfpscrash.json (1) [02oct2024 16:28:52.979] [main/DEBUG] [mixin/]: Preparing oculus-batched-entity-rendering.mixins.json (17) [02oct2024 16:28:52.979] [main/DEBUG] [mixin/]: Preparing mixins.oculus.compat.sodium.json (49) [02oct2024 16:28:52.979] [main/DEBUG] [mixin/]: Preparing mixins.oculus.compat.indigo.json (1) [02oct2024 16:28:52.979] [main/DEBUG] [mixin/]: Preparing mixins.oculus.compat.indium.json (1) [02oct2024 16:28:52.979] [main/DEBUG] [mixin/]: Preparing mixins.oculus.compat.dh.json (4) [02oct2024 16:28:52.980] [main/DEBUG] [mixin/]: Preparing mixins.oculus.compat.pixelmon.json (1) [02oct2024 16:28:52.980] [main/DEBUG] [mixin/]: Preparing scguns.mixins.json (10) [02oct2024 16:28:52.982] [main/DEBUG] [mixin/]: Preparing betterstrongholds.mixins.json (2) [02oct2024 16:28:52.982] [main/DEBUG] [mixin/]: Preparing betterstrongholds_forge.mixins.json (0) [02oct2024 16:28:52.982] [main/DEBUG] [mixin/]: Preparing tombstone.mixins.json (29) [02oct2024 16:28:52.990] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Zombie [02oct2024 16:28:53.034] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/Villager [02oct2024 16:28:53.069] [main/DEBUG] [mixin/]: Preparing customnpcs.mixins.json (43) [02oct2024 16:28:53.091] [main/DEBUG] [mixin/]: Preparing ysns.mixins.json (1) [02oct2024 16:28:53.092] [main/DEBUG] [mixin/]: Preparing mixins.ipnext.json (12) [02oct2024 16:28:53.092] [main/DEBUG] [mixin/]: Preparing mixins.deeperdarker.json (8) [02oct2024 16:28:53.100] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/renderer/entity/PhantomRenderer (java.lang.ClassNotFoundException: net.minecraft.client.renderer.entity.PhantomRenderer) [02oct2024 16:28:53.100] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.renderer.entity.PhantomRenderer was not found mixins.deeperdarker.json:PhantomRendererMixin [02oct2024 16:28:53.104] [main/DEBUG] [mixin/]: Preparing architectury.mixins.json (9) [02oct2024 16:28:53.108] [main/DEBUG] [mixin/]: Preparing architectury-common.mixins.json (10) [02oct2024 16:28:53.112] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem [02oct2024 16:28:53.116] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/EntityType [02oct2024 16:28:53.139] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock [02oct2024 16:28:53.140] [main/DEBUG] [mixin/]: Preparing doapi-common.mixins.json (4) [02oct2024 16:28:53.142] [main/DEBUG] [mixin/]: Preparing doapi.mixins.json (9) [02oct2024 16:28:53.146] [main/DEBUG] [mixin/]: Preparing vinery-common.mixins.json (12) [02oct2024 16:28:53.151] [main/DEBUG] [mixin/]: Preparing vinery.mixins.json (1) [02oct2024 16:28:53.152] [main/DEBUG] [mixin/]: Preparing yuushya-common.mixins.json (1) [02oct2024 16:28:53.152] [main/DEBUG] [mixin/]: Preparing yuushya.mixins.json (0) [02oct2024 16:28:53.152] [main/DEBUG] [mixin/]: Preparing betterendisland.mixins.json (9) [02oct2024 16:28:53.159] [main/DEBUG] [mixin/]: Preparing betterendisland_forge.mixins.json (0) [02oct2024 16:28:53.160] [main/DEBUG] [mixin/]: Preparing enhancedai.mixins.json (16) [02oct2024 16:28:53.173] [main/DEBUG] [mixin/]: Preparing bettermineshafts.mixins.json (4) [02oct2024 16:28:53.174] [main/DEBUG] [mixin/]: Preparing bettermineshafts_forge.mixins.json (0) [02oct2024 16:28:53.174] [main/DEBUG] [mixin/]: Preparing playerrevive.mixins.json (5) [02oct2024 16:28:53.175] [main/DEBUG] [mixin/]: Preparing betterjungletemples.mixins.json (8) [02oct2024 16:28:53.178] [main/DEBUG] [mixin/]: Preparing betterjungletemples_forge.mixins.json (0) [02oct2024 16:28:53.178] [main/DEBUG] [mixin/]: Preparing soulsweapons.mixins.json (16) [02oct2024 16:28:53.185] [main/DEBUG] [mixin/]: Preparing retrodamageindicators.mixins.json (1) [02oct2024 16:28:53.185] [main/DEBUG] [mixin/]: Preparing trashslot.mixins.json (0) [02oct2024 16:28:53.185] [main/DEBUG] [mixin/]: Preparing nomoportals.mixins.json (2) [02oct2024 16:28:53.186] [main/DEBUG] [mixin/]: Preparing rechiseled_chipped.mixins.json (5) [02oct2024 16:28:53.190] [main/DEBUG] [mixin/]: Preparing xlpackets.mixins.json (3) [02oct2024 16:28:53.191] [main/DEBUG] [mixin/]: Preparing attributefix.mixins.json (1) [02oct2024 16:28:53.192] [main/DEBUG] [mixin/]: Preparing caelus.mixins.json (4) [02oct2024 16:28:53.192] [main/DEBUG] [mixin/]: Preparing obscure_api.mixins.json (6) [02oct2024 16:28:53.193] [main/DEBUG] [mixin/]: Preparing waystones.mixins.json (3) [02oct2024 16:28:53.194] [main/DEBUG] [mixin/]: Preparing clumps.mixins.json (2) [02oct2024 16:28:53.196] [main/DEBUG] [mixin/]: Preparing ppfluids.mixins.json (2) [02oct2024 16:28:53.198] [main/DEBUG] [mixin/]: Preparing mixins.artifacts.common.json (20) [02oct2024 16:28:53.202] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/NaturalSpawner [02oct2024 16:28:53.218] [main/DEBUG] [mixin/]: Preparing mixins.artifacts.forge.json (3) [02oct2024 16:28:53.219] [main/DEBUG] [mixin/]: Preparing itemborders.mixins.json (2) [02oct2024 16:28:53.220] [main/ERROR] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/gui/screens/inventory/AbstractContainerScreen for invalid dist DEDICATED_SERVER [02oct2024 16:28:53.221] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen (java.lang.RuntimeException: Attempted to load class net/minecraft/client/gui/screens/inventory/AbstractContainerScreen for invalid dist DEDICATED_SERVER) [02oct2024 16:28:53.221] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.gui.screens.inventory.AbstractContainerScreen was not found itemborders.mixins.json:AbstractContainerScreenMixin [02oct2024 16:28:53.224] [main/ERROR] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/gui/Gui for invalid dist DEDICATED_SERVER [02oct2024 16:28:53.224] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/gui/Gui (java.lang.RuntimeException: Attempted to load class net/minecraft/client/gui/Gui for invalid dist DEDICATED_SERVER) [02oct2024 16:28:53.224] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.gui.Gui was not found itemborders.mixins.json:GuiMixin [02oct2024 16:28:53.224] [main/DEBUG] [mixin/]: Preparing betterdeserttemples.mixins.json (9) [02oct2024 16:28:53.226] [main/DEBUG] [mixin/]: Preparing betterdeserttemples_forge.mixins.json (0) [02oct2024 16:28:53.226] [main/DEBUG] [mixin/]: Preparing fusion.mixins.json (12) [02oct2024 16:28:53.226] [main/DEBUG] [mixin/]: Preparing crafttweaker.mixins.json (34) [02oct2024 16:28:53.240] [main/DEBUG] [mixin/]: Preparing crafttweaker.forge.mixins.json (7) [02oct2024 16:28:53.242] [main/DEBUG] [mixin/]: Preparing watut.mixins.json (2) [02oct2024 16:28:53.242] [main/DEBUG] [mixin/]: Preparing mining-master.mixins.json (4) [02oct2024 16:28:53.243] [main/DEBUG] [mixin/]: Preparing travelerstitles.mixins.json (3) [02oct2024 16:28:53.243] [main/DEBUG] [mixin/]: Preparing travelerstitles_forge.mixins.json (1) [02oct2024 16:28:53.243] [main/DEBUG] [mixin/]: Preparing elytratrims-client.mixins.json (7) [02oct2024 16:28:53.244] [main/DEBUG] [mixin/]: Preparing elytratrims-common.mixins.json (3) [02oct2024 16:28:53.245] [main/DEBUG] [mixin/]: Preparing elytratrims-compat.mixins.json (7) [02oct2024 16:28:53.250] [main/WARN] [mixin/]: Error loading class: net/fabricmc/fabric/api/entity/event/v1/FabricElytraItem (java.lang.ClassNotFoundException: net.fabricmc.fabric.api.entity.event.v1.FabricElytraItem) [02oct2024 16:28:53.250] [main/DEBUG] [mixin/]: Skipping virtual target net.fabricmc.fabric.api.entity.event.v1.FabricElytraItem for elytratrims-compat.mixins.json:CustomElytraItemMixin [02oct2024 16:28:53.250] [main/DEBUG] [mixin/]: Preparing simplyswords-common.mixins.json (2) [02oct2024 16:28:53.252] [main/DEBUG] [mixin/]: Preparing simplyswords.mixins.json (0) [02oct2024 16:28:53.252] [main/DEBUG] [mixin/]: Preparing moonlight-common.mixins.json (33) [02oct2024 16:28:53.267] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/chunk/LevelChunk [02oct2024 16:28:53.269] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/chunk/LevelChunk [02oct2024 16:28:53.279] [main/DEBUG] [mixin/]: Preparing moonlight.mixins.json (10) [02oct2024 16:28:53.281] [main/DEBUG] [mixin/]: Preparing itemphysiclite.mixins.json (2) [02oct2024 16:28:53.281] [main/DEBUG] [mixin/]: Preparing bettercombat.mixins.json (17) [02oct2024 16:28:53.284] [main/DEBUG] [mixin/]: Preparing necronomicon.forge.mixins.json (1) [02oct2024 16:28:53.285] [main/DEBUG] [mixin/]: Preparing mixinsquared.init.mixins.json (0) [02oct2024 16:28:53.285] [main/DEBUG] [mixin/]: Preparing jade.mixins.json (3) [02oct2024 16:28:53.285] [main/DEBUG] [mixin/]: Preparing creativecore.mixins.json (8) [02oct2024 16:28:53.290] [main/DEBUG] [mixin/]: Preparing creativecore.forge.mixins.json (3) [02oct2024 16:28:53.291] [main/DEBUG] [mixin/]: Preparing iceberg.mixins.json (7) [02oct2024 16:28:53.293] [main/DEBUG] [mixin/]: Preparing legendarytooltips.mixins.json (1) [02oct2024 16:28:53.293] [main/DEBUG] [mixin/]: Preparing securitycraft.mixins.json (18) [02oct2024 16:28:53.299] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_7626_ with desc (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; [02oct2024 16:28:53.303] [main/DEBUG] [mixin/]: Preparing armoroftheages.mixins.json (1) [02oct2024 16:28:53.304] [main/DEBUG] [mixin/]: Preparing armoroftheages.forge.mixins.json (0) [02oct2024 16:28:53.304] [main/DEBUG] [mixin/]: Preparing mna.mixins.json (14) [02oct2024 16:28:53.310] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_7583_ with desc ()V [02oct2024 16:28:53.312] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_6083_ with desc ()V [02oct2024 16:28:53.320] [main/ERROR] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/player/LocalPlayer for invalid dist DEDICATED_SERVER [02oct2024 16:28:53.320] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/player/LocalPlayer (java.lang.RuntimeException: Attempted to load class net/minecraft/client/player/LocalPlayer for invalid dist DEDICATED_SERVER) [02oct2024 16:28:53.321] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.player.LocalPlayer was not found mna.mixins.json:LocalPlayerElytra [02oct2024 16:28:53.326] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_261044_ with desc ()V [02oct2024 16:28:53.330] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_261044_ with desc ()V [02oct2024 16:28:53.333] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_5998_ with desc (Lnet/minecraft/network/protocol/game/ClientboundLoginPacket;)V [02oct2024 16:28:53.346] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_5998_ with desc (Lnet/minecraft/network/protocol/game/ClientboundLoginPacket;)V [02oct2024 16:28:53.353] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_5771_ with desc (Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket;)V [02oct2024 16:28:53.359] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_5771_ with desc (Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket;)V [02oct2024 16:28:53.364] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_183388_ with desc (Lnet/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket;)V [02oct2024 16:28:53.366] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_183388_ with desc (Lnet/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket;)V [02oct2024 16:28:53.368] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_194198_ with desc (IILnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData;)V [02oct2024 16:28:53.370] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_194198_ with desc (IILnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData;)V [02oct2024 16:28:53.373] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_194252_ with desc (Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V [02oct2024 16:28:53.375] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_194252_ with desc (Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V [02oct2024 16:28:53.377] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_6773_ with desc (Lnet/minecraft/network/protocol/game/ClientboundBlockUpdatePacket;)V [02oct2024 16:28:53.378] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_6773_ with desc (Lnet/minecraft/network/protocol/game/ClientboundBlockUpdatePacket;)V [02oct2024 16:28:53.380] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_6571_ with desc (Lnet/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket;)V [02oct2024 16:28:53.382] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_6571_ with desc (Lnet/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket;)V [02oct2024 16:28:53.383] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_183514_ with desc (Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacket;)V [02oct2024 16:28:53.385] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_183514_ with desc (Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacket;)V [02oct2024 16:28:53.387] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_246623_ with desc (Ljava/lang/String;)V [02oct2024 16:28:53.393] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_246979_ with desc (Ljava/lang/String;)Z [02oct2024 16:28:53.395] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/client/multiplayer/ClientPacketListener [02oct2024 16:28:53.397] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/client/multiplayer/ClientPacketListener [02oct2024 16:28:53.399] [main/ERROR] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/multiplayer/ClientPacketListener for invalid dist DEDICATED_SERVER [02oct2024 16:28:53.400] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/multiplayer/ClientPacketListener (java.lang.RuntimeException: Attempted to load class net/minecraft/client/multiplayer/ClientPacketListener for invalid dist DEDICATED_SERVER) [02oct2024 16:28:53.401] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.multiplayer.ClientPacketListener was not found mna.mixins.json:ClientPacketListenerMixin [02oct2024 16:28:53.402] [main/DEBUG] [mixin/]: Preparing armourersworkshop-mixins.json (4) [02oct2024 16:28:53.405] [main/DEBUG] [mixin/]: Preparing armourersworkshop-forge-mixins.json (7) [02oct2024 16:28:53.406] [main/DEBUG] [mixin/]: Preparing armourersworkshop-compatibility-mixins.json (31) [02oct2024 16:28:53.407] [main/DEBUG] [mixin/]: Preparing armourersworkshop-compatibility-forge-mixins.json (6) [02oct2024 16:28:53.407] [main/DEBUG] [mixin/]: Preparing coroutil.mixins.json (0) [02oct2024 16:28:53.407] [main/DEBUG] [mixin/]: Preparing creeperoverhaul-common.mixins.json (1) [02oct2024 16:28:53.409] [main/DEBUG] [mixin/]: Preparing lootr.mixins.json (6) [02oct2024 16:28:53.411] [main/DEBUG] [mixin/]: Preparing ferritecore.predicates.mixin.json (3) [02oct2024 16:28:53.411] [main/DEBUG] [mixin/]: Preparing ferritecore.fastmap.mixin.json (1) [02oct2024 16:28:53.412] [main/DEBUG] [mixin/]: Preparing ferritecore.mrl.mixin.json (2) [02oct2024 16:28:53.412] [main/DEBUG] [mixin/]: Preparing ferritecore.dedupmultipart.mixin.json (2) [02oct2024 16:28:53.412] [main/DEBUG] [mixin/]: Preparing ferritecore.blockstatecache.mixin.json (8) [02oct2024 16:28:53.416] [main/DEBUG] [mixin/]: Preparing ferritecore.dedupbakedquad.mixin.json (2) [02oct2024 16:28:53.416] [main/DEBUG] [mixin/]: Preparing ferritecore.threaddetec.mixin.json (1) [02oct2024 16:28:53.416] [main/DEBUG] [mixin/]: Preparing ferritecore.modelsides.mixin.json (1) [02oct2024 16:28:53.416] [main/DEBUG] [mixin/]: Preparing yacl.mixins.json (4) [02oct2024 16:28:53.416] [main/DEBUG] [mixin/]: Preparing sodium-extra.mixins.json (45) [02oct2024 16:28:53.416] [main/DEBUG] [mixin/]: Preparing puzzleslib.common.mixins.json (3) [02oct2024 16:28:53.416] [main/DEBUG] [mixin/]: Preparing puzzleslib.forge.mixins.json (13) [02oct2024 16:28:53.421] [main/DEBUG] [mixin/]: Preparing immersive_melodies.mixin.json (13) [02oct2024 16:28:53.427] [main/DEBUG] [mixin/]: Preparing expandability.mixins.json (4) [02oct2024 16:28:53.428] [main/DEBUG] [mixin/]: Preparing expandability-common.mixins.json (9) [02oct2024 16:28:53.430] [main/DEBUG] [mixin/]: Preparing aquamirae.mixins.json (0) [02oct2024 16:28:53.430] [main/DEBUG] [mixin/]: Preparing cristellib-common.mixins.json (1) [02oct2024 16:28:53.432] [main/DEBUG] [mixin/]: Preparing cristellib.mixins.json (0) [02oct2024 16:28:53.432] [main/DEBUG] [mixin/]: Preparing assets/camera/camera.mixins.json (1) [02oct2024 16:28:53.479] [main/DEBUG] [mixin/]: Inner class net/mehvahdjukaar/supplementaries/mixins/forge/self/SelfFlammableFluidBlockMixin$1 in net/mehvahdjukaar/supplementaries/mixins/forge/self/SelfFlammableFluidBlockMixin on net/mehvahdjukaar/supplementaries/common/fluids/FlammableLiquidBlock gets unique name net/mehvahdjukaar/supplementaries/common/fluids/FlammableLiquidBlock$Anonymous$3cc2079454244273b73885fe3b0803a5 [02oct2024 16:28:53.498] [main/DEBUG] [mixin/]: Inner class net/satisfy/vinery/forge/mixin/HatItemMixin$1 in net/satisfy/vinery/forge/mixin/HatItemMixin on net/satisfy/vinery/item/WinemakerHatItem gets unique name net/satisfy/vinery/item/WinemakerHatItem$Anonymous$7277b976a48d483ebfb573b2c2437333 [02oct2024 16:28:53.500] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_78311_ with desc ()V [02oct2024 16:28:53.505] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_78311_ with desc ()V [02oct2024 16:28:53.534] [main/DEBUG] [mixin/]: Prepared 557 mixins in 1.269 sec (2.3ms avg) (0ms load, 0ms transform, 0ms plugin) [02oct2024 16:28:53.538] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.0). [02oct2024 16:28:53.539] [main/DEBUG] [mixin/]: Registering new injector for @SugarWrapper with com.llamalad7.mixinextras.sugar.impl.SugarWrapperInjectionInfo [02oct2024 16:28:53.539] [main/DEBUG] [mixin/]: Registering new injector for @FactoryRedirectWrapper with com.llamalad7.mixinextras.wrapper.factory.FactoryRedirectWrapperInjectionInfo [02oct2024 16:28:53.542] [main/DEBUG] [mixin/]: Mixing MainMixin from iceberg.mixins.json into net.minecraft.server.Main [02oct2024 16:28:53.601] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/server/MinecraftServer [02oct2024 16:28:53.602] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/server/MinecraftServer [02oct2024 16:28:53.604] [main/DEBUG] [mixin/]: Mixing MinecraftServerMixin from citadel.mixins.json into net.minecraft.server.MinecraftServer [02oct2024 16:28:53.608] [main/DEBUG] [mixin/]: Mixing MinecraftServerMixin from balm.mixins.json into net.minecraft.server.MinecraftServer [02oct2024 16:28:53.609] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$reloadResources$0(Ljava/lang/Void;)V to mdcc23e8$lambda$reloadResources$0$0 in balm.mixins.json:MinecraftServerMixin [02oct2024 16:28:53.616] [main/DEBUG] [mixin/]: Mixing common.access.server.AccessMinecraftServer from crafttweaker.mixins.json into net.minecraft.server.MinecraftServer [02oct2024 16:28:53.676] [main/DEBUG] [mixin/]: Mixing DedicatedServerMixin from tombstone.mixins.json into net.minecraft.server.dedicated.DedicatedServer [02oct2024 16:28:53.694] [main/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework [02oct2024 16:28:53.695] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple [02oct2024 16:28:53.695] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 [02oct2024 16:28:53.781] [main/DEBUG] [mixin/]: Mixing DataFixerMixin from doapi-common.mixins.json into net.minecraft.resources.ResourceLocation [02oct2024 16:28:53.820] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 [02oct2024 16:28:53.821] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@4783da3f [02oct2024 16:28:54.082] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 [02oct2024 16:28:54.082] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@4783da3f [02oct2024 16:28:54.488] [main/DEBUG] [mixin/]: Mixing SuppressLogMixin from yungsbridges.mixins.json into net.minecraft.Util [02oct2024 16:28:54.489] [main/DEBUG] [mixin/]: Mixing SuppressLogMixin from bettermineshafts.mixins.json into net.minecraft.Util [02oct2024 16:28:54.517] [main/DEBUG] [mixin/]: Mixing RegistriesMixin from projectile_damage.mixins.json into net.minecraft.core.registries.BuiltInRegistries [02oct2024 16:28:54.523] [main/DEBUG] [mixin/]: Mixing common.access.registry.AccessMappedRegistry from crafttweaker.mixins.json into net.minecraft.core.MappedRegistry [02oct2024 16:28:54.582] [main/DEBUG] [mixin/]: Mixing inject.MixinGameEvent from architectury-common.mixins.json into net.minecraft.world.level.gameevent.GameEvent [02oct2024 16:28:54.590] [main/DEBUG] [mixin/]: Mixing GameDataMixin from supermartijn642corelib.mixins.json into net.minecraftforge.registries.GameData [02oct2024 16:28:54.606] [main/DEBUG] [mixin/]: Mixing accessor.ForgeRegistryForgeAccessor from puzzleslib.forge.mixins.json into net.minecraftforge.registries.ForgeRegistry [02oct2024 16:28:54.615] [main/DEBUG] [mixin/]: Mixing inject.MixinBlock from architectury-common.mixins.json into net.minecraft.world.level.block.Block [02oct2024 16:28:54.615] [main/DEBUG] [mixin/]: Mixing BlockMixin from vinery-common.mixins.json into net.minecraft.world.level.block.Block [02oct2024 16:28:54.616] [main/DEBUG] [mixin/]: Mixing accessor.BlockAccessor from puzzleslib.common.mixins.json into net.minecraft.world.level.block.Block [02oct2024 16:28:54.624] [main/DEBUG] [mixin/]: Mixing BlockBehaviourMixin from chipped-common.mixins.json into net.minecraft.world.level.block.state.BlockBehaviour [02oct2024 16:28:54.630] [main/DEBUG] [mixin/]: Mixing common.access.block.AccessBlockBehaviour from crafttweaker.mixins.json into net.minecraft.world.level.block.state.BlockBehaviour [02oct2024 16:28:54.638] [main/DEBUG] [mixin/]: Mixing common.access.block.AccessBlockStateBase from crafttweaker.mixins.json into net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase [02oct2024 16:28:54.638] [main/DEBUG] [mixin/]: Mixing BlockStateBaseMixin from ferritecore.blockstatecache.mixin.json into net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase [02oct2024 16:28:54.639] [main/DEBUG] [mixin/]: Mixing fluidcollision.BlockStateBaseMixin from expandability-common.mixins.json into net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase [02oct2024 16:28:54.646] [main/DEBUG] [mixin/]: Mixing FastMapStateHolderMixin from ferritecore.fastmap.mixin.json into net.minecraft.world.level.block.state.StateHolder [02oct2024 16:28:54.657] [main/DEBUG] [mixin/]: Mixing accessors.entity.AccessorEntity from bookshelf.common.mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.657] [main/DEBUG] [mixin/]: Mixing EntityMixin from balm.mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.659] [main/DEBUG] [mixin/]: Mixing EntityMixin from supplementaries-common.mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.672] [main/DEBUG] [mixin/]: Mixing EntityMixin from lionfishapi.mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.682] [main/DEBUG] [mixin/]: Mixing EntityMixin from touhou_little_maid.mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.687] [main/DEBUG] [mixin/]: Mixing AccessorEntity from curios.mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.688] [main/DEBUG] [mixin/]: Mixing EntityMixin from tombstone.mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.689] [main/DEBUG] [mixin/]: Mixing EntityIMixin from customnpcs.mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.690] [main/DEBUG] [mixin/]: Mixing item.umbrella.EntityMixin from mixins.artifacts.common.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.699] [main/DEBUG] [mixin/]: Mixing item.wearable.aquadashers.EntityMixin from mixins.artifacts.common.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.724] [main/DEBUG] [mixin/]: Mixing EntityMixin from mna.mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.731] [main/DEBUG] [mixin/]: Mixing CommonDataAttachMixin from armourersworkshop-mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.732] [main/DEBUG] [mixin/]: armourersworkshop-mixins.json:CommonDataAttachMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [02oct2024 16:28:54.733] [main/DEBUG] [mixin/]: Mixing EntityJSMixin from armourersworkshop-compatibility-mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.733] [main/DEBUG] [mixin/]: armourersworkshop-compatibility-mixins.json:EntityJSMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [02oct2024 16:28:54.733] [main/DEBUG] [mixin/]: Mixing EntityActionTrackerMixin from armourersworkshop-compatibility-mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.733] [main/DEBUG] [mixin/]: armourersworkshop-compatibility-mixins.json:EntityActionTrackerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [02oct2024 16:28:54.734] [main/DEBUG] [mixin/]: Mixing VehicleEntityBreakMixin from armourersworkshop-compatibility-mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.734] [main/DEBUG] [mixin/]: armourersworkshop-compatibility-mixins.json:VehicleEntityBreakMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [02oct2024 16:28:54.736] [main/DEBUG] [mixin/]: Mixing swimming.EntityMixin from expandability.mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.737] [main/DEBUG] [mixin/]: Mixing swimming.EntityMixin from expandability-common.mixins.json into net.minecraft.world.entity.Entity [02oct2024 16:28:54.803] [main/DEBUG] [mixin/]: Mixing LivingEntityMixin from insanelib.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.803] [main/DEBUG] [mixin/]: insanelib.mixins.json:LivingEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:54.804] [main/DEBUG] [mixin/]: Mixing LivingEntityMixin from citadel.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.806] [main/DEBUG] [mixin/]: Mixing accessors.entity.AccessorLivingEntity from bookshelf.common.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.806] [main/DEBUG] [mixin/]: Mixing patches.entity.MixinLivingEntity from bookshelf.common.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.808] [main/DEBUG] [mixin/]: Mixing LivingEntityMixin from projectile_damage.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.808] [main/DEBUG] [mixin/]: Mixing LivingEntityMixin from shieldexp.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.809] [main/DEBUG] [mixin/]: Mixing LivingEntityMixin from dummmmmmy-common.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.810] [main/DEBUG] [mixin/]: Mixing LivingEntityMixin from supplementaries-common.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.813] [main/DEBUG] [mixin/]: Mixing LivingEntityMixin from supplementaries.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.813] [main/DEBUG] [mixin/]: Mixing LivingEntityMixin from cataclysm.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.814] [main/DEBUG] [mixin/]: Mixing MixinLivingEntity from curios.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.815] [main/DEBUG] [mixin/]: Mixing common.LivingEntityMixin from scguns.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.815] [main/DEBUG] [mixin/]: scguns.mixins.json:common.LivingEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:54.816] [main/DEBUG] [mixin/]: Mixing LivingEntityMixin from tombstone.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.818] [main/DEBUG] [mixin/]: Mixing EntityLivingIMixin from customnpcs.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.818] [main/DEBUG] [mixin/]: Mixing EntityLivingMixin from customnpcs.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.819] [main/DEBUG] [mixin/]: Mixing LivingEntityMixin from vinery-common.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.823] [main/DEBUG] [mixin/]: Mixing LivingEntityInvoker from soulsweapons.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.823] [main/DEBUG] [mixin/]: Mixing LivingEntityMixin from soulsweapons.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.829] [main/DEBUG] [mixin/]: Mixing MixinLivingEntity from caelus.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.830] [main/DEBUG] [mixin/]: Mixing accessors.LivingEntityAccessor from mixins.artifacts.common.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.830] [main/DEBUG] [mixin/]: Mixing item.hurtsound.LivingEntityMixin from mixins.artifacts.common.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.831] [main/DEBUG] [mixin/]: Mixing item.wearable.chorustotem.LivingEntityMixin from mixins.artifacts.common.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.837] [main/DEBUG] [mixin/]: Mixing item.wearable.snowshoes.LivingEntityMixin from mixins.artifacts.forge.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.838] [main/DEBUG] [mixin/]: Mixing PharaohKilledMixin from betterdeserttemples.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.838] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$betterdeserttemples_pharaohDie$0(Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer;)V to mdcc23e8$lambda$betterdeserttemples_pharaohDie$0$0 in betterdeserttemples.mixins.json:PharaohKilledMixin [02oct2024 16:28:54.839] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_226857_ with desc (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;J)Lnet/minecraft/world/level/levelgen/structure/StructureStart; [02oct2024 16:28:54.852] [main/DEBUG] [mixin/]: Mixing MixinLivingEntity from mining-master.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.852] [main/DEBUG] [mixin/]: mining-master.mixins.json:MixinLivingEntity: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:54.855] [main/DEBUG] [mixin/]: Mixing LivingEntityMixin from simplyswords-common.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.860] [main/DEBUG] [mixin/]: Mixing LivingEntityAccessor from bettercombat.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.861] [main/DEBUG] [mixin/]: Mixing LivingEntityMixin from bettercombat.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.861] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$getAttributeValue_Inject$0(Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/ai/attributes/Attribute;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V to mdcc23e8$lambda$getAttributeValue_Inject$0$1 in bettercombat.mixins.json:LivingEntityMixin [02oct2024 16:28:54.862] [main/DEBUG] [mixin/]: Mixing LivingEntityFireWalkerMixin from mna.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.863] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$mna$canStandOnFluid$1(Lnet/minecraft/tags/TagKey;)Z to mdcc23e8$lambda$mna$canStandOnFluid$1$2 in mna.mixins.json:LivingEntityFireWalkerMixin [02oct2024 16:28:54.863] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$mna$canStandOnFluid$0(Lnet/minecraft/tags/TagKey;)Z to mdcc23e8$lambda$mna$canStandOnFluid$0$3 in mna.mixins.json:LivingEntityFireWalkerMixin [02oct2024 16:28:54.868] [main/DEBUG] [mixin/]: Mixing LivingEntityOnClimbableMixin from mna.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.869] [main/DEBUG] [mixin/]: Mixing LivingEntityElytra from mna.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.870] [main/DEBUG] [mixin/]: Mixing swimming.LivingEntityMixin from expandability.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.870] [main/DEBUG] [mixin/]: Mixing swimming.LivingEntityMixin from expandability-common.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.871] [main/DEBUG] [mixin/]: Mixing LivingEntityMixin from obscure_api.mixins.json into net.minecraft.world.entity.LivingEntity [02oct2024 16:28:54.934] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_46758_ with desc (Lnet/minecraft/core/BlockPos;)Z [02oct2024 16:28:54.935] [main/DEBUG] [mixin/]: Mixing LevelMixin from citadel.mixins.json into net.minecraft.world.level.Level [02oct2024 16:28:54.947] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/server/level/ServerLevel [02oct2024 16:28:54.948] [main/DEBUG] [mixin/]: Mixing ServerLevelMixin from betterendisland.mixins.json into net.minecraft.server.level.ServerLevel [02oct2024 16:28:54.949] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming <init> with desc (JZZLjava/util/Optional;)V [02oct2024 16:28:54.955] [main/DEBUG] [mixin/]: Mixing ServerWorldMixin from immersive_melodies.mixin.json into net.minecraft.server.level.ServerLevel [02oct2024 16:28:54.956] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$immersiveMelodies$injectTickEntity$0(Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/ItemStack;)V to mdcc23e8$lambda$immersiveMelodies$injectTickEntity$0$0 in immersive_melodies.mixin.json:ServerWorldMixin [02oct2024 16:28:54.956] [main/DEBUG] [mixin/]: Mixing ServerLevelMixin from citadel.mixins.json into net.minecraft.server.level.ServerLevel [02oct2024 16:28:54.957] [main/DEBUG] [mixin/]: Mixing ServerWorldMixin from projectile_damage.mixins.json into net.minecraft.server.level.ServerLevel [02oct2024 16:28:54.959] [main/DEBUG] [mixin/]: Mixing ServerLevelMixin from supplementaries-common.mixins.json into net.minecraft.server.level.ServerLevel [02oct2024 16:28:54.960] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$unluckyLightning$0(Lnet/minecraft/world/entity/LivingEntity;)Z to mdcc23e8$lambda$unluckyLightning$0$1 in supplementaries-common.mixins.json:ServerLevelMixin [02oct2024 16:28:54.962] [main/DEBUG] [mixin/]: Mixing ServerLevelMixin from customnpcs.mixins.json into net.minecraft.server.level.ServerLevel [02oct2024 16:28:54.962] [main/DEBUG] [mixin/]: Mixing ServerWorldMixin from ysns.mixins.json into net.minecraft.server.level.ServerLevel [02oct2024 16:28:54.963] [main/DEBUG] [mixin/]: Mixing ServerLevelMixin from betterdeserttemples.mixins.json into net.minecraft.server.level.ServerLevel [02oct2024 16:28:54.963] [main/DEBUG] [mixin/]: Mixing common.transform.world.level.MixinServerLevel from crafttweaker.mixins.json into net.minecraft.server.level.ServerLevel [02oct2024 16:28:54.964] [main/DEBUG] [mixin/]: Mixing EndergeticExpansionMixins from betterendisland.mixins.json into net.minecraft.server.level.ServerLevel [02oct2024 16:28:54.983] [main/DEBUG] [mixin/]: Mixing ItemMixin from cataclysm.mixins.json into net.minecraft.world.entity.item.ItemEntity [02oct2024 16:28:54.984] [main/DEBUG] [mixin/]: Mixing ItemEntityMixin from customnpcs.mixins.json into net.minecraft.world.entity.item.ItemEntity [02oct2024 16:28:54.984] [main/DEBUG] [mixin/]: Mixing FireproofMixin from mna.mixins.json into net.minecraft.world.entity.item.ItemEntity [02oct2024 16:28:54.989] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_36170_ with desc (Lnet/minecraft/world/entity/player/PlayerModelPart;)Z [02oct2024 16:28:54.989] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_36170_ with desc (Lnet/minecraft/world/entity/player/PlayerModelPart;)Z [02oct2024 16:28:54.990] [main/DEBUG] [mixin/]: Mixing PlayerMixin from insanelib.mixins.json into net.minecraft.world.entity.player.Player [02oct2024 16:28:54.990] [main/DEBUG] [mixin/]: insanelib.mixins.json:PlayerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:54.992] [main/DEBUG] [mixin/]: Mixing PlayerMixin from shieldexp.mixins.json into net.minecraft.world.entity.player.Player [02oct2024 16:28:54.994] [main/DEBUG] [mixin/]: Mixing PlayerMixin from dummmmmmy-common.mixins.json into net.minecraft.world.entity.player.Player [02oct2024 16:28:54.994] [main/DEBUG] [mixin/]: Mixing PlayerProjectileMixin from supplementaries.mixins.json into net.minecraft.world.entity.player.Player [02oct2024 16:28:54.995] [main/DEBUG] [mixin/]: Mixing PlayerMixin from tombstone.mixins.json into net.minecraft.world.entity.player.Player [02oct2024 16:28:54.995] [main/DEBUG] [mixin/]: Mixing PlayerMixin from playerrevive.mixins.json into net.minecraft.world.entity.player.Player [02oct2024 16:28:54.997] [main/DEBUG] [mixin/]: Mixing PlayerEntityMixin from soulsweapons.mixins.json into net.minecraft.world.entity.player.Player [02oct2024 16:28:55.001] [main/DEBUG] [mixin/]: Mixing MixinPlayer from mining-master.mixins.json into net.minecraft.world.entity.player.Player [02oct2024 16:28:55.001] [main/DEBUG] [mixin/]: mining-master.mixins.json:MixinPlayer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:55.002] [main/DEBUG] [mixin/]: Mixing PlayerEntityAccessor from bettercombat.mixins.json into net.minecraft.world.entity.player.Player [02oct2024 16:28:55.002] [main/DEBUG] [mixin/]: Mixing PlayerEntityMixin from bettercombat.mixins.json into net.minecraft.world.entity.player.Player [02oct2024 16:28:55.008] [main/DEBUG] [mixin/]: Mixing PlayerElytra from mna.mixins.json into net.minecraft.world.entity.player.Player [02oct2024 16:28:55.008] [main/DEBUG] [mixin/]: Mixing PlayerConfalgrateNoHurtArmor from mna.mixins.json into net.minecraft.world.entity.player.Player [02oct2024 16:28:55.008] [main/DEBUG] [mixin/]: Mixing swimming.PlayerMixin from expandability-common.mixins.json into net.minecraft.world.entity.player.Player [02oct2024 16:28:55.054] [main/DEBUG] [mixin/]: Mixing inject.MixinFluid from architectury-common.mixins.json into net.minecraft.world.level.material.Fluid [02oct2024 16:28:55.058] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_41435_ with desc (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/ClipContext$Fluid;)Lnet/minecraft/world/phys/BlockHitResult; [02oct2024 16:28:55.058] [main/DEBUG] [mixin/]: Mixing ItemMixin from iceberg.mixins.json into net.minecraft.world.item.Item [02oct2024 16:28:55.059] [main/DEBUG] [mixin/]: Mixing accessors.item.AccessorItem from bookshelf.common.mixins.json into net.minecraft.world.item.Item [02oct2024 16:28:55.060] [main/DEBUG] [mixin/]: Mixing ItemMixin from tombstone.mixins.json into net.minecraft.world.item.Item [02oct2024 16:28:55.060] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$methodIsFoil$1(Lnet/minecraft/world/item/ItemStack;Lovh/corail/tombstone/api/capability/ISoulConsumer;)Ljava/lang/Boolean; to mdcc23e8$lambda$methodIsFoil$1$0 in tombstone.mixins.json:ItemMixin [02oct2024 16:28:55.060] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$methodGetName$0(Lnet/minecraft/world/item/ItemStack;Lovh/corail/tombstone/api/capability/ISoulConsumer;)Ljava/lang/Boolean; to mdcc23e8$lambda$methodGetName$0$1 in tombstone.mixins.json:ItemMixin [02oct2024 16:28:55.063] [main/DEBUG] [mixin/]: Mixing inject.MixinItem from architectury-common.mixins.json into net.minecraft.world.item.Item [02oct2024 16:28:55.063] [main/DEBUG] [mixin/]: Mixing common.access.item.AccessItem from crafttweaker.mixins.json into net.minecraft.world.item.Item [02oct2024 16:28:55.063] [main/DEBUG] [mixin/]: Renaming @Accessor method crafttweaker$getBASE_ATTACK_DAMAGE_UUID()Ljava/util/UUID; to crafttweaker$getBASE_ATTACK_DAMAGE_UUID_$md$cc23e8$2 in crafttweaker.mixins.json:common.access.item.AccessItem [02oct2024 16:28:55.063] [main/DEBUG] [mixin/]: Renaming @Accessor method crafttweaker$getBASE_ATTACK_SPEED_UUID()Ljava/util/UUID; to crafttweaker$getBASE_ATTACK_SPEED_UUID_$md$cc23e8$3 in crafttweaker.mixins.json:common.access.item.AccessItem [02oct2024 16:28:55.063] [main/DEBUG] [mixin/]: Mixing ItemMixin from moonlight-common.mixins.json into net.minecraft.world.item.Item [02oct2024 16:28:55.075] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/EntityType [02oct2024 16:28:55.087] [main/DEBUG] [mixin/]: Mixing inject.MixinEntityType from architectury-common.mixins.json into net.minecraft.world.entity.EntityType [02oct2024 16:28:55.095] [main/DEBUG] [mixin/]: Mixing EnchantmentMixin from bettercombat.mixins.json into net.minecraft.world.item.enchantment.Enchantment [02oct2024 16:28:55.099] [main/DEBUG] [mixin/]: Mixing sign.MixinBlockEntityType from doapi.mixins.json into net.minecraft.world.level.block.entity.BlockEntityType [02oct2024 16:28:55.110] [main/DEBUG] [mixin/]: Mixing MixinPoiTypes from lootr.mixins.json into net.minecraft.world.entity.ai.village.poi.PoiTypes [02oct2024 16:28:55.113] [main/DEBUG] [mixin/]: Mixing MixinPoiType from lootr.mixins.json into net.minecraft.world.entity.ai.village.poi.PoiType [02oct2024 16:28:55.123] [main/DEBUG] [mixin/]: Mixing KeepRichSoilGiantTreeMixin from farmersdelight.mixins.json into net.minecraft.world.level.levelgen.feature.Feature [02oct2024 16:28:55.124] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$keepRichSoil$0(Lnet/minecraft/world/level/block/state/BlockState;)Z to mdcc23e8$lambda$keepRichSoil$0$0 in farmersdelight.mixins.json:KeepRichSoilGiantTreeMixin [02oct2024 16:28:55.145] [main/DEBUG] [mixin/]: Mixing FireBlockMixin from insanelib.mixins.json into net.minecraft.world.level.block.FireBlock [02oct2024 16:28:55.146] [main/DEBUG] [mixin/]: insanelib.mixins.json:FireBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:55.146] [main/DEBUG] [mixin/]: Mixing FireBlockMixin from doapi.mixins.json into net.minecraft.world.level.block.FireBlock [02oct2024 16:28:55.147] [main/DEBUG] [mixin/]: Mixing FireBlockMixin from moonlight.mixins.json into net.minecraft.world.level.block.FireBlock [02oct2024 16:28:55.147] [main/DEBUG] [mixin/]: Mixing accessor.FireBlockForgeAccessor from puzzleslib.forge.mixins.json into net.minecraft.world.level.block.FireBlock [02oct2024 16:28:55.170] [main/DEBUG] [mixin/]: Mixing ShapesMixin from creativecore.mixins.json into net.minecraft.world.phys.shapes.Shapes [02oct2024 16:28:55.184] [main/DEBUG] [mixin/]: Mixing DiscreteVSAccess from ferritecore.blockstatecache.mixin.json into net.minecraft.world.phys.shapes.DiscreteVoxelShape [02oct2024 16:28:55.185] [main/DEBUG] [mixin/]: Mixing BitSetDVSAccess from ferritecore.blockstatecache.mixin.json into net.minecraft.world.phys.shapes.BitSetDiscreteVoxelShape [02oct2024 16:28:55.186] [main/DEBUG] [mixin/]: Mixing VoxelShapeAccessor from creativecore.mixins.json into net.minecraft.world.phys.shapes.VoxelShape [02oct2024 16:28:55.186] [main/DEBUG] [mixin/]: Mixing VoxelShapeAccess from ferritecore.blockstatecache.mixin.json into net.minecraft.world.phys.shapes.VoxelShape [02oct2024 16:28:55.187] [main/DEBUG] [mixin/]: Unexpected: Registered method setShape(Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;)V in net.minecraft.world.phys.shapes.VoxelShape was not merged [02oct2024 16:28:55.188] [main/DEBUG] [mixin/]: Mixing ArrayVSAccess from ferritecore.blockstatecache.mixin.json into net.minecraft.world.phys.shapes.ArrayVoxelShape [02oct2024 16:28:55.190] [main/DEBUG] [mixin/]: Mixing SliceShapeAccess from ferritecore.blockstatecache.mixin.json into net.minecraft.world.phys.shapes.SliceShape [02oct2024 16:28:55.317] [main/DEBUG] [mixin/]: Mixing SpreadingSnowyDirtBlockMixin from vinery-common.mixins.json into net.minecraft.world.level.block.SpreadingSnowyDirtBlock [02oct2024 16:28:55.320] [main/DEBUG] [mixin/]: Mixing PlantBlockMixin from vinery-common.mixins.json into net.minecraft.world.level.block.BushBlock [02oct2024 16:28:55.326] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock [02oct2024 16:28:55.326] [main/DEBUG] [mixin/]: Mixing inject.MixinLiquidBlock from architectury-common.mixins.json into net.minecraft.world.level.block.LiquidBlock [02oct2024 16:28:55.331] [main/DEBUG] [mixin/]: Mixing LeavesBlockMixin from customnpcs.mixins.json into net.minecraft.world.level.block.LeavesBlock [02oct2024 16:28:55.335] [main/DEBUG] [mixin/]: Mixing CuttingBoardDispenserMixin from farmersdelight.mixins.json into net.minecraft.world.level.block.DispenserBlock [02oct2024 16:28:55.337] [main/DEBUG] [mixin/]: Mixing accessor.DispenserBlockAccessor from moonlight-common.mixins.json into net.minecraft.world.level.block.DispenserBlock [02oct2024 16:28:55.337] [main/DEBUG] [mixin/]: Renaming @Accessor method getDispenserRegistry()Ljava/util/Map; to getDispenserRegistry_$md$cc23e8$0 in moonlight-common.mixins.json:accessor.DispenserBlockAccessor [02oct2024 16:28:55.344] [main/DEBUG] [mixin/]: Mixing WebBlockMixin from mna.mixins.json into net.minecraft.world.level.block.WebBlock [02oct2024 16:28:55.349] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_7898_ with desc (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z [02oct2024 16:28:55.356] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/StairBlock [02oct2024 16:28:55.359] [main/DEBUG] [mixin/]: Mixing ChestBlockMixin from tombstone.mixins.json into net.minecraft.world.level.block.ChestBlock [02oct2024 16:28:55.363] [main/DEBUG] [mixin/]: Mixing CropBlockMixin from balm.mixins.json into net.minecraft.world.level.block.CropBlock [02oct2024 16:28:55.374] [main/DEBUG] [mixin/]: Mixing IceBlockMixin from customnpcs.mixins.json into net.minecraft.world.level.block.IceBlock [02oct2024 16:28:55.381] [main/DEBUG] [mixin/]: Mixing CakeBlockMixin from insanelib.mixins.json into net.minecraft.world.level.block.CakeBlock [02oct2024 16:28:55.381] [main/DEBUG] [mixin/]: insanelib.mixins.json:CakeBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:55.385] [main/DEBUG] [mixin/]: Mixing IronBarsBlockMixin from supplementaries-common.mixins.json into net.minecraft.world.level.block.IronBarsBlock [02oct2024 16:28:55.389] [main/DEBUG] [mixin/]: Mixing StemBlockMixin from balm.mixins.json into net.minecraft.world.level.block.StemBlock [02oct2024 16:28:55.391] [main/DEBUG] [mixin/]: Mixing VineBlockMixin from customnpcs.mixins.json into net.minecraft.world.level.block.VineBlock [02oct2024 16:28:55.393] [main/DEBUG] [mixin/]: Mixing FenceGateBlockAccessor from touhou_little_maid.mixins.json into net.minecraft.world.level.block.FenceGateBlock [02oct2024 16:28:55.395] [main/DEBUG] [mixin/]: Mixing NetherWartBlockMixin from chipped-common.mixins.json into net.minecraft.world.level.block.NetherWartBlock [02oct2024 16:28:55.398] [main/DEBUG] [mixin/]: Mixing common.access.block.AccessAbstractCauldronBlock from crafttweaker.mixins.json into net.minecraft.world.level.block.AbstractCauldronBlock [02oct2024 16:28:55.400] [main/DEBUG] [mixin/]: Mixing common.EndPortalBlockMixin from scguns.mixins.json into net.minecraft.world.level.block.EndPortalBlock [02oct2024 16:28:55.401] [main/DEBUG] [mixin/]: scguns.mixins.json:common.EndPortalBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:55.406] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/FlowerPotBlock [02oct2024 16:28:55.414] [main/DEBUG] [mixin/]: Mixing ComparatorBlockMixin from supplementaries-common.mixins.json into net.minecraft.world.level.block.ComparatorBlock [02oct2024 16:28:55.436] [main/DEBUG] [mixin/]: Mixing swimming.BubbleColumnBlockMixin from expandability-common.mixins.json into net.minecraft.world.level.block.BubbleColumnBlock [02oct2024 16:28:55.444] [main/DEBUG] [mixin/]: Mixing CampfireBlockMixin from supplementaries-common.mixins.json into net.minecraft.world.level.block.CampfireBlock [02oct2024 16:28:55.444] [main/DEBUG] [mixin/]: Mixing CampfireBaleMixin from farmersdelight.mixins.json into net.minecraft.world.level.block.CampfireBlock [02oct2024 16:28:55.455] [main/DEBUG] [mixin/]: Mixing MixinPowderSnowBlock from curios.mixins.json into net.minecraft.world.level.block.PowderSnowBlock [02oct2024 16:28:55.455] [main/DEBUG] [mixin/]: Mixing MixinPowderSnowBlock from mining-master.mixins.json into net.minecraft.world.level.block.PowderSnowBlock [02oct2024 16:28:55.455] [main/DEBUG] [mixin/]: mining-master.mixins.json:MixinPowderSnowBlock: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:55.481] [main/DEBUG] [mixin/]: Mixing BlockPropertiesAccessor from supermartijn642corelib.mixins.json into net.minecraft.world.level.block.state.BlockBehaviour$Properties [02oct2024 16:28:55.481] [main/DEBUG] [mixin/]: Mixing sign.MixinAbstractBlockSettings from doapi.mixins.json into net.minecraft.world.level.block.state.BlockBehaviour$Properties [02oct2024 16:28:55.552] [main/DEBUG] [mixin/]: Mixing FallingBlockEntityMixin from insanelib.mixins.json into net.minecraft.world.entity.item.FallingBlockEntity [02oct2024 16:28:55.552] [main/DEBUG] [mixin/]: insanelib.mixins.json:FallingBlockEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:55.553] [main/DEBUG] [mixin/]: Mixing FallingBlockEntityMixin from supplementaries-common.mixins.json into net.minecraft.world.entity.item.FallingBlockEntity [02oct2024 16:28:55.553] [main/DEBUG] [mixin/]: Mixing MixinFallingBlockEntity from architectury.mixins.json into net.minecraft.world.entity.item.FallingBlockEntity [02oct2024 16:28:55.553] [main/DEBUG] [mixin/]: Mixing common.access.entity.AccessFallingBlockEntity from crafttweaker.mixins.json into net.minecraft.world.entity.item.FallingBlockEntity [02oct2024 16:28:55.560] [main/DEBUG] [mixin/]: Mixing CommonDataAttachMixin from armourersworkshop-mixins.json into net.minecraft.world.level.block.entity.BlockEntity [02oct2024 16:28:55.560] [main/DEBUG] [mixin/]: armourersworkshop-mixins.json:CommonDataAttachMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [02oct2024 16:28:55.561] [main/DEBUG] [mixin/]: Mixing BrushableBlockEntityMixin from tombstone.mixins.json into net.minecraft.world.level.block.entity.BrushableBlockEntity [02oct2024 16:28:55.586] [main/DEBUG] [mixin/]: Mixing accessor.DispenserBlockEntityAccessor from moonlight-common.mixins.json into net.minecraft.world.level.block.entity.DispenserBlockEntity [02oct2024 16:28:55.588] [main/DEBUG] [mixin/]: Mixing patches.block.entity.MixinBaseContainerBlockEntity from bookshelf.forge.mixins.json into net.minecraft.world.level.block.entity.BaseContainerBlockEntity [02oct2024 16:28:55.626] [main/DEBUG] [mixin/]: Mixing PistonBlockEntityMixin from moonlight-common.mixins.json into net.minecraft.world.level.block.piston.PistonMovingBlockEntity [02oct2024 16:28:55.636] [main/DEBUG] [mixin/]: Mixing AccessorRangedAttribute from attributefix.mixins.json into net.minecraft.world.entity.ai.attributes.RangedAttribute [02oct2024 16:28:55.643] [main/DEBUG] [mixin/]: Mixing KeepRichSoilTreeMixin from farmersdelight.mixins.json into net.minecraft.world.level.levelgen.feature.trunkplacers.TrunkPlacer [02oct2024 16:28:55.643] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$cancelSetDirtIfRichSoil$0(Lnet/minecraft/world/level/block/state/BlockState;)Z to mdcc23e8$lambda$cancelSetDirtIfRichSoil$0$0 in farmersdelight.mixins.json:KeepRichSoilTreeMixin [02oct2024 16:28:55.692] [main/DEBUG] [mixin/]: Mixing AbstractContainerMenuMixin from customnpcs.mixins.json into net.minecraft.world.inventory.AbstractContainerMenu [02oct2024 16:28:55.695] [main/DEBUG] [mixin/]: Mixing accessors.inventory.AccessorCraftingMenu from bookshelf.common.mixins.json into net.minecraft.world.inventory.CraftingMenu [02oct2024 16:28:55.695] [main/DEBUG] [mixin/]: Mixing ContainerMenuMixin from mixins.deeperdarker.json into net.minecraft.world.inventory.CraftingMenu [02oct2024 16:28:55.704] [main/DEBUG] [mixin/]: Mixing accessors.block.entity.AccessorSignBlockEntity from bookshelf.common.mixins.json into net.minecraft.world.level.block.entity.SignBlockEntity [02oct2024 16:28:55.724] [main/DEBUG] [mixin/]: Mixing PersistentTridentMixin from betteroceanmonuments.mixins.json into net.minecraft.world.entity.projectile.AbstractArrow [02oct2024 16:28:55.725] [main/DEBUG] [mixin/]: Mixing PersistentProjectileEntityMixin from projectile_damage.mixins.json into net.minecraft.world.entity.projectile.AbstractArrow [02oct2024 16:28:55.726] [main/DEBUG] [mixin/]: Mixing AbstractArrowMixin from supplementaries-common.mixins.json into net.minecraft.world.entity.projectile.AbstractArrow [02oct2024 16:28:55.726] [main/DEBUG] [mixin/]: Mixing MixinArrowEntity from touhou_little_maid.mixins.json into net.minecraft.world.entity.projectile.AbstractArrow [02oct2024 16:28:55.726] [main/DEBUG] [mixin/]: Mixing PersistentProjectileMixin from soulsweapons.mixins.json into net.minecraft.world.entity.projectile.AbstractArrow [02oct2024 16:28:55.727] [main/DEBUG] [mixin/]: Mixing MixinAbstractArrow from mining-master.mixins.json into net.minecraft.world.entity.projectile.AbstractArrow [02oct2024 16:28:55.727] [main/DEBUG] [mixin/]: mining-master.mixins.json:MixinAbstractArrow: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:55.735] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_226857_ with desc (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;J)Lnet/minecraft/world/level/levelgen/structure/StructureStart; [02oct2024 16:28:55.737] [main/DEBUG] [mixin/]: Mixing accessor.ProjectileAccessor from betteroceanmonuments.mixins.json into net.minecraft.world.entity.projectile.Projectile [02oct2024 16:28:55.747] [main/DEBUG] [mixin/]: Mixing accessors.entity.AccessorMob from bookshelf.common.mixins.json into net.minecraft.world.entity.Mob [02oct2024 16:28:55.747] [main/DEBUG] [mixin/]: Mixing MobMixin from tombstone.mixins.json into net.minecraft.world.entity.Mob [02oct2024 16:28:55.747] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$methodSetTarget$2(Lnet/minecraft/world/entity/LivingEntity;Ljava/util/UUID;)Ljava/lang/Boolean; to mdcc23e8$lambda$methodSetTarget$2$0 in tombstone.mixins.json:MobMixin [02oct2024 16:28:55.747] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$methodCanBeLeashed$1(Lnet/minecraft/world/entity/player/Player;Ljava/util/UUID;)Ljava/lang/Boolean; to mdcc23e8$lambda$methodCanBeLeashed$1$1 in tombstone.mixins.json:MobMixin [02oct2024 16:28:55.747] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$methodTick$0(Lnet/minecraft/world/entity/Mob;Lovh/corail/tombstone/api/capability/ISpellCaster;)V to mdcc23e8$lambda$methodTick$0$2 in tombstone.mixins.json:MobMixin [02oct2024 16:28:55.782] [main/DEBUG] [mixin/]: Mixing MobMixin from enhancedai.mixins.json into net.minecraft.world.entity.Mob [02oct2024 16:28:55.782] [main/DEBUG] [mixin/]: enhancedai.mixins.json:MobMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:55.782] [main/DEBUG] [mixin/]: Mixing accessors.MobAccessor from mixins.artifacts.common.json into net.minecraft.world.entity.Mob [02oct2024 16:28:55.782] [main/DEBUG] [mixin/]: Mixing EntityMixin from moonlight-common.mixins.json into net.minecraft.world.entity.Mob [02oct2024 16:28:55.783] [main/DEBUG] [mixin/]: Mixing MobEntityMixin from immersive_melodies.mixin.json into net.minecraft.world.entity.Mob [02oct2024 16:28:55.793] [main/DEBUG] [mixin/]: Mixing IronGolemMixin from creeperoverhaul-common.mixins.json into net.minecraft.world.entity.animal.IronGolem [02oct2024 16:28:55.802] [main/DEBUG] [mixin/]: Mixing MonsterMixin from tombstone.mixins.json into net.minecraft.world.entity.monster.Monster [02oct2024 16:28:55.820] [main/DEBUG] [mixin/]: Mixing ContainerMenuMixin from mixins.deeperdarker.json into net.minecraft.world.inventory.EnchantmentMenu [02oct2024 16:28:55.831] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack [02oct2024 16:28:55.831] [main/DEBUG] [mixin/]: Mixing ItemStackMixin from insanelib.mixins.json into net.minecraft.world.item.ItemStack [02oct2024 16:28:55.831] [main/DEBUG] [mixin/]: insanelib.mixins.json:ItemStackMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:55.832] [main/DEBUG] [mixin/]: Mixing common.ItemRarityMixin from scguns.mixins.json into net.minecraft.world.item.ItemStack [02oct2024 16:28:55.832] [main/DEBUG] [mixin/]: scguns.mixins.json:common.ItemRarityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:55.832] [main/DEBUG] [mixin/]: Mixing ItemStackMixin from tombstone.mixins.json into net.minecraft.world.item.ItemStack [02oct2024 16:28:55.832] [main/DEBUG] [mixin/]: Mixing ItemStackMixin from mixins.deeperdarker.json into net.minecraft.world.item.ItemStack [02oct2024 16:28:55.833] [main/DEBUG] [mixin/]: Mixing ItemStackMixin from bettercombat.mixins.json into net.minecraft.world.item.ItemStack [02oct2024 16:28:55.833] [main/DEBUG] [mixin/]: Mixing AnimatedItemNameMixin from necronomicon.forge.mixins.json into net.minecraft.world.item.ItemStack [02oct2024 16:28:55.833] [main/DEBUG] [mixin/]: necronomicon.forge.mixins.json:AnimatedItemNameMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [02oct2024 16:28:55.834] [main/DEBUG] [mixin/]: Mixing CommonDataAttachMixin from armourersworkshop-mixins.json into net.minecraft.world.item.ItemStack [02oct2024 16:28:55.834] [main/DEBUG] [mixin/]: armourersworkshop-mixins.json:CommonDataAttachMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [02oct2024 16:28:55.844] [main/DEBUG] [mixin/]: Mixing ContainerMenuMixin from mixins.deeperdarker.json into net.minecraft.world.inventory.ChestMenu [02oct2024 16:28:55.869] [main/DEBUG] [mixin/]: Mixing WitherEntityMixin from soulsweapons.mixins.json into net.minecraft.world.entity.boss.wither.WitherBoss [02oct2024 16:28:55.875] [main/DEBUG] [mixin/]: Mixing ContainerMenuMixin from mixins.deeperdarker.json into net.minecraft.world.inventory.ItemCombinerMenu [02oct2024 16:28:55.905] [main/DEBUG] [mixin/]: Mixing TheEndGatewayBlockEntityMixin from betterendisland.mixins.json into net.minecraft.world.level.block.entity.TheEndGatewayBlockEntity [02oct2024 16:28:55.912] [main/DEBUG] [mixin/]: Mixing ShulkerBoxBlockEntityMixin from supplementaries-common.mixins.json into net.minecraft.world.level.block.entity.ShulkerBoxBlockEntity [02oct2024 16:28:55.969] [main/DEBUG] [mixin/]: Mixing LoomMenuMixin from supplementaries-common.mixins.json into net.minecraft.world.inventory.LoomMenu [02oct2024 16:28:55.970] [main/DEBUG] [mixin/]: Mixing ContainerMenuMixin from mixins.deeperdarker.json into net.minecraft.world.inventory.LoomMenu [02oct2024 16:28:55.976] [main/DEBUG] [mixin/]: Mixing CartographyTableMixin from supplementaries-common.mixins.json into net.minecraft.world.inventory.CartographyTableMenu [02oct2024 16:28:55.978] [main/DEBUG] [mixin/]: Mixing ContainerMenuMixin from mixins.deeperdarker.json into net.minecraft.world.inventory.CartographyTableMenu [02oct2024 16:28:55.983] [main/DEBUG] [mixin/]: Mixing GrindstoneMenuMixin from supplementaries-common.mixins.json into net.minecraft.world.inventory.GrindstoneMenu [02oct2024 16:28:55.985] [main/DEBUG] [mixin/]: Mixing ContainerMenuMixin from mixins.deeperdarker.json into net.minecraft.world.inventory.GrindstoneMenu [02oct2024 16:28:55.990] [main/DEBUG] [mixin/]: Mixing LecternTileEntityMixin from assets/camera/camera.mixins.json into net.minecraft.world.level.block.entity.LecternBlockEntity [02oct2024 16:28:55.996] [main/DEBUG] [mixin/]: Mixing SmithingMenuMixin from citadel.mixins.json into net.minecraft.world.inventory.SmithingMenu [02oct2024 16:28:55.999] [main/DEBUG] [mixin/]: Mixing ContainerMenuMixin from mixins.deeperdarker.json into net.minecraft.world.inventory.StonecutterMenu [02oct2024 16:28:56.049] [main/DEBUG] [mixin/]: Mixing patches.entity.MixinLightningBolt from bookshelf.common.mixins.json into net.minecraft.world.entity.LightningBolt [02oct2024 16:28:56.051] [main/DEBUG] [mixin/]: Mixing MixinLightningBolt from architectury-common.mixins.json into net.minecraft.world.entity.LightningBolt [02oct2024 16:28:56.052] [main/DEBUG] [mixin/]: Mixing common.access.entity.AccessLightningBolt from crafttweaker.mixins.json into net.minecraft.world.entity.LightningBolt [02oct2024 16:28:56.052] [main/DEBUG] [mixin/]: Mixing LightningEntityMixin from moonlight-common.mixins.json into net.minecraft.world.entity.LightningBolt [02oct2024 16:28:56.082] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/frog/Tadpole [02oct2024 16:28:56.107] [main/DEBUG] [mixin/]: Mixing BlockItemMixin from moonlight-common.mixins.json into net.minecraft.world.item.BlockItem [02oct2024 16:28:56.108] [main/DEBUG] [mixin/]: Mixing accessor.BlockItemAccessor from puzzleslib.common.mixins.json into net.minecraft.world.item.BlockItem [02oct2024 16:28:56.113] [main/DEBUG] [mixin/]: Mixing VehicleEntityPlaceMixin$MinecartPatch from armourersworkshop-compatibility-mixins.json into net.minecraft.world.item.MinecartItem [02oct2024 16:28:56.113] [main/DEBUG] [mixin/]: armourersworkshop-compatibility-mixins.json:VehicleEntityPlaceMixin$MinecartPatch: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [02oct2024 16:28:56.117] [main/DEBUG] [mixin/]: Mixing ElytraItemMixin from elytratrims-common.mixins.json into net.minecraft.world.item.ElytraItem [02oct2024 16:28:56.118] [main/DEBUG] [mixin/]: Mixing boat.BoatItemMixin from securitycraft.mixins.json into net.minecraft.world.item.BoatItem [02oct2024 16:28:56.120] [main/DEBUG] [mixin/]: Mixing VehicleEntityPlaceMixin$BoatPatch from armourersworkshop-compatibility-mixins.json into net.minecraft.world.item.BoatItem [02oct2024 16:28:56.120] [main/DEBUG] [mixin/]: armourersworkshop-compatibility-mixins.json:VehicleEntityPlaceMixin$BoatPatch: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [02oct2024 16:28:56.124] [main/DEBUG] [mixin/]: Mixing BowMixin from supplementaries-common.mixins.json into net.minecraft.world.item.BowItem [02oct2024 16:28:56.124] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$getAllSupportedProjectiles$0(Ljava/util/function/Predicate;Lnet/minecraft/world/item/ItemStack;)Z to mdcc23e8$lambda$getAllSupportedProjectiles$0$0 in supplementaries-common.mixins.json:BowMixin [02oct2024 16:28:56.124] [main/DEBUG] [mixin/]: Mixing BowItemMixin from soulsweapons.mixins.json into net.minecraft.world.item.BowItem [02oct2024 16:28:56.127] [main/DEBUG] [mixin/]: Mixing RangedWeaponItemMixin from projectile_damage.mixins.json into net.minecraft.world.item.ProjectileWeaponItem [02oct2024 16:28:56.128] [main/DEBUG] [mixin/]: Mixing ProjectileWeaponItemMixin from supplementaries-common.mixins.json into net.minecraft.world.item.ProjectileWeaponItem [02oct2024 16:28:56.129] [main/DEBUG] [mixin/]: Mixing RangedWeaponItemMixin from bettercombat.mixins.json into net.minecraft.world.item.ProjectileWeaponItem [02oct2024 16:28:56.132] [main/DEBUG] [mixin/]: Mixing ArrowItemMixin from soulsweapons.mixins.json into net.minecraft.world.item.ArrowItem [02oct2024 16:28:56.134] [main/DEBUG] [mixin/]: Mixing SwordItemMixin from dummmmmmy-common.mixins.json into net.minecraft.world.item.SwordItem [02oct2024 16:28:56.136] [main/DEBUG] [mixin/]: Mixing ShovelItemMixin from vinery-common.mixins.json into net.minecraft.world.item.ShovelItem [02oct2024 16:28:56.137] [main/DEBUG] [mixin/]: Mixing ToolItemMixin from dummmmmmy-common.mixins.json into net.minecraft.world.item.DiggerItem [02oct2024 16:28:56.139] [main/DEBUG] [mixin/]: Mixing SoupItemMixin from farmersdelight.mixins.json into net.minecraft.world.item.BowlFoodItem [02oct2024 16:28:56.143] [main/DEBUG] [mixin/]: Mixing PaintingItemMixin from supplementaries-common.mixins.json into net.minecraft.world.item.HangingEntityItem [02oct2024 16:28:56.143] [main/DEBUG] [mixin/]: Mixing HangingEntityItemMixin from mixins.deeperdarker.json into net.minecraft.world.item.HangingEntityItem [02oct2024 16:28:56.148] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_218868_ with desc ()Ljava/util/OptionalInt; [02oct2024 16:28:56.152] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem [02oct2024 16:28:56.153] [main/DEBUG] [mixin/]: Mixing inject.MixinBucketItem from architectury-common.mixins.json into net.minecraft.world.item.BucketItem [02oct2024 16:28:56.156] [main/DEBUG] [mixin/]: Mixing MobBucketItemAccessor from supplementaries.mixins.json into net.minecraft.world.item.MobBucketItem [02oct2024 16:28:56.159] [main/DEBUG] [mixin/]: Mixing BundleItemMixin from tombstone.mixins.json into net.minecraft.world.item.BundleItem [02oct2024 16:28:56.159] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$getEnchantmentLevel$0(Lnet/minecraft/world/item/ItemStack;Lovh/corail/tombstone/api/capability/ISoulConsumer;)Ljava/lang/Boolean; to mdcc23e8$lambda$getEnchantmentLevel$0$0 in tombstone.mixins.json:BundleItemMixin [02oct2024 16:28:56.161] [main/DEBUG] [mixin/]: Mixing item.wearable.anglershat.FishingRodItemMixin from mixins.artifacts.common.json into net.minecraft.world.item.FishingRodItem [02oct2024 16:28:56.163] [main/DEBUG] [mixin/]: Mixing InkSackMixin from supplementaries-common.mixins.json into net.minecraft.world.item.InkSacItem [02oct2024 16:28:56.166] [main/DEBUG] [mixin/]: Mixing BoneMealItemMixin from vinery-common.mixins.json into net.minecraft.world.item.BoneMealItem [02oct2024 16:28:56.166] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$useOnBlock$3(Lnet/minecraft/world/entity/player/Player;)V to mdcc23e8$lambda$useOnBlock$3$0 in vinery-common.mixins.json:BoneMealItemMixin [02oct2024 16:28:56.166] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$useOnBlock$2(Lnet/minecraft/world/entity/player/Player;)V to mdcc23e8$lambda$useOnBlock$2$1 in vinery-common.mixins.json:BoneMealItemMixin [02oct2024 16:28:56.166] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$useOnBlock$1(Lnet/minecraft/world/entity/player/Player;)V to mdcc23e8$lambda$useOnBlock$1$2 in vinery-common.mixins.json:BoneMealItemMixin [02oct2024 16:28:56.166] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$useOnBlock$0(Lnet/minecraft/world/entity/player/Player;)V to mdcc23e8$lambda$useOnBlock$0$3 in vinery-common.mixins.json:BoneMealItemMixin [02oct2024 16:28:56.171] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_7373_ with desc (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V [02oct2024 16:28:56.172] [main/DEBUG] [mixin/]: Mixing MapItemMixin from supplementaries-common.mixins.json into net.minecraft.world.item.MapItem [02oct2024 16:28:56.173] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$updateCustomColor$3(Lorg/joml/Vector2i;)D to mdcc23e8$lambda$updateCustomColor$3$0 in supplementaries-common.mixins.json:MapItemMixin [02oct2024 16:28:56.173] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$updateCustomColor$2(Lorg/joml/Vector2i;)D to mdcc23e8$lambda$updateCustomColor$2$1 in supplementaries-common.mixins.json:MapItemMixin [02oct2024 16:28:56.173] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$removeXrayAndAddAccurateColor$1(Lnet/minecraft/core/BlockPos;Lorg/joml/Vector2i;)Lcom/mojang/datafixers/util/Pair; to mdcc23e8$lambda$removeXrayAndAddAccurateColor$1$2 in supplementaries-common.mixins.json:MapItemMixin [02oct2024 16:28:56.173] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$removeXrayAndAddAccurateColor$0(Lorg/joml/Vector2i;)Ljava/util/List; to mdcc23e8$lambda$removeXrayAndAddAccurateColor$0$3 in supplementaries-common.mixins.json:MapItemMixin [02oct2024 16:28:56.181] [main/DEBUG] [mixin/]: Mixing MapItemMixin from moonlight-common.mixins.json into net.minecraft.world.item.MapItem [02oct2024 16:28:56.182] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$update$1(Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;Lnet/minecraft/world/entity/Entity;Ljava/util/concurrent/atomic/AtomicBoolean;Lnet/minecraft/resources/ResourceLocation;Lnet/mehvahdjukaar/moonlight/api/map/CustomMapData;)V to mdcc23e8$lambda$update$1$4 in moonlight-common.mixins.json:MapItemMixin [02oct2024 16:28:56.182] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$appendHoverText$0(Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;Lnet/minecraft/world/item/ItemStack;Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;Lnet/mehvahdjukaar/moonlight/api/map/CustomMapData;)V to mdcc23e8$lambda$appendHoverText$0$5 in moonlight-common.mixins.json:MapItemMixin [02oct2024 16:28:56.205] [main/DEBUG] [mixin/]: Mixing MixinShearsItem from curios.mixins.json into net.minecraft.world.item.ShearsItem [02oct2024 16:28:56.205] [main/DEBUG] [mixin/]: Mixing ShearItemMixin from moonlight-common.mixins.json into net.minecraft.world.item.ShearsItem [02oct2024 16:28:56.209] [main/DEBUG] [mixin/]: Mixing EnderPearlMixin from nomoportals.mixins.json into net.minecraft.world.item.EnderpearlItem [02oct2024 16:28:56.211] [main/DEBUG] [mixin/]: Mixing PotionItemMixin from tombstone.mixins.json into net.minecraft.world.item.PotionItem [02oct2024 16:28:56.211] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$methodFinishUsingItemReturn$1(Lnet/minecraft/world/entity/LivingEntity;Lovh/corail/tombstone/api/capability/ITBCapability;)V to mdcc23e8$lambda$methodFinishUsingItemReturn$1$0 in tombstone.mixins.json:PotionItemMixin [02oct2024 16:28:56.211] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$effectList$0(Lnet/minecraft/world/effect/MobEffectInstance;)Ljava/lang/Integer; to mdcc23e8$lambda$effectList$0$1 in tombstone.mixins.json:PotionItemMixin [02oct2024 16:28:56.216] [main/DEBUG] [mixin/]: Mixing EnderEyeMixin from nomoportals.mixins.json into net.minecraft.world.item.EnderEyeItem [02oct2024 16:28:56.218] [main/DEBUG] [mixin/]: Mixing reinforcedlectern.WritableAndWrittenBookItemMixin from securitycraft.mixins.json into net.minecraft.world.item.WritableBookItem [02oct2024 16:28:56.230] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_7626_ with desc (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; [02oct2024 16:28:56.230] [main/DEBUG] [mixin/]: Mixing reinforcedlectern.WritableAndWrittenBookItemMixin from securitycraft.mixins.json into net.minecraft.world.item.WrittenBookItem [02oct2024 16:28:56.235] [main/DEBUG] [mixin/]: Mixing ArmorStandFIxMixin from dummmmmmy-common.mixins.json into net.minecraft.world.item.ArmorStandItem [02oct2024 16:28:56.242] [main/DEBUG] [mixin/]: Mixing CrossbowItemRopeMixin from supplementaries-common.mixins.json into net.minecraft.world.item.CrossbowItem [02oct2024 16:28:56.243] [main/DEBUG] [mixin/]: Mixing CrossbowItemMixin from soulsweapons.mixins.json into net.minecraft.world.item.CrossbowItem [02oct2024 16:28:56.247] [main/DEBUG] [mixin/]: Mixing BannerPatternItemMixin from supplementaries-common.mixins.json into net.minecraft.world.item.BannerPatternItem [02oct2024 16:28:56.249] [main/DEBUG] [mixin/]: Mixing suspiciousmines.BrushItemMixin from securitycraft.mixins.json into net.minecraft.world.item.BrushItem [02oct2024 16:28:56.249] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$securitycraft$checkForSuspiciousMine$1(Lnet/minecraft/world/entity/player/Player;)V to mdcc23e8$lambda$securitycraft$checkForSuspiciousMine$1$0 in securitycraft.mixins.json:suspiciousmines.BrushItemMixin [02oct2024 16:28:56.249] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$securitycraft$makeSuspiciousMinesBrushablePartTwo$0(Lnet/minecraft/world/entity/Entity;)Z to mdcc23e8$lambda$securitycraft$makeSuspiciousMinesBrushablePartTwo$0$1 in securitycraft.mixins.json:suspiciousmines.BrushItemMixin [02oct2024 16:28:56.275] [main/DEBUG] [mixin/]: Mixing inject.MixinItemProperties from architectury-common.mixins.json into net.minecraft.world.item.Item$Properties [02oct2024 16:28:56.302] [main/DEBUG] [mixin/]: Mixing VehicleEntityPlaceMixin$MinecartDispensePatch from armourersworkshop-compatibility-mixins.json into net.minecraft.world.item.MinecartItem$1 [02oct2024 16:28:56.303] [main/DEBUG] [mixin/]: armourersworkshop-compatibility-mixins.json:VehicleEntityPlaceMixin$MinecartDispensePatch: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [02oct2024 16:28:56.306] [main/DEBUG] [mixin/]: Mixing AllayEntityMixin from immersive_melodies.mixin.json into net.minecraft.world.entity.animal.allay.Allay [02oct2024 16:28:56.318] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/server/level/ServerPlayer [02oct2024 16:28:56.318] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/server/level/ServerPlayer [02oct2024 16:28:56.319] [main/DEBUG] [mixin/]: Mixing ServerPlayerMixin from betterendisland.mixins.json into net.minecraft.server.level.ServerPlayer [02oct2024 16:28:56.319] [main/DEBUG] [mixin/]: Mixing ServerPlayerEntityTickMixin from yungsapi.mixins.json into net.minecraft.server.level.ServerPlayer [02oct2024 16:28:56.320] [main/DEBUG] [mixin/]: Mixing ServerPlayerMixin from playerrevive.mixins.json into net.minecraft.server.level.ServerPlayer [02oct2024 16:28:56.320] [main/DEBUG] [mixin/]: Mixing ServerPlayerTickMixin from betterdeserttemples.mixins.json into net.minecraft.server.level.ServerPlayer [02oct2024 16:28:56.323] [main/DEBUG] [mixin/]: Mixing ServerPlayerEntityMixin from simplyswords-common.mixins.json into net.minecraft.server.level.ServerPlayer [02oct2024 16:28:56.323] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$simplyswords$tick$3(Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/Item;)Z to mdcc23e8$lambda$simplyswords$tick$3$0 in simplyswords-common.mixins.json:ServerPlayerEntityMixin [02oct2024 16:28:56.323] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$simplyswords$tick$2(Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/Item;)Z to mdcc23e8$lambda$simplyswords$tick$2$1 in simplyswords-common.mixins.json:ServerPlayerEntityMixin [02oct2024 16:28:56.323] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$simplyswords$tick$1(Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;)D to mdcc23e8$lambda$simplyswords$tick$1$2 in simplyswords-common.mixins.json:ServerPlayerEntityMixin [02oct2024 16:28:56.323] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$simplyswords$tick$0(Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;)Z to mdcc23e8$lambda$simplyswords$tick$0$3 in simplyswords-common.mixins.json:ServerPlayerEntityMixin [02oct2024 16:28:56.332] [main/DEBUG] [mixin/]: Mixing ServerPlayerMixin from tombstone.mixins.json into net.minecraft.server.level.ServerPlayer [02oct2024 16:28:56.332] [main/DEBUG] [mixin/]: Mixing camera.ServerPlayerMixin from securitycraft.mixins.json into net.minecraft.server.level.ServerPlayer [02oct2024 16:28:56.353] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_7088_ with desc ()Z [02oct2024 16:28:56.361] [main/DEBUG] [mixin/]: Mixing MobCategoryMixin from enhancedai.mixins.json into net.minecraft.world.entity.MobCategory [02oct2024 16:28:56.362] [main/DEBUG] [mixin/]: enhancedai.mixins.json:MobCategoryMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:56.572] [main/DEBUG] [mixin/]: Mixing DataFixMixin from armourersworkshop-mixins.json into net.minecraft.util.datafix.schemas.V1460 [02oct2024 16:28:56.573] [main/DEBUG] [mixin/]: armourersworkshop-mixins.json:DataFixMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [02oct2024 16:28:56.573] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$aw2$registerBlockEntities$1(Ljava/util/function/BiConsumer;Lmoe/plushie/armourers_workshop/utils/ext/OpenResourceLocation;)V to mdcc23e8$lambda$aw2$registerBlockEntities$1$0 in armourersworkshop-mixins.json:DataFixMixin [02oct2024 16:28:56.573] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$aw2$registerEntities$0(Ljava/util/function/BiConsumer;Lmoe/plushie/armourers_workshop/utils/ext/OpenResourceLocation;)V to mdcc23e8$lambda$aw2$registerEntities$0$1 in armourersworkshop-mixins.json:DataFixMixin [02oct2024 16:28:56.677] [main/DEBUG] [mixin/]: Mixing ArmorStandMixin from mna.mixins.json into net.minecraft.world.entity.decoration.ArmorStand [02oct2024 16:28:56.685] [main/DEBUG] [mixin/]: Mixing ExperienceOrbAccess from clumps.mixins.json into net.minecraft.world.entity.ExperienceOrb [02oct2024 16:28:56.685] [main/DEBUG] [mixin/]: Mixing MixinExperienceOrb from clumps.mixins.json into net.minecraft.world.entity.ExperienceOrb [02oct2024 16:28:56.685] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$clumps$resolve$7(Ljava/util/Map$Entry;)Ljava/lang/Integer; to mdcc23e8$lambda$clumps$resolve$7$0 in clumps.mixins.json:MixinExperienceOrb [02oct2024 16:28:56.685] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$addAdditionalSaveData$6(Lnet/minecraft/nbt/CompoundTag;Ljava/lang/Integer;Ljava/lang/Integer;)V to mdcc23e8$lambda$addAdditionalSaveData$6$1 in clumps.mixins.json:MixinExperienceOrb [02oct2024 16:28:56.685] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$tryMergeToExisting$5(Ljava/util/Map;)Ljava/util/stream/Stream; to mdcc23e8$lambda$tryMergeToExisting$5$2 in clumps.mixins.json:MixinExperienceOrb [02oct2024 16:28:56.685] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$tryMergeToExisting$4(IILnet/minecraft/world/entity/ExperienceOrb;)Z to mdcc23e8$lambda$tryMergeToExisting$4$3 in clumps.mixins.json:MixinExperienceOrb [02oct2024 16:28:56.685] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$merge$3(Ljava/util/Map;)Ljava/util/stream/Stream; to mdcc23e8$lambda$merge$3$4 in clumps.mixins.json:MixinExperienceOrb [02oct2024 16:28:56.685] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$clumps$repairPlayerItems$2(ILnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Ljava/lang/Integer; to mdcc23e8$lambda$clumps$repairPlayerItems$2$5 in clumps.mixins.json:MixinExperienceOrb [02oct2024 16:28:56.685] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$clumps$repairPlayerItems$1(Lnet/minecraft/world/item/ItemStack;Ljava/lang/Integer;)Ljava/lang/Float; to mdcc23e8$lambda$clumps$repairPlayerItems$1$6 in clumps.mixins.json:MixinExperienceOrb [02oct2024 16:28:56.686] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$playerTouch$0(Lnet/minecraft/world/entity/player/Player;Ljava/util/concurrent/atomic/AtomicInteger;Ljava/lang/Integer;Ljava/lang/Integer;)V to mdcc23e8$lambda$playerTouch$0$7 in clumps.mixins.json:MixinExperienceOrb [02oct2024 16:28:56.703] [main/DEBUG] [mixin/]: Mixing MeleeAttackGoalMixin from enhancedai.mixins.json into net.minecraft.world.entity.ai.goal.MeleeAttackGoal [02oct2024 16:28:56.703] [main/DEBUG] [mixin/]: enhancedai.mixins.json:MeleeAttackGoalMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:56.714] [main/DEBUG] [mixin/]: Mixing BeeGoalMixin from moonlight-common.mixins.json into net.minecraft.world.entity.animal.Bee$BeeGrowCropGoal [02oct2024 16:28:56.717] [main/DEBUG] [mixin/]: Mixing HurtByTargetGoalMixin from tombstone.mixins.json into net.minecraft.world.entity.ai.goal.target.HurtByTargetGoal [02oct2024 16:28:56.718] [main/DEBUG] [mixin/]: Mixing accessor.TargetGoalAccessor from tombstone.mixins.json into net.minecraft.world.entity.ai.goal.target.TargetGoal [02oct2024 16:28:56.727] [main/DEBUG] [mixin/]: Mixing boat.MixinBoatEntity from doapi.mixins.json into net.minecraft.world.entity.vehicle.Boat [02oct2024 16:28:56.727] [main/DEBUG] [mixin/]: Mixing boat.BoatMixin from securitycraft.mixins.json into net.minecraft.world.entity.vehicle.Boat [02oct2024 16:28:56.732] [main/DEBUG] [mixin/]: Mixing AbstractHorseMixin from supplementaries-common.mixins.json into net.minecraft.world.entity.animal.horse.AbstractHorse [02oct2024 16:28:56.745] [main/DEBUG] [mixin/]: Mixing CatSitOnBlockGoalMixin from supplementaries-common.mixins.json into net.minecraft.world.entity.ai.goal.CatSitOnBlockGoal [02oct2024 16:28:56.746] [main/DEBUG] [mixin/]: Mixing MixinCatSitOnBlockGoal from lootr.mixins.json into net.minecraft.world.entity.ai.goal.CatSitOnBlockGoal [02oct2024 16:28:56.751] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Spider [02oct2024 16:28:56.756] [main/DEBUG] [mixin/]: Mixing SkeletonMixin from supplementaries-common.mixins.json into net.minecraft.world.entity.monster.Skeleton [02oct2024 16:28:56.760] [main/DEBUG] [mixin/]: Mixing AbstractSkeletonMixin from supplementaries-common.mixins.json into net.minecraft.world.entity.monster.AbstractSkeleton [02oct2024 16:28:56.762] [main/DEBUG] [mixin/]: Mixing AbstractSkeletonMixin from enhancedai.mixins.json into net.minecraft.world.entity.monster.AbstractSkeleton [02oct2024 16:28:56.762] [main/DEBUG] [mixin/]: enhancedai.mixins.json:AbstractSkeletonMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:56.781] [main/DEBUG] [mixin/]: Mixing CreeperMixin from enhancedai.mixins.json into net.minecraft.world.entity.monster.Creeper [02oct2024 16:28:56.781] [main/DEBUG] [mixin/]: enhancedai.mixins.json:CreeperMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:56.782] [main/DEBUG] [mixin/]: Mixing CreeperIgniteMixin from mna.mixins.json into net.minecraft.world.entity.monster.Creeper [02oct2024 16:28:56.782] [main/DEBUG] [mixin/]: Renaming @Accessor method getIgnitedData()Lnet/minecraft/network/syncher/EntityDataAccessor; to getIgnitedData_$md$cc23e8$0 in mna.mixins.json:CreeperIgniteMixin [02oct2024 16:28:56.782] [main/DEBUG] [mixin/]: Renaming @Accessor method getSwellDir()Lnet/minecraft/network/syncher/EntityDataAccessor; to getSwellDir_$md$cc23e8$1 in mna.mixins.json:CreeperIgniteMixin [02oct2024 16:28:56.797] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Zombie [02oct2024 16:28:56.806] [main/DEBUG] [mixin/]: Mixing ZombieMixin from tombstone.mixins.json into net.minecraft.world.entity.monster.Zombie [02oct2024 16:28:56.811] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/ZombieVillager [02oct2024 16:28:56.832] [main/DEBUG] [mixin/]: Mixing EnderDragonEntityMixin from soulsweapons.mixins.json into net.minecraft.world.entity.boss.enderdragon.EnderDragon [02oct2024 16:28:56.838] [main/DEBUG] [mixin/]: Mixing EndermanMixin from supplementaries-common.mixins.json into net.minecraft.world.entity.monster.EnderMan [02oct2024 16:28:56.844] [main/DEBUG] [mixin/]: Mixing EvokerMixin from supplementaries-common.mixins.json into net.minecraft.world.entity.monster.Evoker [02oct2024 16:28:56.853] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal [02oct2024 16:28:56.860] [main/DEBUG] [mixin/]: Mixing FixBlockPlaceContextMixin from moonlight-common.mixins.json into net.minecraft.world.item.context.BlockPlaceContext [02oct2024 16:28:56.871] [main/DEBUG] [mixin/]: Mixing FoxEntityEatSweetBerriesGoalMixin from vinery-common.mixins.json into net.minecraft.world.entity.animal.Fox$FoxEatBerriesGoal [02oct2024 16:28:56.885] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_218868_ with desc ()Ljava/util/OptionalInt; [02oct2024 16:28:56.893] [main/DEBUG] [mixin/]: Mixing ContainerMenuMixin from mixins.deeperdarker.json into net.minecraft.world.inventory.HopperMenu [02oct2024 16:28:56.908] [main/DEBUG] [mixin/]: Mixing SlimeMixin from enhancedai.mixins.json into net.minecraft.world.entity.monster.Slime [02oct2024 16:28:56.908] [main/DEBUG] [mixin/]: enhancedai.mixins.json:SlimeMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:56.916] [main/DEBUG] [mixin/]: Mixing PaintingMixin from mixins.deeperdarker.json into net.minecraft.world.entity.decoration.Painting [02oct2024 16:28:56.965] [main/DEBUG] [mixin/]: Mixing ParrotEntityMixin from immersive_melodies.mixin.json into net.minecraft.world.entity.animal.Parrot [02oct2024 16:28:56.973] [main/DEBUG] [mixin/]: Mixing PhantomMixin from mixins.deeperdarker.json into net.minecraft.world.entity.monster.Phantom [02oct2024 16:28:56.986] [main/DEBUG] [mixin/]: Mixing PillagerEntityMixin from immersive_melodies.mixin.json into net.minecraft.world.entity.monster.Pillager [02oct2024 16:28:56.992] [main/DEBUG] [mixin/]: Mixing ThrownPotionMixin from moonlight-common.mixins.json into net.minecraft.world.entity.projectile.ThrownPotion [02oct2024 16:28:56.999] [main/DEBUG] [mixin/]: Mixing RabbitsEatCabbageMixin from farmersdelight.mixins.json into net.minecraft.world.entity.animal.Rabbit [02oct2024 16:28:57.005] [main/DEBUG] [mixin/]: Mixing RavagerMixin from enhancedai.mixins.json into net.minecraft.world.entity.monster.Ravager [02oct2024 16:28:57.005] [main/DEBUG] [mixin/]: enhancedai.mixins.json:RavagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:57.014] [main/DEBUG] [mixin/]: Mixing ShulkerMixin from enhancedai.mixins.json into net.minecraft.world.entity.monster.Shulker [02oct2024 16:28:57.014] [main/DEBUG] [mixin/]: enhancedai.mixins.json:ShulkerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:57.029] [main/DEBUG] [mixin/]: Mixing ShulkerBulletMixin from enhancedai.mixins.json into net.minecraft.world.entity.projectile.ShulkerBullet [02oct2024 16:28:57.029] [main/DEBUG] [mixin/]: enhancedai.mixins.json:ShulkerBulletMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:57.035] [main/DEBUG] [mixin/]: Mixing SkellyHorseMixin from supplementaries-common.mixins.json into net.minecraft.world.entity.animal.horse.SkeletonHorse [02oct2024 16:28:57.036] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$tick$0(Ljava/lang/Integer;)V to mdcc23e8$lambda$tick$0$0 in supplementaries-common.mixins.json:SkellyHorseMixin [02oct2024 16:28:57.052] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/horse/SkeletonTrapGoal [02oct2024 16:28:57.062] [main/DEBUG] [mixin/]: Mixing SnowballMixin from enhancedai.mixins.json into net.minecraft.world.entity.projectile.Snowball [02oct2024 16:28:57.062] [main/DEBUG] [mixin/]: enhancedai.mixins.json:SnowballMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:57.065] [main/DEBUG] [mixin/]: Mixing BaseSpawnerMixin from customnpcs.mixins.json into net.minecraft.world.level.BaseSpawner [02oct2024 16:28:57.068] [main/DEBUG] [mixin/]: Mixing StrayMixin from supplementaries-common.mixins.json into net.minecraft.world.entity.monster.Stray [02oct2024 16:28:57.072] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Strider [02oct2024 16:28:57.092] [main/DEBUG] [mixin/]: Mixing FriendlyByteBufMixin from supplementaries.mixins.json into net.minecraft.network.FriendlyByteBuf [02oct2024 16:28:57.092] [main/DEBUG] [mixin/]: Mixing PacketBufferMixin from xlpackets.mixins.json into net.minecraft.network.FriendlyByteBuf [02oct2024 16:28:57.108] [main/DEBUG] [mixin/]: Mixing SynchedEntityDataMixin from customnpcs.mixins.json into net.minecraft.network.syncher.SynchedEntityData [02oct2024 16:28:57.123] [main/DEBUG] [mixin/]: Mixing WardenMixin from mixins.deeperdarker.json into net.minecraft.world.entity.monster.warden.Warden [02oct2024 16:28:57.124] [main/DEBUG] [mixin/]: Mixing WardenMixin from enhancedai.mixins.json into net.minecraft.world.entity.monster.warden.Warden [02oct2024 16:28:57.124] [main/DEBUG] [mixin/]: enhancedai.mixins.json:WardenMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:57.131] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/chunk/LevelChunk [02oct2024 16:28:57.131] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/chunk/LevelChunk [02oct2024 16:28:57.131] [main/DEBUG] [mixin/]: Mixing LevelChunkMixin from moonlight-common.mixins.json into net.minecraft.world.level.chunk.LevelChunk [02oct2024 16:28:57.132] [main/DEBUG] [mixin/]: Mixing MixinLevelChunk from lootr.mixins.json into net.minecraft.world.level.chunk.LevelChunk [02oct2024 16:28:57.148] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/Villager [02oct2024 16:28:57.159] [main/DEBUG] [mixin/]: Mixing accessor.VillagerAccessor from tombstone.mixins.json into net.minecraft.world.entity.npc.Villager [02oct2024 16:28:57.160] [main/DEBUG] [mixin/]: Mixing VillagerDiscountMixin from vinery-common.mixins.json into net.minecraft.world.entity.npc.Villager [02oct2024 16:28:57.161] [main/DEBUG] [mixin/]: Mixing item.wearable.villagerhat.VillagerMixin from mixins.artifacts.common.json into net.minecraft.world.entity.npc.Villager [02oct2024 16:28:57.161] [main/DEBUG] [mixin/]: Mixing VillagerMixin from moonlight-common.mixins.json into net.minecraft.world.entity.npc.Villager [02oct2024 16:28:57.171] [main/DEBUG] [mixin/]: Mixing WitchMixin from enhancedai.mixins.json into net.minecraft.world.entity.monster.Witch [02oct2024 16:28:57.171] [main/DEBUG] [mixin/]: enhancedai.mixins.json:WitchMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:57.186] [main/DEBUG] [mixin/]: Mixing VindicatorMixin from enhancedai.mixins.json into net.minecraft.world.entity.monster.Vindicator [02oct2024 16:28:57.186] [main/DEBUG] [mixin/]: enhancedai.mixins.json:VindicatorMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:57.190] [main/DEBUG] [mixin/]: Mixing WanderingTraderMixin from supplementaries-common.mixins.json into net.minecraft.world.entity.npc.WanderingTrader [02oct2024 16:28:57.197] [main/DEBUG] [mixin/]: Mixing WitherSkeletonMixin from enhancedai.mixins.json into net.minecraft.world.entity.monster.WitherSkeleton [02oct2024 16:28:57.197] [main/DEBUG] [mixin/]: enhancedai.mixins.json:WitherSkeletonMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:57.203] [main/DEBUG] [mixin/]: Mixing ZombieHorseMixin from supplementaries-common.mixins.json into net.minecraft.world.entity.animal.horse.ZombieHorse [02oct2024 16:28:57.218] [main/DEBUG] [mixin/]: Mixing ArmorMaterialsMixin from customnpcs.mixins.json into net.minecraft.world.item.ArmorMaterials [02oct2024 16:28:57.219] [main/DEBUG] [mixin/]: Mixing common.access.item.AccessIngredient from crafttweaker.mixins.json into net.minecraft.world.item.crafting.Ingredient [02oct2024 16:28:57.219] [main/DEBUG] [mixin/]: Renaming @Invoker method crafttweaker$callFromValues(Ljava/util/stream/Stream;)Lnet/minecraft/world/item/crafting/Ingredient; to crafttweaker$callFromValues_$md$cc23e8$0 in crafttweaker.mixins.json:common.access.item.AccessIngredient [02oct2024 16:28:57.220] [main/DEBUG] [mixin/]: Mixing common.transform.item.MixinIngredient from crafttweaker.mixins.json into net.minecraft.world.item.crafting.Ingredient [02oct2024 16:28:57.224] [main/DEBUG] [mixin/]: Mixing inject.MixinFoodPropertiesBuilder from architectury-common.mixins.json into net.minecraft.world.food.FoodProperties$Builder [02oct2024 16:28:57.225] [main/DEBUG] [mixin/]: Mixing common.access.food.AccessFoodProperties from crafttweaker.mixins.json into net.minecraft.world.food.FoodProperties [02oct2024 16:28:57.225] [main/DEBUG] [mixin/]: Renaming @Invoker method crafttweaker$createFoodProperties(IFZZZLjava/util/List;)Lnet/minecraft/world/food/FoodProperties; to crafttweaker$createFoodProperties_$md$cc23e8$0 in crafttweaker.mixins.json:common.access.food.AccessFoodProperties [02oct2024 16:28:57.225] [main/DEBUG] [mixin/]: Mixing common.access.food.AccessFoodPropertiesForge from crafttweaker.forge.mixins.json into net.minecraft.world.food.FoodProperties [02oct2024 16:28:57.227] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance [02oct2024 16:28:57.227] [main/DEBUG] [mixin/]: Mixing accessors.effect.AccessorMobEffectInstance from bookshelf.common.mixins.json into net.minecraft.world.effect.MobEffectInstance [02oct2024 16:28:57.260] [main/DEBUG] [mixin/]: Mixing ServerGamePacketListenerMixin from supplementaries-common.mixins.json into net.minecraft.server.network.ServerGamePacketListenerImpl [02oct2024 16:28:57.261] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$addAntiqueInk$0(Ljava/util/function/UnaryOperator;Ljava/lang/String;)Ljava/lang/String; to mdcc23e8$lambda$addAntiqueInk$0$0 in supplementaries-common.mixins.json:ServerGamePacketListenerMixin [02oct2024 16:28:57.262] [main/DEBUG] [mixin/]: Mixing item.umbrella.server.ServerGamePacketListenerImplMixin from mixins.artifacts.common.json into net.minecraft.server.network.ServerGamePacketListenerImpl [02oct2024 16:28:57.262] [main/DEBUG] [mixin/]: Mixing ServerPlayNetworkHandlerMixin from bettercombat.mixins.json into net.minecraft.server.network.ServerGamePacketListenerImpl [02oct2024 16:28:57.262] [main/DEBUG] [mixin/]: Mixing swimming.server.ServerGamePacketListenerImplMixin from expandability-common.mixins.json into net.minecraft.server.network.ServerGamePacketListenerImpl [02oct2024 16:28:57.275] [main/DEBUG] [mixin/]: Mixing accessor.PotionBrewingAccessor from yungsapi.mixins.json into net.minecraft.world.item.alchemy.PotionBrewing [02oct2024 16:28:57.275] [main/DEBUG] [mixin/]: Renaming @Invoker method callAddMix(Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/alchemy/Potion;)V to callAddMix_$md$cc23e8$0 in yungsapi.mixins.json:accessor.PotionBrewingAccessor [02oct2024 16:28:57.275] [main/DEBUG] [mixin/]: Mixing common.access.brewing.AccessPotionBrewing from crafttweaker.forge.mixins.json into net.minecraft.world.item.alchemy.PotionBrewing [02oct2024 16:28:57.275] [main/DEBUG] [mixin/]: Renaming @Accessor method crafttweaker$getPOTION_MIXES()Ljava/util/List; to crafttweaker$getPOTION_MIXES_$md$cc23e8$1 in crafttweaker.forge.mixins.json:common.access.brewing.AccessPotionBrewing [02oct2024 16:28:57.275] [main/DEBUG] [mixin/]: Renaming @Accessor method crafttweaker$getCONTAINER_MIXES()Ljava/util/List; to crafttweaker$getCONTAINER_MIXES_$md$cc23e8$2 in crafttweaker.forge.mixins.json:common.access.brewing.AccessPotionBrewing [02oct2024 16:28:57.275] [main/DEBUG] [mixin/]: Renaming @Invoker method crafttweaker$callAddMix(Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/alchemy/Potion;)V to crafttweaker$callAddMix_$md$cc23e8$3 in crafttweaker.forge.mixins.json:common.access.brewing.AccessPotionBrewing [02oct2024 16:28:57.275] [main/DEBUG] [mixin/]: Mixing accessor.PotionBrewingForgeAccessor from puzzleslib.forge.mixins.json into net.minecraft.world.item.alchemy.PotionBrewing [02oct2024 16:28:57.275] [main/DEBUG] [mixin/]: Renaming @Accessor method puzzleslib$getPotionMixes()Ljava/util/List; to puzzleslib$getPotionMixes_$md$cc23e8$4 in puzzleslib.forge.mixins.json:accessor.PotionBrewingForgeAccessor [02oct2024 16:28:57.275] [main/DEBUG] [mixin/]: Renaming @Accessor method puzzleslib$getContainerMixes()Ljava/util/List; to puzzleslib$getContainerMixes_$md$cc23e8$5 in puzzleslib.forge.mixins.json:accessor.PotionBrewingForgeAccessor [02oct2024 16:28:57.275] [main/DEBUG] [mixin/]: Renaming @Accessor method puzzleslib$getAllowedContainers()Ljava/util/List; to puzzleslib$getAllowedContainers_$md$cc23e8$6 in puzzleslib.forge.mixins.json:accessor.PotionBrewingForgeAccessor [02oct2024 16:28:57.285] [main/DEBUG] [mixin/]: Mixing ScoreBoardMixin from customnpcs.mixins.json into net.minecraft.world.scores.Scoreboard [02oct2024 16:28:57.308] [main/DEBUG] [mixin/]: Mixing SweepingEnchantmentMixin from bettercombat.mixins.json into net.minecraft.world.item.enchantment.SweepingEdgeEnchantment [02oct2024 16:28:57.317] [main/DEBUG] [mixin/]: Mixing ContainerMenuMixin from mixins.deeperdarker.json into net.minecraft.world.inventory.AbstractFurnaceMenu [02oct2024 16:28:57.323] [main/DEBUG] [mixin/]: Mixing ContainerMenuMixin from mixins.deeperdarker.json into net.minecraft.world.inventory.DispenserMenu [02oct2024 16:28:57.328] [main/DEBUG] [mixin/]: Mixing ContainerMenuMixin from mixins.deeperdarker.json into net.minecraft.world.inventory.BrewingStandMenu [02oct2024 16:28:57.328] [main/DEBUG] [mixin/]: Mixing potion.BrewingStandMenuMixin from securitycraft.mixins.json into net.minecraft.world.inventory.BrewingStandMenu [02oct2024 16:28:57.331] [main/DEBUG] [mixin/]: Mixing ContainerMenuMixin from mixins.deeperdarker.json into net.minecraft.world.inventory.BeaconMenu [02oct2024 16:28:57.335] [main/DEBUG] [mixin/]: Mixing accessor.StructureProcessorAccessor from betterdungeons.mixins.json into net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor [02oct2024 16:28:57.336] [main/DEBUG] [mixin/]: Mixing accessor.StructureProcessorAccessor from betteroceanmonuments.mixins.json into net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor [02oct2024 16:28:57.336] [main/DEBUG] [mixin/]: Mixing StructureProcessorAccessor from cataclysm.mixins.json into net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor [02oct2024 16:28:57.336] [main/DEBUG] [mixin/]: Mixing accessor.StructureProcessorAccessor from betterjungletemples.mixins.json into net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor [02oct2024 16:28:57.336] [main/DEBUG] [mixin/]: Mixing accessor.StructureProcessorAccessor from betterdeserttemples.mixins.json into net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor [02oct2024 16:28:57.336] [main/DEBUG] [mixin/]: Unexpected: Registered method callGetType()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; in net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor was not merged [02oct2024 16:28:57.336] [main/DEBUG] [mixin/]: Unexpected: Registered method callGetType()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; in net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor was not merged [02oct2024 16:28:57.336] [main/DEBUG] [mixin/]: Unexpected: Registered method callGetType()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; in net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor was not merged [02oct2024 16:28:57.336] [main/DEBUG] [mixin/]: Unexpected: Registered method callGetType()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; in net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor was not merged [02oct2024 16:28:57.339] [main/DEBUG] [mixin/]: Mixing ContainerMenuMixin from mixins.deeperdarker.json into net.minecraft.world.inventory.ShulkerBoxMenu [02oct2024 16:28:57.357] [main/DEBUG] [mixin/]: Mixing DisableVanillaMonumentsMixin from betteroceanmonuments.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [02oct2024 16:28:57.358] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure [02oct2024 16:28:57.361] [main/DEBUG] [mixin/]: Mixing ChunkGeneratorMixin from citadel.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [02oct2024 16:28:57.362] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome [02oct2024 16:28:57.364] [main/DEBUG] [mixin/]: Mixing DisableVanillaFortressesMixin from betterfortresses.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [02oct2024 16:28:57.365] [main/DEBUG] [mixin/]: Mixing DisableVanillaStrongholdsMixin from betterstrongholds.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [02oct2024 16:28:57.366] [main/DEBUG] [mixin/]: Mixing DisableVanillaMineshaftsMixin from bettermineshafts.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [02oct2024 16:28:57.366] [main/DEBUG] [mixin/]: Mixing DisableVanillaJungleTempleMixin from betterjungletemples.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [02oct2024 16:28:57.366] [main/DEBUG] [mixin/]: Mixing DisableVanillaPyramidsMixin from betterdeserttemples.mixins.json into net.minecraft.world.level.chunk.ChunkGenerator [02oct2024 16:28:57.385] [main/DEBUG] [mixin/]: Mixing MixinInventory from curios.mixins.json into net.minecraft.world.entity.player.Inventory [02oct2024 16:28:57.385] [main/DEBUG] [mixin/]: Mixing InventoryMixin from moonlight-common.mixins.json into net.minecraft.world.entity.player.Inventory [02oct2024 16:28:57.386] [main/DEBUG] [mixin/]: Mixing InventorySoulboundDrop from mna.mixins.json into net.minecraft.world.entity.player.Inventory [02oct2024 16:28:57.386] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$saveSoulboundItems$1(Lnet/minecraft/nbt/CompoundTag;Ltop/theillusivec4/curios/api/type/capability/ICuriosItemHandler;)V to mdcc23e8$lambda$saveSoulboundItems$1$0 in mna.mixins.json:InventorySoulboundDrop [02oct2024 16:28:57.386] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$saveSoulboundItems$0(Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Ltop/theillusivec4/curios/api/type/inventory/ICurioStacksHandler;)V to mdcc23e8$lambda$saveSoulboundItems$0$1 in mna.mixins.json:InventorySoulboundDrop [02oct2024 16:28:57.394] [main/DEBUG] [mixin/]: Mixing SlotAccessor from balm.mixins.json into net.minecraft.world.inventory.Slot [02oct2024 16:28:57.399] [main/DEBUG] [mixin/]: Mixing GrindstoneInputSlotMixin from supplementaries-common.mixins.json into net.minecraft.world.inventory.GrindstoneMenu$2 [02oct2024 16:28:57.401] [main/DEBUG] [mixin/]: Mixing GrindstoneTestSlotMixin from supplementaries-common.mixins.json into net.minecraft.world.inventory.GrindstoneMenu$4 [02oct2024 16:28:57.401] [main/DEBUG] [mixin/]: Mixing GrindstoneMenuSlotMixin from moonlight-common.mixins.json into net.minecraft.world.inventory.GrindstoneMenu$4 [02oct2024 16:28:57.403] [main/DEBUG] [mixin/]: Mixing LoomInputSlotMixin from supplementaries-common.mixins.json into net.minecraft.world.inventory.LoomMenu$3 [02oct2024 16:28:57.406] [main/DEBUG] [mixin/]: Mixing CartographyTableInputSlotMixin from supplementaries-common.mixins.json into net.minecraft.world.inventory.CartographyTableMenu$4 [02oct2024 16:28:57.412] [main/DEBUG] [mixin/]: Mixing MapExtendingRecipeMixin from moonlight-common.mixins.json into net.minecraft.world.item.crafting.MapExtendingRecipe [02oct2024 16:28:57.414] [main/DEBUG] [mixin/]: Mixing accessors.item.crafting.AccessorShapedRecipe from bookshelf.common.mixins.json into net.minecraft.world.item.crafting.ShapedRecipe [02oct2024 16:28:57.414] [main/DEBUG] [mixin/]: Renaming @Invoker method bookshelf$keyFromJson(Lcom/google/gson/JsonObject;)Ljava/util/Map; to bookshelf$keyFromJson_$md$cc23e8$0 in bookshelf.common.mixins.json:accessors.item.crafting.AccessorShapedRecipe [02oct2024 16:28:57.414] [main/DEBUG] [mixin/]: Renaming @Invoker method bookshelf$shrink([Ljava/lang/String;)[Ljava/lang/String; to bookshelf$shrink_$md$cc23e8$1 in bookshelf.common.mixins.json:accessors.item.crafting.AccessorShapedRecipe [02oct2024 16:28:57.414] [main/DEBUG] [mixin/]: Renaming @Invoker method bookshelf$patternFromJson(Lcom/google/gson/JsonArray;)[Ljava/lang/String; to bookshelf$patternFromJson_$md$cc23e8$2 in bookshelf.common.mixins.json:accessors.item.crafting.AccessorShapedRecipe [02oct2024 16:28:57.414] [main/DEBUG] [mixin/]: Renaming @Invoker method bookshelf$dissolvePattern([Ljava/lang/String;Ljava/util/Map;II)Lnet/minecraft/core/NonNullList; to bookshelf$dissolvePattern_$md$cc23e8$3 in bookshelf.common.mixins.json:accessors.item.crafting.AccessorShapedRecipe [02oct2024 16:28:57.414] [main/DEBUG] [mixin/]: Mixing accessor.ShapedRecipeAccessor from tombstone.mixins.json into net.minecraft.world.item.crafting.ShapedRecipe [02oct2024 16:28:57.464] [main/DEBUG] [mixin/]: Mixing common.access.loot.AccessLootContext from crafttweaker.mixins.json into net.minecraft.world.level.storage.loot.LootContext [02oct2024 16:28:57.473] [main/DEBUG] [mixin/]: Mixing ExplorationMapSerializerMixin from supplementaries-common.mixins.json into net.minecraft.world.level.storage.loot.functions.ExplorationMapFunction$Serializer [02oct2024 16:28:57.476] [main/DEBUG] [mixin/]: Mixing ExplorationMapFunctionMixin from supplementaries-common.mixins.json into net.minecraft.world.level.storage.loot.functions.ExplorationMapFunction [02oct2024 16:28:57.484] [main/DEBUG] [mixin/]: Mixing MixinApplyBonusCount from curios.mixins.json into net.minecraft.world.level.storage.loot.functions.ApplyBonusCount [02oct2024 16:28:57.508] [main/DEBUG] [mixin/]: Mixing accessors.util.random.AccessorWeightedRandomList from bookshelf.common.mixins.json into net.minecraft.util.random.WeightedRandomList [02oct2024 16:28:57.550] [main/DEBUG] [mixin/]: Mixing NoVinesInTemplesMixin from betterjungletemples.mixins.json into net.minecraft.world.level.levelgen.feature.VinesFeature [02oct2024 16:28:57.555] [main/DEBUG] [mixin/]: Mixing NoMultifaceGrowthFeatureInStructuresMixin from cataclysm.mixins.json into net.minecraft.world.level.levelgen.feature.MultifaceGrowthFeature [02oct2024 16:28:57.557] [main/DEBUG] [mixin/]: Mixing NoMagmaInStructuresMixin from betteroceanmonuments.mixins.json into net.minecraft.world.level.levelgen.feature.UnderwaterMagmaFeature [02oct2024 16:28:57.558] [main/DEBUG] [mixin/]: Mixing NoMagmaBlockInStructuresMixin from cataclysm.mixins.json into net.minecraft.world.level.levelgen.feature.UnderwaterMagmaFeature [02oct2024 16:28:57.563] [main/DEBUG] [mixin/]: Mixing NoLakesInStructuresMixin from cataclysm.mixins.json into net.minecraft.world.level.levelgen.feature.LakeFeature [02oct2024 16:28:57.565] [main/DEBUG] [mixin/]: Mixing NoOreInStructuresMixin from cataclysm.mixins.json into net.minecraft.world.level.levelgen.feature.OreFeature [02oct2024 16:28:57.567] [main/DEBUG] [mixin/]: Mixing SpikeFeatureMixin from betterendisland.mixins.json into net.minecraft.world.level.levelgen.feature.SpikeFeature [02oct2024 16:28:57.570] [main/DEBUG] [mixin/]: Mixing EndGatewayFeatureMixin from betterendisland.mixins.json into net.minecraft.world.level.levelgen.feature.EndGatewayFeature [02oct2024 16:28:57.575] [main/DEBUG] [mixin/]: Mixing NoBasaltColumnsInStructuresMixin from betterdungeons.mixins.json into net.minecraft.world.level.levelgen.feature.BasaltColumnsFeature [02oct2024 16:28:57.576] [main/DEBUG] [mixin/]: Mixing NoBasaltColumnsInStructuresMixin from betterfortresses.mixins.json into net.minecraft.world.level.levelgen.feature.BasaltColumnsFeature [02oct2024 16:28:57.576] [main/DEBUG] [mixin/]: Mixing NoBasaltColumnsInStructuresMixin from cataclysm.mixins.json into net.minecraft.world.level.levelgen.feature.BasaltColumnsFeature [02oct2024 16:28:57.579] [main/DEBUG] [mixin/]: Mixing NoDeltasInStructuresMixin from betterdungeons.mixins.json into net.minecraft.world.level.levelgen.feature.DeltaFeature [02oct2024 16:28:57.579] [main/DEBUG] [mixin/]: Mixing NoDeltasInStructuresMixin from betterfortresses.mixins.json into net.minecraft.world.level.levelgen.feature.DeltaFeature [02oct2024 16:28:57.580] [main/DEBUG] [mixin/]: Mixing NoDeltasInStructuresMixin from cataclysm.mixins.json into net.minecraft.world.level.levelgen.feature.DeltaFeature [02oct2024 16:28:57.584] [main/DEBUG] [mixin/]: Mixing NoGeodeInStructuresMixin from cataclysm.mixins.json into net.minecraft.world.level.levelgen.feature.GeodeFeature [02oct2024 16:28:57.626] [main/DEBUG] [mixin/]: Mixing EndSpikeMixin from betterendisland.mixins.json into net.minecraft.world.level.levelgen.feature.SpikeFeature$EndSpike [02oct2024 16:28:57.653] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure [02oct2024 16:28:57.659] [main/DEBUG] [mixin/]: Mixing MineshaftCorridorMixin from supplementaries-common.mixins.json into net.minecraft.world.level.levelgen.structure.structures.MineshaftPieces$MineShaftCorridor [02oct2024 16:28:57.670] [main/DEBUG] [mixin/]: Mixing StrongholdCrossingSconceMixin from supplementaries-common.mixins.json into net.minecraft.world.level.levelgen.structure.structures.StrongholdPieces$FiveCrossing [02oct2024 16:28:57.675] [main/DEBUG] [mixin/]: Mixing StrongholdRoomSconceMixin from supplementaries-common.mixins.json into net.minecraft.world.level.levelgen.structure.structures.StrongholdPieces$RoomCrossing [02oct2024 16:28:57.680] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece [02oct2024 16:28:57.685] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece [02oct2024 16:28:57.689] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece [02oct2024 16:28:57.696] [main/DEBUG] [mixin/]: Mixing MixinEndCityPieces$EndCityPiece from lootr.mixins.json into net.minecraft.world.level.levelgen.structure.structures.EndCityPieces$EndCityPiece [02oct2024 16:28:57.699] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece [02oct2024 16:28:57.713] [main/DEBUG] [mixin/]: Mixing accessor.StructureTemplatePoolAccessor from yungsapi.mixins.json into net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool [02oct2024 16:28:57.713] [main/DEBUG] [mixin/]: Mixing IncreaseStructureWeightLimitMixinForge from yungsapi_forge.mixins.json into net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool [02oct2024 16:28:57.713] [main/DEBUG] [mixin/]: Mixing accessors.world.AccessorStructureTemplatePool from bookshelf.common.mixins.json into net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool [02oct2024 16:28:57.713] [main/DEBUG] [mixin/]: Mixing StructureTemplatePoolAccessor from waystones.mixins.json into net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool [02oct2024 16:28:57.713] [main/DEBUG] [mixin/]: Unexpected: Registered method getRawTemplates()Ljava/util/List; in net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool was not merged [02oct2024 16:28:57.765] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome [02oct2024 16:28:57.780] [main/DEBUG] [mixin/]: Mixing accessor.MobSpawnSettingsBuilderForgeAccessor from puzzleslib.forge.mixins.json into net.minecraft.world.level.biome.MobSpawnSettings$Builder [02oct2024 16:28:57.799] [main/DEBUG] [mixin/]: Mixing NoiseChunkGeneratorMixin from customnpcs.mixins.json into net.minecraft.world.level.levelgen.NoiseBasedChunkGenerator [02oct2024 16:28:57.804] [main/DEBUG] [mixin/]: Mixing NoiseGeneratorSettingsMixin from citadel.mixins.json into net.minecraft.world.level.levelgen.NoiseGeneratorSettings [02oct2024 16:28:57.855] [main/DEBUG] [mixin/]: Mixing accessor.SinglePoolElementAccessor from yungsapi.mixins.json into net.minecraft.world.level.levelgen.structure.pools.SinglePoolElement [02oct2024 16:28:57.855] [main/DEBUG] [mixin/]: Mixing SinglePoolElementMixin from waystones.mixins.json into net.minecraft.world.level.levelgen.structure.pools.SinglePoolElement [02oct2024 16:28:57.856] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$waystones$isWaystone$1(Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;)V to mdcc23e8$lambda$waystones$isWaystone$1$0 in waystones.mixins.json:SinglePoolElementMixin [02oct2024 16:28:57.856] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$waystones$isWaystone$0(Lnet/minecraft/resources/ResourceLocation;)V to mdcc23e8$lambda$waystones$isWaystone$0$1 in waystones.mixins.json:SinglePoolElementMixin [02oct2024 16:28:57.860] [main/DEBUG] [mixin/]: Mixing accessor.ListPoolElementAccessor from yungsapi.mixins.json into net.minecraft.world.level.levelgen.structure.pools.ListPoolElement [02oct2024 16:28:57.862] [main/DEBUG] [mixin/]: Mixing accessor.FeaturePoolElementAccessor from yungsapi.mixins.json into net.minecraft.world.level.levelgen.structure.pools.FeaturePoolElement [02oct2024 16:28:57.941] [main/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6430 [02oct2024 16:28:57.954] [main/DEBUG] [net.minecraftforge.fml.ModWorkManager/LOADING]: Using 8 threads for parallel mod-loading [02oct2024 16:28:57.958] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.961] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for org.cyclops.cyclopscore.CyclopsCore [02oct2024 16:28:57.967] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.967] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.lunapixel.skyvillages.SkyVillagesMain [02oct2024 16:28:57.967] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.968] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.yungnickyoung.minecraft.betterdungeons.BetterDungeonsForge [02oct2024 16:28:57.968] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.968] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.blay09.mods.kuma.forge.ForgeKumaAPI [02oct2024 16:28:57.968] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.968] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.supermartijn642.configlib.ConfigLib [02oct2024 16:28:57.969] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.969] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for software.bernie.example.GeckoLibMod [02oct2024 16:28:57.969] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.969] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for dev.kosmx.playerAnim.forge.ForgeModInterface [02oct2024 16:28:57.969] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.969] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.yungnickyoung.minecraft.betteroceanmonuments.BetterOceanMonumentsForge [02oct2024 16:28:57.969] [main/DEBUG] [net.minecraftforge.fml.lowcodemod.LowCodeModLanguageProvider.LowCodeModTarget/LOADING]: Loading LowCodeModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.969] [main/DEBUG] [net.minecraftforge.fml.lowcodemod.LowCodeModContainer/LOADING]: Creating LowCodeModContainer for incendium [02oct2024 16:28:57.969] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.969] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.mcreator.aquaculturedelight.AquaculturedelightMod [02oct2024 16:28:57.970] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.970] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.p3pp3rf1y.sophisticatedcore.SophisticatedCore [02oct2024 16:28:57.970] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.970] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for top.ribs.scbrass.ScBrass [02oct2024 16:28:57.971] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.971] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for insane96mcp.insanelib.InsaneLib [02oct2024 16:28:57.971] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.971] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for xaero.map.WorldMapForge [02oct2024 16:28:57.973] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.973] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for levosilimo.everlastingskins.EverlastingSkins [02oct2024 16:28:57.973] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.973] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.anthonyhilyard.prism.Prism [02oct2024 16:28:57.973] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.973] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.github.alexthe666.citadel.Citadel [02oct2024 16:28:57.974] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.974] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.github.alexthe666.alexsmobs.AlexsMobs [02oct2024 16:28:57.975] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.975] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for org.cyclops.evilcraft.EvilCraft [02oct2024 16:28:57.976] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.976] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for org.cyclops.evilcraftcompat.EvilCraftCompat [02oct2024 16:28:57.977] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.977] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.yungnickyoung.minecraft.yungsapi.YungsApiForge [02oct2024 16:28:57.977] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.977] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for owmii.powah.forge.PowahForge [02oct2024 16:28:57.977] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.978] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.llamalad7.mixinextras.platform.forge.MixinExtrasMod [02oct2024 16:28:57.978] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.978] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.darkhax.bookshelf.BookshelfForge [02oct2024 16:28:57.978] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.978] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.p3pp3rf1y.sophisticatedbackpacks.SophisticatedBackpacks [02oct2024 16:28:57.979] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.979] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for io.github.jamalam360.rch_supplementaries_compat.forge.RchSupplementariesCompatForge [02oct2024 16:28:57.979] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.979] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for gaia.GrimoireOfGaia [02oct2024 16:28:57.979] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.979] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for fuzs.pickupnotifier.PickUpNotifierForge [02oct2024 16:28:57.980] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.980] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.blay09.mods.balm.forge.ForgeBalm [02oct2024 16:28:57.980] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.980] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for bre2el.fpsreducer.FpsReducer [02oct2024 16:28:57.980] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.980] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.projectile_damage.forge.ForgeMod [02oct2024 16:28:57.981] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.981] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for jeresources.JEResources [02oct2024 16:28:57.981] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.981] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for org.infernalstudios.shieldexp.ShieldExpansion [02oct2024 16:28:57.981] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.981] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.yungnickyoung.minecraft.betterfortresses.BetterFortressesForge [02oct2024 16:28:57.982] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.982] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for me.shedaniel.clothconfig.ClothConfigForge [02oct2024 16:28:57.982] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.982] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.mehvahdjukaar.dummmmmmy.forge.DummmmmmyForge [02oct2024 16:28:57.983] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.983] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for twilightforest.TwilightForestMod [02oct2024 16:28:57.984] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.984] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.mehvahdjukaar.supplementaries.forge.SupplementariesForge [02oct2024 16:28:57.984] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.984] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.hrznstudio.emojiful.EmojifulForge [02oct2024 16:28:57.984] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.984] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for me.jellysquid.mods.sodium.client.SodiumClientMod [02oct2024 16:28:57.985] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.985] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for me.jellysquid.mods.sodium.client.RubidiumStub [02oct2024 16:28:57.985] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.985] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for me.srrapero720.embeddiumplus.EmbeddiumPlus [02oct2024 16:28:57.985] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.985] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for earth.terrarium.athena.forge.AthenaForge [02oct2024 16:28:57.986] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.986] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for de.ellpeck.prettypipes.PrettyPipes [02oct2024 16:28:57.986] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.986] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.anthonyhilyard.advancementplaques.Loader [02oct2024 16:28:57.986] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.986] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for earth.terrarium.chipped.forge.ChippedForge [02oct2024 16:28:57.987] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.987] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for vectorwing.farmersdelight.FarmersDelight [02oct2024 16:28:57.987] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.987] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for it.hurts.octostudios.immersiveui.forge.ImmersiveUIForge [02oct2024 16:28:57.987] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.987] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for me.fallenbreath.fastipping.FastIpPingMod [02oct2024 16:28:57.988] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.988] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.supermartijn642.core.CoreLib [02oct2024 16:28:57.988] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.988] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.yungnickyoung.minecraft.yungsbridges.YungsBridgesForge [02oct2024 16:28:57.988] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.988] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.teamresourceful.resourcefulconfig.forge.ResourcefulconfigForge [02oct2024 16:28:57.989] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.989] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for fr.alasdiablo.jerintegration.JERIntegration [02oct2024 16:28:57.989] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.989] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.mcreator.borninchaosv.BornInChaosV1Mod [02oct2024 16:28:57.989] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.989] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.github.L_Ender.lionfishapi.LionfishAPI [02oct2024 16:28:57.990] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.990] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.github.tartaricacid.touhoulittlemaid.TouhouLittleMaid [02oct2024 16:28:57.990] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.990] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.github.tartaricacid.netmusic.NetMusic [02oct2024 16:28:57.990] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.990] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.github.L_Ender.cataclysm.Cataclysm [02oct2024 16:28:57.991] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.991] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for top.theillusivec4.curios.Curios [02oct2024 16:28:57.991] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.991] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for vazkii.patchouli.forge.common.ForgeModInitializer [02oct2024 16:28:57.992] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.992] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for dev.cheos.armorpointspp.Armorpointspp [02oct2024 16:28:57.992] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.992] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for io.github.jamalam360.rightclickharvest.RightClickHarvestModInit [02oct2024 16:28:57.993] [main/DEBUG] [mixin/]: Mixing ForgeRightClickHarvestModInitMixin from rch_supplementaries_compat.mixins.json into io.github.jamalam360.rightclickharvest.RightClickHarvestModInit [02oct2024 16:28:57.996] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.996] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.irisshaders.iris.Iris [02oct2024 16:28:57.998] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.998] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for de.maxhenkel.camera.Main [02oct2024 16:28:57.999] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.999] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.autovw.advancednetherite.AdvancedNetheriteForge [02oct2024 16:28:57.999] [main/DEBUG] [net.minecraftforge.fml.lowcodemod.LowCodeModLanguageProvider.LowCodeModTarget/LOADING]: Loading LowCodeModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.999] [main/DEBUG] [net.minecraftforge.fml.lowcodemod.LowCodeModContainer/LOADING]: Creating LowCodeModContainer for mr_dungeons_andtaverns [02oct2024 16:28:57.999] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:57.999] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for top.ribs.scguns.ScorchedGuns [02oct2024 16:28:58.000] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.000] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.yungnickyoung.minecraft.betterstrongholds.BetterStrongholdsForge [02oct2024 16:28:58.000] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.000] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for ovh.corail.tombstone.ModTombstone [02oct2024 16:28:58.001] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.001] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for noppes.npcs.CustomNpcs [02oct2024 16:28:58.001] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.001] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for elocindev.ysns.YSNS [02oct2024 16:28:58.002] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.002] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.teamresourceful.resourcefullib.forge.ResourcefulLibForge [02oct2024 16:28:58.003] [main/DEBUG] [thedarkcolour.kotlinforforge.LoggerKt/LOADING]: Loading KotlinModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d} [02oct2024 16:28:58.003] [main/DEBUG] [thedarkcolour.kotlinforforge.LoggerKt/LOADING]: Creating KotlinModContainer instance for org.anti_ad.mc.ipnext.forge.IPNForgeModInit [02oct2024 16:28:58.004] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.004] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.kyanite.deeperdarker.DeeperDarker [02oct2024 16:28:58.004] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.004] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for dev.architectury.forge.ArchitecturyForge [02oct2024 16:28:58.005] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.005] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for de.cristelknight.doapi.forge.DoApiForge [02oct2024 16:28:58.005] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.005] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for de.cristelknight.doapi.forge.terraform.TerraformApiForge [02oct2024 16:28:58.005] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.005] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.satisfy.vinery.forge.VineryForge [02oct2024 16:28:58.006] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.006] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.yuushya.forge.YuushyaForge [02oct2024 16:28:58.006] [main/DEBUG] [net.minecraftforge.fml.lowcodemod.LowCodeModLanguageProvider.LowCodeModTarget/LOADING]: Loading LowCodeModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.006] [main/DEBUG] [net.minecraftforge.fml.lowcodemod.LowCodeModContainer/LOADING]: Creating LowCodeModContainer for mr_limesplatus_ending [02oct2024 16:28:58.006] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.006] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.builtbroken.ai.improvements.AIImprovements [02oct2024 16:28:58.006] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.006] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for me.fallenbreath.conditionalmixin.forge.ConditionalMixinForge [02oct2024 16:28:58.006] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.006] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.yungnickyoung.minecraft.betterendisland.BetterEndIslandForge [02oct2024 16:28:58.007] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.007] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for insane96mcp.enhancedai.EnhancedAI [02oct2024 16:28:58.007] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.007] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.mrcrayfish.framework.FrameworkForge [02oct2024 16:28:58.007] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.007] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for de.cristelknight999.t_and_t.TT [02oct2024 16:28:58.007] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.007] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.yungnickyoung.minecraft.bettermineshafts.BetterMineshaftsForge [02oct2024 16:28:58.008] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.008] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for team.creative.playerrevive.PlayerRevive [02oct2024 16:28:58.008] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.008] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for org.infernalstudios.nebs.NekosEnchantedBooks [02oct2024 16:28:58.009] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.009] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.yungnickyoung.minecraft.betterjungletemples.BetterJungleTemplesForge [02oct2024 16:28:58.009] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.009] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.soulsweaponry.SoulsWeaponry [02oct2024 16:28:58.010] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.010] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.github.alexmodguy.retrodamageindicators.Loader [02oct2024 16:28:58.010] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.010] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.blay09.mods.trashslot.ForgeTrashSlot [02oct2024 16:28:58.010] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.010] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.eruannie_9.nomoportals.NoMoPortals [02oct2024 16:28:58.010] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.011] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.supermartijn642.rechiseled.Rechiseled [02oct2024 16:28:58.011] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.011] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for xyz.iwolfking.rechiseledchipped.RechiseledChipped [02oct2024 16:28:58.012] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.012] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for it.hurts.octostudios.octolib.forge.OctoLibForge [02oct2024 16:28:58.012] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.012] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for tfar.xlpackets.XLPackets [02oct2024 16:28:58.012] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.012] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for mezz.jei.forge.JustEnoughItems [02oct2024 16:28:58.012] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.012] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.darkhax.attributefix.AttributeFixForge [02oct2024 16:28:58.012] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.012] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for top.theillusivec4.caelus.Caelus [02oct2024 16:28:58.012] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.012] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.obscuria.obscureapi.ObscureAPI [02oct2024 16:28:58.013] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.013] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.blay09.mods.waystones.ForgeWaystones [02oct2024 16:28:58.013] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.013] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.blamejared.clumps.Clumps [02oct2024 16:28:58.014] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.014] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for dev.quarris.ppfluids.PrettyPipesFluids [02oct2024 16:28:58.014] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.014] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for artifacts.forge.ArtifactsForge [02oct2024 16:28:58.015] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.015] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.anthonyhilyard.itemborders.Loader [02oct2024 16:28:58.015] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.015] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.yungnickyoung.minecraft.betterdeserttemples.BetterDesertTemplesForge [02oct2024 16:28:58.015] [main/DEBUG] [net.minecraftforge.fml.lowcodemod.LowCodeModLanguageProvider.LowCodeModTarget/LOADING]: Loading LowCodeModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.015] [main/DEBUG] [net.minecraftforge.fml.lowcodemod.LowCodeModContainer/LOADING]: Creating LowCodeModContainer for terralith [02oct2024 16:28:58.016] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.016] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.supermartijn642.fusion.Fusion [02oct2024 16:28:58.016] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.016] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.blamejared.crafttweaker.CraftTweakerForge [02oct2024 16:28:58.016] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.016] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.corosus.watut.loader.forge.WatutModForge [02oct2024 16:28:58.017] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.017] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for org.infernalstudios.miningmaster.MiningMaster [02oct2024 16:28:58.018] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.018] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.cstav.genshinstrument.GInstrumentMod [02oct2024 16:28:58.018] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.018] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for fuzs.puzzlesaccessapi.impl.PuzzlesAccessApiForge [02oct2024 16:28:58.018] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.018] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.aurelj.dungeons_arise_seven_seas.DungeonsAriseSevenSeasMain [02oct2024 16:28:58.018] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.018] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.minecraftforge.common.ForgeMod [02oct2024 16:28:58.020] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.020] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.yungnickyoung.minecraft.travelerstitles.TravelersTitlesForge [02oct2024 16:28:58.020] [main/DEBUG] [thedarkcolour.kotlinforforge.LoggerKt/LOADING]: Loading KotlinModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d} [02oct2024 16:28:58.020] [main/DEBUG] [thedarkcolour.kotlinforforge.LoggerKt/LOADING]: Creating KotlinModContainer instance for dev.kikugie.elytratrims.platform.ETCommonWrapper [02oct2024 16:28:58.021] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.021] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.aurelj.dungeons_arise.DungeonsAriseMain [02oct2024 16:28:58.021] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.022] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.mcreator.terramity.TerramityMod [02oct2024 16:28:58.022] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.022] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for de.maxhenkel.voicechat.ForgeVoicechatMod [02oct2024 16:28:58.023] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.023] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.sweenus.simplyswords.forge.SimplySwordsForge [02oct2024 16:28:58.023] [main/DEBUG] [thedarkcolour.kotlinforforge.LoggerKt/LOADING]: Loading KotlinModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d} [02oct2024 16:28:58.023] [main/DEBUG] [thedarkcolour.kotlinforforge.LoggerKt/LOADING]: Creating KotlinModContainer instance for org.anti_ad.mc.libipn.LibIPNModEntry [02oct2024 16:28:58.023] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.023] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.darkhax.enchdesc.EnchDescForge [02oct2024 16:28:58.024] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.024] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.mehvahdjukaar.moonlight.forge.MoonlightForge [02oct2024 16:28:58.024] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.024] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for team.creative.itemphysiclite.ItemPhysicLite [02oct2024 16:28:58.025] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.025] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.bettercombat.forge.BetterCombatForge [02oct2024 16:28:58.026] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.026] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for elocindev.necronomicon.CommonInitializer [02oct2024 16:28:58.026] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.026] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.bawnorton.mixinsquared.platform.forge.MixinSquaredMod [02oct2024 16:28:58.026] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.026] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for snownee.jade.util.CommonProxy [02oct2024 16:28:58.027] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.027] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for team.creative.creativecore.CreativeCore [02oct2024 16:28:58.028] [main/DEBUG] [net.minecraftforge.fml.lowcodemod.LowCodeModLanguageProvider.LowCodeModTarget/LOADING]: Loading LowCodeModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.028] [main/DEBUG] [net.minecraftforge.fml.lowcodemod.LowCodeModContainer/LOADING]: Creating LowCodeModContainer for mr_hostile_mobsimproveovertime [02oct2024 16:28:58.028] [main/DEBUG] [thedarkcolour.kotlinforforge.LoggerKt/LOADING]: Loading KotlinModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d} [02oct2024 16:28:58.028] [main/DEBUG] [thedarkcolour.kotlinforforge.LoggerKt/LOADING]: Creating KotlinModContainer instance for thedarkcolour.kotlinforforge.test.KotlinForForge [02oct2024 16:28:58.028] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.028] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for de.maxhenkel.easyvillagers.Main [02oct2024 16:28:58.029] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.029] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.anthonyhilyard.iceberg.Loader [02oct2024 16:28:58.029] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.029] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.mcreator.fuzerelics.FuzeRelicsMod [02oct2024 16:28:58.030] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.030] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.anthonyhilyard.legendarytooltips.Loader [02oct2024 16:28:58.030] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.030] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for xaero.minimap.XaeroMinimapForge [02oct2024 16:28:58.032] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.032] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.geforcemods.securitycraft.SecurityCraft [02oct2024 16:28:58.032] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.032] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.jaquadro.minecraft.storagedrawers.StorageDrawers [02oct2024 16:28:58.033] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.033] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for org.dawnoftime.armoroftheages.ArmorOfTheAges [02oct2024 16:28:58.033] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.033] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.mna.ManaAndArtifice [02oct2024 16:28:58.034] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.034] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for moe.plushie.armourers_workshop.compatibility.forge.AbstractForgeInitializer [02oct2024 16:28:58.034] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.034] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for dlovin.inventoryhud.InventoryHUD [02oct2024 16:28:58.035] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.035] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.corosus.coroutil.loader.forge.ConfigModForge [02oct2024 16:28:58.035] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.035] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for tech.thatgravyboat.creeperoverhaul.forge.CreepersForge [02oct2024 16:28:58.036] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.036] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for squeek.appleskin.AppleSkin [02oct2024 16:28:58.036] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.036] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.ncpbails.alexsdelight.AlexsDelight [02oct2024 16:28:58.036] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.036] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for noobanidus.mods.lootr.Lootr [02oct2024 16:28:58.037] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.037] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for malte0811.ferritecore.ModMainForge [02oct2024 16:28:58.037] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.037] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for dev.isxander.yacl3.platform.PlatformEntrypoint [02oct2024 16:28:58.037] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.037] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for me.flashyreese.mods.sodiumextra.EmbeddiumExtraMod [02oct2024 16:28:58.037] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.037] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for fuzs.puzzleslib.impl.PuzzlesLibForge [02oct2024 16:28:58.038] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.038] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.teammetallurgy.aquaculture.Aquaculture [02oct2024 16:28:58.038] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.038] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for immersive_melodies.forge.CommonForge [02oct2024 16:28:58.039] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.039] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for be.florens.expandability.forge.ExpandAbilityForge [02oct2024 16:28:58.039] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.039] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.obscuria.aquamirae.Aquamirae [02oct2024 16:28:58.040] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3e98b933 - got cpw.mods.cl.ModuleClassLoader@472698d [02oct2024 16:28:58.040] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.cristellib.forge.CristelLibForge [02oct2024 16:28:58.049] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for skyvillages [02oct2024 16:28:58.049] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for playeranimator [02oct2024 16:28:58.049] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for kuma_api [02oct2024 16:28:58.052] [modloading-worker-0/DEBUG] [betteroceanmonuments/]: Loaded com.yungnickyoung.minecraft.betteroceanmonuments.services.ForgePlatformHelper@5e6d5c38 for service interface com.yungnickyoung.minecraft.betteroceanmonuments.services.IPlatformHelper [02oct2024 16:28:58.052] [modloading-worker-0/DEBUG] [betterdungeons/]: Loaded com.yungnickyoung.minecraft.betterdungeons.services.ForgePlatformHelper@2626e03 for service interface com.yungnickyoung.minecraft.betterdungeons.services.IPlatformHelper [02oct2024 16:28:58.053] [modloading-worker-0/DEBUG] [betterdungeons/]: Loaded com.yungnickyoung.minecraft.betterdungeons.services.ForgeModulesLoader@35ce9e22 for service interface com.yungnickyoung.minecraft.betterdungeons.services.IModulesLoader [02oct2024 16:28:58.053] [modloading-worker-0/DEBUG] [betteroceanmonuments/]: Loaded com.yungnickyoung.minecraft.betteroceanmonuments.services.ForgeModulesLoader@1e2c8669 for service interface com.yungnickyoung.minecraft.betteroceanmonuments.services.IModulesLoader [02oct2024 16:28:58.073] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file betteroceanmonuments-forge-1_20.toml for betteroceanmonuments tracking [02oct2024 16:28:58.073] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file sophisticatedcore-common.toml for sophisticatedcore tracking [02oct2024 16:28:58.073] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file sophisticatedcore-client.toml for sophisticatedcore tracking [02oct2024 16:28:58.074] [modloading-worker-0/DEBUG] [mixin/]: Mixing MixinLevelEvent from architectury.mixins.json into net.minecraftforge.event.level.LevelEvent [02oct2024 16:28:58.080] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file betterdungeons-forge-1_20.toml for betterdungeons tracking [02oct2024 16:28:58.081] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for scbrass [02oct2024 16:28:58.082] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for betteroceanmonuments [02oct2024 16:28:58.083] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for betterdungeons [02oct2024 16:28:58.083] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for supermartijn642configlib [02oct2024 16:28:58.083] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for prism [02oct2024 16:28:58.087] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file everlastingskins-common.toml for everlastingskins tracking [02oct2024 16:28:58.091] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for everlastingskins [02oct2024 16:28:58.092] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing levosilimo.everlastingskins.Config to FORGE [02oct2024 16:28:58.093] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for geckolib [02oct2024 16:28:58.093] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing software.bernie.example.GeckoLibMod to FORGE [02oct2024 16:28:58.093] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing software.bernie.example.CommonListener to MOD [02oct2024 16:28:58.093] [modloading-worker-0/DEBUG] [mixin/]: Mixing ReloadableServerResourcesMixin from balm.mixins.json into net.minecraft.server.ReloadableServerResources [02oct2024 16:28:58.093] [modloading-worker-0/DEBUG] [mixin/]: Renaming synthetic method lambda$loadResources$0(Lnet/minecraft/server/ReloadableServerResources;)V to mdcc23e8$lambda$loadResources$0$0 in balm.mixins.json:ReloadableServerResourcesMixin [02oct2024 16:28:58.094] [modloading-worker-0/DEBUG] [mixin/]: Mixing common.access.server.AccessReloadableServerResources from crafttweaker.mixins.json into net.minecraft.server.ReloadableServerResources [02oct2024 16:28:58.094] [modloading-worker-0/DEBUG] [mixin/]: Mixing DataPackContentsMixin from elytratrims-common.mixins.json into net.minecraft.server.ReloadableServerResources [02oct2024 16:28:58.097] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for aquaculturedelight [02oct2024 16:28:58.097] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.insanelib.module.base.TagsFeature [02oct2024 16:28:58.099] [modloading-worker-0/DEBUG] [xaero.map.WorldMap/]: Loaded xaero.map.platform.services.ForgePlatformHelper@6a3486f3 for service interface xaero.map.platform.services.IPlatformHelper [02oct2024 16:28:58.104] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file citadel-common.toml for citadel tracking [02oct2024 16:28:58.106] [modloading-worker-0/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_11229_ with desc (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/level/ServerLevel;)V [02oct2024 16:28:58.107] [modloading-worker-0/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_11229_ with desc (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/level/ServerLevel;)V [02oct2024 16:28:58.107] [modloading-worker-0/DEBUG] [mixin/]: Mixing server.MixinPlayerManager from everlastingskins.mixins.json into net.minecraft.server.players.PlayerList [02oct2024 16:28:58.107] [modloading-worker-0/DEBUG] [mixin/]: everlastingskins.mixins.json:server.MixinPlayerManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:58.109] [modloading-worker-0/DEBUG] [mixin/]: Mixing PlayerListMixin from balm.mixins.json into net.minecraft.server.players.PlayerList [02oct2024 16:28:58.109] [modloading-worker-0/DEBUG] [mixin/]: Mixing camera.PlayerListMixin from securitycraft.mixins.json into net.minecraft.server.players.PlayerList [02oct2024 16:28:58.116] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for citadel [02oct2024 16:28:58.117] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.alexthe666.citadel.ServerProxy to MOD [02oct2024 16:28:58.119] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.insanelib.module.base.FixFeature [02oct2024 16:28:58.122] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for xaeroworldmap [02oct2024 16:28:58.122] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.insanelib.module.base.BaseFeature [02oct2024 16:28:58.123] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.insanelib.module.base.AEC3DFeature [02oct2024 16:28:58.125] [modloading-worker-0/DEBUG] [mixin/]: Mixing accessors.world.AccessorRecipeManager from bookshelf.common.mixins.json into net.minecraft.world.item.crafting.RecipeManager [02oct2024 16:28:58.125] [modloading-worker-0/DEBUG] [mixin/]: Mixing accessor.RecipeManagerAccessor from farmersdelight.mixins.json into net.minecraft.world.item.crafting.RecipeManager [02oct2024 16:28:58.125] [modloading-worker-0/DEBUG] [mixin/]: Mixing RecipeManagerMixin from soulsweapons.mixins.json into net.minecraft.world.item.crafting.RecipeManager [02oct2024 16:28:58.125] [modloading-worker-0/DEBUG] [mixin/]: Mixing common.access.recipe.AccessRecipeManager from crafttweaker.mixins.json into net.minecraft.world.item.crafting.RecipeManager [02oct2024 16:28:58.132] [modloading-worker-0/DEBUG] [mixin/]: Mixing patches.packs.resources.MixinSimpleJsonResourceReloadListener from bookshelf.common.mixins.json into net.minecraft.server.packs.resources.SimpleJsonResourceReloadListener [02oct2024 16:28:58.132] [modloading-worker-0/DEBUG] [mixin/]: Renaming synthetic method lambda$prepare$0(Ljava/util/Map$Entry;)Z to mdcc23e8$lambda$prepare$0$0 in bookshelf.common.mixins.json:patches.packs.resources.MixinSimpleJsonResourceReloadListener [02oct2024 16:28:58.134] [modloading-worker-0/DEBUG] [mixin/]: Mixing ConditionHackMixin from moonlight.mixins.json into net.minecraft.server.packs.resources.SimplePreparableReloadListener [02oct2024 16:28:58.141] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file insanelib-common.toml for insanelib tracking [02oct2024 16:28:58.144] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for sophisticatedcore [02oct2024 16:28:58.145] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for evilcraftcompat [02oct2024 16:28:58.146] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for mixinextras [02oct2024 16:28:58.151] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for insanelib [02oct2024 16:28:58.151] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing insane96mcp.insanelib.world.scheduled.ScheduledTasks to FORGE [02oct2024 16:28:58.152] [modloading-worker-0/DEBUG] [Bookshelf/]: Loaded net.darkhax.bookshelf.impl.util.PlatformHelperForge@7a460a74 for service interface net.darkhax.bookshelf.api.util.IPlatformHelper. [02oct2024 16:28:58.154] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing insane96mcp.insanelib.setup.Config to MOD [02oct2024 16:28:58.154] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for rch_supplementaries_compat [02oct2024 16:28:58.155] [modloading-worker-0/DEBUG] [Bookshelf/]: Loaded net.darkhax.bookshelf.impl.event.EventHelperForge@7c97d41e for service interface net.darkhax.bookshelf.api.event.IEventHelper. [02oct2024 16:28:58.157] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file grimoireofgaia-client.toml for grimoireofgaia tracking [02oct2024 16:28:58.157] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file grimoireofgaia-common.toml for grimoireofgaia tracking [02oct2024 16:28:58.159] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file cyclopscore-common.toml for cyclopscore tracking [02oct2024 16:28:58.159] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.ModLoadingContext/]: Attempted to register an empty config for type CLIENT on mod cyclopscore [02oct2024 16:28:58.159] [modloading-worker-0/DEBUG] [Bookshelf/]: Loaded net.darkhax.bookshelf.impl.registry.ContentLoaderForge@20eb083a for service interface net.darkhax.bookshelf.api.registry.IContentLoader. [02oct2024 16:28:58.162] [modloading-worker-0/DEBUG] [Bookshelf/]: Loaded net.darkhax.bookshelf.impl.data.TagHelperForge@4e9150f3 for service interface net.darkhax.bookshelf.api.data.ITagHelper. [02oct2024 16:28:58.166] [modloading-worker-0/DEBUG] [Bookshelf/]: Loaded net.darkhax.bookshelf.impl.util.InventoryHelperForge@7943d7e6 for service interface net.darkhax.bookshelf.api.util.IInventoryHelper. [02oct2024 16:28:58.167] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for cyclopscore [02oct2024 16:28:58.168] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for pickupnotifier [02oct2024 16:28:58.168] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing fuzs.pickupnotifier.PickUpNotifierForge to MOD [02oct2024 16:28:58.168] [modloading-worker-0/DEBUG] [Bookshelf/]: Loaded net.darkhax.bookshelf.impl.util.ConstructHelperForge@7281726c for service interface net.darkhax.bookshelf.api.util.IConstructHelper. [02oct2024 16:28:58.175] [modloading-worker-0/DEBUG] [betterfortresses/]: Loaded com.yungnickyoung.minecraft.betterfortresses.services.ForgePlatformHelper@5bc0fdbc for service interface com.yungnickyoung.minecraft.betterfortresses.services.IPlatformHelper [02oct2024 16:28:58.176] [modloading-worker-0/DEBUG] [betterfortresses/]: Loaded com.yungnickyoung.minecraft.betterfortresses.services.ForgeModulesLoader@5211bf77 for service interface com.yungnickyoung.minecraft.betterfortresses.services.IModulesLoader [02oct2024 16:28:58.176] [modloading-worker-0/DEBUG] [betterfortresses/]: Loaded com.yungnickyoung.minecraft.betterfortresses.services.ForgeProcessorProvider@3fa488d7 for service interface com.yungnickyoung.minecraft.betterfortresses.services.IProcessorProvider [02oct2024 16:28:58.194] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for pickupnotifier:main [02oct2024 16:28:58.202] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file sophisticatedbackpacks-server.toml for sophisticatedbackpacks tracking [02oct2024 16:28:58.202] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file sophisticatedbackpacks-common.toml for sophisticatedbackpacks tracking [02oct2024 16:28:58.205] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:pufferfish_bucket is now minecraft:bucket. [02oct2024 16:28:58.206] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:salmon_bucket is now minecraft:bucket. [02oct2024 16:28:58.206] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:cod_bucket is now minecraft:bucket. [02oct2024 16:28:58.207] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:tropical_fish_bucket is now minecraft:bucket. [02oct2024 16:28:58.207] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:axolotl_bucket is now minecraft:bucket. [02oct2024 16:28:58.207] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:powder_snow_bucket is now minecraft:bucket. [02oct2024 16:28:58.208] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:tadpole_bucket is now minecraft:bucket. [02oct2024 16:28:58.210] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file pickupnotifier\pickupnotifier-server.toml for pickupnotifier tracking [02oct2024 16:28:58.210] [modloading-worker-0/DEBUG] [mixin/]: Mixing common.transform.item.attribute.MixinItemAttributeModifierEvent from crafttweaker.forge.mixins.json into net.minecraftforge.event.ItemAttributeModifierEvent [02oct2024 16:28:58.214] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for bookshelf [02oct2024 16:28:58.214] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.darkhax.bookshelf.impl.gametest.BookshelfForgeGameTests to MOD [02oct2024 16:28:58.242] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for fpsreducer [02oct2024 16:28:58.252] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for projectile_damage [02oct2024 16:28:58.259] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file jeresources-common.toml for jeresources tracking [02oct2024 16:28:58.262] [modloading-worker-0/DEBUG] [jeresources/]: Loaded jeresources.forge.ForgePlatformHelper@35055fa6 for service interface jeresources.platform.IPlatformHelper [02oct2024 16:28:58.263] [modloading-worker-0/DEBUG] [jeresources/]: Loading config file C:\Games\Server\config\jeresources.toml [02oct2024 16:28:58.264] [modloading-worker-0/DEBUG] [jeresources/]: Built TOML config for C:\Games\Server\config\jeresources.toml [02oct2024 16:28:58.265] [modloading-worker-0/DEBUG] [jeresources/]: Loaded TOML config file C:\Games\Server\config\jeresources.toml [02oct2024 16:28:58.291] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for jeresources [02oct2024 16:28:58.295] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file ShieldExpansion-common.toml for shieldexp tracking [02oct2024 16:28:58.304] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file balm-common.toml for balm tracking [02oct2024 16:28:58.310] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for shieldexp [02oct2024 16:28:58.310] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing org.infernalstudios.shieldexp.init.SoundsInit to MOD [02oct2024 16:28:58.310] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing org.infernalstudios.shieldexp.init.ShieldDataLoader to FORGE [02oct2024 16:28:58.311] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing org.infernalstudios.shieldexp.init.ItemsInit to MOD [02oct2024 16:28:58.311] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing org.infernalstudios.shieldexp.events.ShieldExpansionEvents to MOD [02oct2024 16:28:58.311] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing org.infernalstudios.shieldexp.events.CreativeTabEvents to FORGE [02oct2024 16:28:58.311] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for balm [02oct2024 16:28:58.312] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for cloth_config [02oct2024 16:28:58.319] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file alexsmobs.toml for alexsmobs tracking [02oct2024 16:28:58.326] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file betterfortresses-forge-1_20.toml for betterfortresses tracking [02oct2024 16:28:58.327] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for betterfortresses [02oct2024 16:28:58.329] [modloading-worker-0/DEBUG] [mixin/]: Mixing gamerule.BooleanValueInvoker from mixins.artifacts.common.json into net.minecraft.world.level.GameRules$BooleanValue [02oct2024 16:28:58.330] [modloading-worker-0/DEBUG] [mixin/]: Renaming @Invoker method invokeCreate(ZLjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; to invokeCreate_$md$cc23e8$0 in mixins.artifacts.common.json:gamerule.BooleanValueInvoker [02oct2024 16:28:58.335] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file evilcraft-common.toml for evilcraft tracking [02oct2024 16:28:58.335] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.ModLoadingContext/]: Attempted to register an empty config for type CLIENT on mod evilcraft [02oct2024 16:28:58.335] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.ModLoadingContext/]: Attempted to register an empty config for type SERVER on mod evilcraft [02oct2024 16:28:58.339] [modloading-worker-0/DEBUG] [mixin/]: Mixing gamerule.IntegerValueInvoker from mixins.artifacts.common.json into net.minecraft.world.level.GameRules$IntegerValue [02oct2024 16:28:58.339] [modloading-worker-0/DEBUG] [mixin/]: Renaming @Invoker method invokeCreate(ILjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; to invokeCreate_$md$cc23e8$0 in mixins.artifacts.common.json:gamerule.IntegerValueInvoker [02oct2024 16:28:58.349] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file twilightforest-common.toml for twilightforest tracking [02oct2024 16:28:58.351] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file twilightforest-client.toml for twilightforest tracking [02oct2024 16:28:58.354] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for alexsmobs [02oct2024 16:28:58.354] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.alexthe666.alexsmobs.world.AMWorldRegistry to MOD [02oct2024 16:28:58.356] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.alexthe666.alexsmobs.tileentity.AMTileEntityRegistry to MOD [02oct2024 16:28:58.356] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.alexthe666.alexsmobs.event.ServerEvents to FORGE [02oct2024 16:28:58.359] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.alexthe666.alexsmobs.entity.AMEntityRegistry to MOD [02oct2024 16:28:58.359] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.alexthe666.alexsmobs.CommonProxy to MOD [02oct2024 16:28:58.359] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file dummmmmmy-common.toml for dummmmmmy tracking [02oct2024 16:28:58.360] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.alexthe666.alexsmobs.AlexsMobs to FORGE [02oct2024 16:28:58.362] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id architectury:sync_ids [02oct2024 16:28:58.364] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id powah:packet [02oct2024 16:28:58.366] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for evilcraft [02oct2024 16:28:58.369] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file emojiful-client.toml for emojiful tracking [02oct2024 16:28:58.370] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for emojiful [02oct2024 16:28:58.373] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for dummmmmmy [02oct2024 16:28:58.374] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for rubidium [02oct2024 16:28:58.375] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for embeddiumplus [02oct2024 16:28:58.375] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for powah [02oct2024 16:28:58.376] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for athena [02oct2024 16:28:58.378] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for advancementplaques [02oct2024 16:28:58.378] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.anthonyhilyard.advancementplaques.config.AdvancementPlaquesConfig to MOD [02oct2024 16:28:58.378] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for sophisticatedbackpacks [02oct2024 16:28:58.379] [modloading-worker-0/DEBUG] [mixin/]: Mixing MixinChipped from rechiseled_chipped.mixins.json into earth.terrarium.chipped.Chipped [02oct2024 16:28:58.379] [modloading-worker-0/DEBUG] [mixin/]: rechiseled_chipped.mixins.json:MixinChipped: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:58.385] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for prettypipes [02oct2024 16:28:58.385] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing de.ellpeck.prettypipes.misc.Events to FORGE [02oct2024 16:28:58.385] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.anthonyhilyard.advancementplaques.AdvancementPlaques to MOD [02oct2024 16:28:58.387] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing de.ellpeck.prettypipes.Registry to MOD [02oct2024 16:28:58.389] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for embeddium [02oct2024 16:28:58.389] [modloading-worker-0/INFO] [me.fallenbreath.fastipping.FastIpPingMod/]: ping & connect fast! [02oct2024 16:28:58.390] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for fastipping [02oct2024 16:28:58.392] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for immersiveui [02oct2024 16:28:58.392] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing it.hurts.octostudios.immersiveui.forge.ImmersiveUIForge to MOD [02oct2024 16:28:58.395] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file farmersdelight-common.toml for farmersdelight tracking [02oct2024 16:28:58.395] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file farmersdelight-client.toml for farmersdelight tracking [02oct2024 16:28:58.396] [modloading-worker-0/DEBUG] [yungsbridges/]: Loaded com.yungnickyoung.minecraft.yungsbridges.services.ForgePlatformHelper@58bee937 for service interface com.yungnickyoung.minecraft.yungsbridges.services.IPlatformHelper [02oct2024 16:28:58.397] [modloading-worker-0/DEBUG] [yungsbridges/]: Loaded com.yungnickyoung.minecraft.yungsbridges.services.ForgeModulesLoader@24d9bd17 for service interface com.yungnickyoung.minecraft.yungsbridges.services.IModulesLoader [02oct2024 16:28:58.397] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for yungsbridges [02oct2024 16:28:58.398] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file supplementaries-common.toml for supplementaries tracking [02oct2024 16:28:58.418] [modloading-worker-0/DEBUG] [mixin/]: Mixing CompatFarmersDelightTomatoMixin from supplementaries-common.mixins.json into vectorwing.farmersdelight.common.block.TomatoVineBlock [02oct2024 16:28:58.425] [modloading-worker-0/DEBUG] [mixin/]: Mixing CraftingHelperMixin from supermartijn642corelib.mixins.json into net.minecraftforge.common.crafting.CraftingHelper [02oct2024 16:28:58.436] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for grimoireofgaia [02oct2024 16:28:58.436] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing gaia.registry.GaiaSpawning to FORGE [02oct2024 16:28:58.436] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing gaia.datagen.GaiaDatagen to MOD [02oct2024 16:28:58.438] [modloading-worker-0/DEBUG] [mixin/]: Mixing TagsProviderForgeMixin from puzzleslib.forge.mixins.json into net.minecraft.data.tags.TagsProvider [02oct2024 16:28:58.439] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for resourcefulconfig [02oct2024 16:28:58.441] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file jerintegration-client.toml for jerintegration tracking [02oct2024 16:28:58.441] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for jerintegration [02oct2024 16:28:58.445] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for lionfishapi [02oct2024 16:28:58.446] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.L_Ender.lionfishapi.server.entity.ModEntities to MOD [02oct2024 16:28:58.447] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.L_Ender.lionfishapi.LionfishAPI to FORGE [02oct2024 16:28:58.447] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.L_Ender.lionfishapi.CommonProxy to MOD [02oct2024 16:28:58.449] [modloading-worker-0/DEBUG] [mixin/]: Mixing SCustomPayloadPacketMixin from xlpackets.mixins.json into net.minecraft.network.protocol.game.ClientboundCustomPayloadPacket [02oct2024 16:28:58.453] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for supermartijn642corelib [02oct2024 16:28:58.453] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.supermartijn642.core.CommonUtils to MOD [02oct2024 16:28:58.467] [modloading-worker-0/DEBUG] [mixin/]: Mixing MixinChippedModBlocks from rechiseled_chipped.mixins.json into earth.terrarium.chipped.common.registry.ModBlocks [02oct2024 16:28:58.467] [modloading-worker-0/DEBUG] [mixin/]: rechiseled_chipped.mixins.json:MixinChippedModBlocks: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) [02oct2024 16:28:58.492] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file netmusic-common.toml for netmusic tracking [02oct2024 16:28:58.492] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for netmusic [02oct2024 16:28:58.492] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.netmusic.init.CommonRegistry to MOD [02oct2024 16:28:58.494] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.netmusic.init.CommandRegistry to FORGE [02oct2024 16:28:58.495] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.netmusic.compat.tlm.init.CompatRegistry to MOD [02oct2024 16:28:58.513] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file cataclysm.toml for cataclysm tracking [02oct2024 16:28:58.524] [modloading-worker-0/DEBUG] [mixin/]: Mixing self.SelfWrenchMixin from supplementaries.mixins.json into net.mehvahdjukaar.supplementaries.common.items.WrenchItem [02oct2024 16:28:58.525] [modloading-worker-0/DEBUG] [mixin/]: Renaming synthetic method lambda$onLeftClickEntity$0(Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/player/Player;)V to mdcc23e8$lambda$onLeftClickEntity$0$0 in supplementaries.mixins.json:self.SelfWrenchMixin [02oct2024 16:28:58.530] [modloading-worker-0/DEBUG] [mixin/]: Mixing self.SelfSoapItemMixin from supplementaries.mixins.json into net.mehvahdjukaar.supplementaries.common.items.SoapItem [02oct2024 16:28:58.540] [modloading-worker-0/DEBUG] [mixin/]: Mixing self.SelfGunpowderMixin from supplementaries.mixins.json into net.mehvahdjukaar.supplementaries.common.block.blocks.GunpowderBlock [02oct2024 16:28:58.554] [modloading-worker-0/DEBUG] [mixin/]: Mixing self.SelfSlingshotMixin from supplementaries.mixins.json into net.mehvahdjukaar.supplementaries.common.items.SlingshotItem [02oct2024 16:28:58.568] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for farmersdelight [02oct2024 16:28:58.568] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing vectorwing.farmersdelight.data.DataGenerators to MOD [02oct2024 16:28:58.569] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing vectorwing.farmersdelight.common.item.SkilletItem$SkilletEvents to FORGE [02oct2024 16:28:58.571] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing vectorwing.farmersdelight.common.item.KnifeItem$KnifeEvents to FORGE [02oct2024 16:28:58.576] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing vectorwing.farmersdelight.common.item.HorseFeedItem$HorseFeedEvent to FORGE [02oct2024 16:28:58.578] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing vectorwing.farmersdelight.common.item.enchantment.BackstabbingEnchantment$BackstabbingEvent to FORGE [02oct2024 16:28:58.579] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing vectorwing.farmersdelight.common.item.DogFoodItem$DogFoodEvent to FORGE [02oct2024 16:28:58.580] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for yungsapi [02oct2024 16:28:58.581] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing vectorwing.farmersdelight.common.event.VillagerEvents to FORGE [02oct2024 16:28:58.582] [modloading-worker-0/DEBUG] [mixin/]: Mixing common.access.villager.AccessBasicTrade from crafttweaker.forge.mixins.json into net.minecraftforge.common.BasicItemListing [02oct2024 16:28:58.582] [modloading-worker-0/DEBUG] [mixin/]: Mixing common.transform.villager.MixinBasicTrade from crafttweaker.forge.mixins.json into net.minecraftforge.common.BasicItemListing [02oct2024 16:28:58.591] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing vectorwing.farmersdelight.common.event.SetupEvents to MOD [02oct2024 16:28:58.593] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing vectorwing.farmersdelight.common.event.MappingEvents to FORGE [02oct2024 16:28:58.595] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file curios-client.toml for curios tracking [02oct2024 16:28:58.596] [modloading-worker-0/DEBUG] [mixin/]: Mixing self.SelfSafeMixin from supplementaries.mixins.json into net.mehvahdjukaar.supplementaries.common.block.blocks.SafeBlock [02oct2024 16:28:58.598] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing vectorwing.farmersdelight.common.event.CommonEvents to FORGE [02oct2024 16:28:58.601] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing vectorwing.farmersdelight.common.Configuration to FORGE [02oct2024 16:28:58.601] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing vectorwing.farmersdelight.common.block.CuttingBoardBlock$ToolCarvingEvent to FORGE [02oct2024 16:28:58.602] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file curios-common.toml for curios tracking [02oct2024 16:28:58.602] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file curios-server.toml for curios tracking [02oct2024 16:28:58.602] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for curios [02oct2024 16:28:58.602] [modloading-worker-0/DEBUG] [mixin/]: Mixing accessor.CriteriaTriggersAccessor from yungsapi.mixins.json into net.minecraft.advancements.CriteriaTriggers [02oct2024 16:28:58.603] [modloading-worker-0/DEBUG] [mixin/]: Renaming @Accessor method getValues()Ljava/util/Map; to getValues_$md$cc23e8$0 in yungsapi.mixins.json:accessor.CriteriaTriggersAccessor [02oct2024 16:28:58.606] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file patchouli-client.toml for patchouli tracking [02oct2024 16:28:58.609] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for patchouli [02oct2024 16:28:58.609] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing vazkii.patchouli.forge.common.ForgeModInitializer to MOD [02oct2024 16:28:58.613] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file rightclickharvest.toml for rightclickharvest tracking [02oct2024 16:28:58.614] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for rightclickharvest [02oct2024 16:28:58.615] [modloading-worker-0/ERROR] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/gui/screens/Screen for invalid dist DEDICATED_SERVER [02oct2024 16:28:58.619] [modloading-worker-0/DEBUG] [mixin/]: Mixing self.SelfQuiverItem from supplementaries.mixins.json into net.mehvahdjukaar.supplementaries.common.items.QuiverItem [02oct2024 16:28:58.615] [modloading-worker-0/ERROR] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Failed to create mod instance. ModID: oculus, class net.irisshaders.iris.Iris java.lang.RuntimeException: Attempted to load class net/minecraft/client/gui/screens/Screen for invalid dist DEDICATED_SERVER     at net.minecraftforge.fml.loading.RuntimeDistCleaner.processClassWithFlags(RuntimeDistCleaner.java:57) ~[fmlloader-1.20.1-47.3.10.jar%2369!/:1.0]     at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar%2355!/:?]     at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar%2355!/:?]     at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar%2355!/:?]     at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?]     at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?]     at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]     at java.lang.Class.getDeclaredConstructors0(Native Method) ~[?:?]     at java.lang.Class.privateGetDeclaredConstructors(Class.java:3572) ~[?:?]     at java.lang.Class.getConstructor0(Class.java:3777) ~[?:?]     at java.lang.Class.getDeclaredConstructor(Class.java:2955) ~[?:?]     at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:73) ~[javafmllanguage-1.20.1-47.3.10.jar%23401!/:?]     at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:124) ~[fmlcore-1.20.1-47.3.10.jar%23400!/:?]     at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?]     at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?]     at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:507) ~[?:?]     at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1491) ~[?:?]     at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:2073) ~[?:?]     at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:2035) ~[?:?]     at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:187) ~[?:?] [02oct2024 16:28:58.638] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file armorpointspp-client.toml for armorpointspp tracking [02oct2024 16:28:58.638] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for armorpointspp [02oct2024 16:28:58.641] [modloading-worker-0/DEBUG] [mixin/]: Mixing self.SerfOpenableContainerMixin from supplementaries.mixins.json into net.mehvahdjukaar.supplementaries.common.block.tiles.OpeneableContainerBlockEntity [02oct2024 16:28:58.702] [modloading-worker-0/INFO] [com.autovw.advancednetherite.AdvancedNetherite/]: Initializing platform helper for Advanced Netherite! [02oct2024 16:28:58.708] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file camera-server.toml for camera tracking [02oct2024 16:28:58.710] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file camera-client.toml for camera tracking [02oct2024 16:28:58.745] [modloading-worker-0/DEBUG] [mixin/]: Mixing self.SelfPlanterMixin from supplementaries.mixins.json into net.mehvahdjukaar.supplementaries.common.block.blocks.PlanterBlock [02oct2024 16:28:58.746] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for camera [02oct2024 16:28:58.746] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing de.maxhenkel.camera.ServerEvents to FORGE [02oct2024 16:28:58.751] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file advancednetherite-client.toml for advancednetherite tracking [02oct2024 16:28:58.751] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file advancednetherite-common.toml for advancednetherite tracking [02oct2024 16:28:58.751] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file advancednetherite-server.toml for advancednetherite tracking [02oct2024 16:28:58.798] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file touhou_little_maid-common.toml for touhou_little_maid tracking [02oct2024 16:28:58.799] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file touhou_little_maid-server.toml for touhou_little_maid tracking [02oct2024 16:28:58.806] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for advancednetherite [02oct2024 16:28:58.806] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.autovw.advancednetherite.datagen.ModDataGenerator to MOD [02oct2024 16:28:58.807] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.autovw.advancednetherite.common.EventHandler to FORGE [02oct2024 16:28:58.808] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.autovw.advancednetherite.AdvancedNetheriteTab to MOD [02oct2024 16:28:58.812] [modloading-worker-0/DEBUG] [betterstrongholds/]: Loaded com.yungnickyoung.minecraft.betterstrongholds.services.ForgePlatformHelper@cd96583 for service interface com.yungnickyoung.minecraft.betterstrongholds.services.IPlatformHelper [02oct2024 16:28:58.813] [modloading-worker-0/DEBUG] [betterstrongholds/]: Loaded com.yungnickyoung.minecraft.betterstrongholds.services.ForgeModulesLoader@56edb22c for service interface com.yungnickyoung.minecraft.betterstrongholds.services.IModulesLoader [02oct2024 16:28:58.814] [modloading-worker-0/DEBUG] [betterstrongholds/]: Loaded com.yungnickyoung.minecraft.betterstrongholds.services.ForgeProcessorProvider@33b2887f for service interface com.yungnickyoung.minecraft.betterstrongholds.services.IProcessorProvider [02oct2024 16:28:58.826] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file betterstrongholds-forge-1_20.toml for betterstrongholds tracking [02oct2024 16:28:58.828] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for betterstrongholds [02oct2024 16:28:58.828] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file scguns-client.toml for scguns tracking [02oct2024 16:28:58.828] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file scguns-common.toml for scguns tracking [02oct2024 16:28:58.830] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file gun_scaling/main.toml for scguns tracking [02oct2024 16:28:58.830] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file scguns-server.toml for scguns tracking [02oct2024 16:28:58.843] [modloading-worker-0/WARN] [supermartijn642corelib/]: Mod 'Chipped' is requesting registration helper for different modid 'rechiseled_chipped'! [02oct2024 16:28:58.848] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for chipped [02oct2024 16:28:58.865] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for customnpcs [02oct2024 16:28:58.866] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing noppes.npcs.SkinEventHandler to FORGE [02oct2024 16:28:58.867] [modloading-worker-0/DEBUG] [mixin/]: Mixing self.SelfFrameMixin from supplementaries.mixins.json into net.mehvahdjukaar.supplementaries.common.block.blocks.FrameBlock [02oct2024 16:28:58.871] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing noppes.npcs.CustomItems to MOD [02oct2024 16:28:58.873] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing noppes.npcs.CustomEntities to MOD [02oct2024 16:28:58.888] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing noppes.npcs.CustomContainer to MOD [02oct2024 16:28:58.900] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file tombstone-client.toml for tombstone tracking [02oct2024 16:28:58.900] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file tombstone-common.toml for tombstone tracking [02oct2024 16:28:58.910] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing noppes.npcs.CustomBlocks to MOD [02oct2024 16:28:58.919] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file tombstone-server.toml for tombstone tracking [02oct2024 16:28:58.919] [modloading-worker-0/INFO] [necronomicon/]: File exists, reading config for elocindev.ysns.config.DisabledEntities. [02oct2024 16:28:58.921] [modloading-worker-0/INFO] [necronomicon/]: Config for elocindev.ysns.config.DisabledEntities read successfully. [02oct2024 16:28:58.922] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for tombstone [02oct2024 16:28:58.922] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing ovh.corail.tombstone.registry.Registration to MOD [02oct2024 16:28:58.925] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing ovh.corail.tombstone.perk.PerkRegistry to MOD [02oct2024 16:28:58.926] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing ovh.corail.tombstone.helper.LootHelper to FORGE [02oct2024 16:28:58.927] [modloading-worker-0/INFO] [necronomicon/]: File exists, reading config for elocindev.ysns.config.PerDimensionEntities. [02oct2024 16:28:58.928] [modloading-worker-0/INFO] [necronomicon/]: Config for elocindev.ysns.config.PerDimensionEntities read successfully. [02oct2024 16:28:58.932] [modloading-worker-0/INFO] [ysns/]: You Shall Not Spawn's Config initialized [02oct2024 16:28:58.933] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for ysns [02oct2024 16:28:58.933] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing elocindev.ysns.event.SpawnEventHandler to FORGE [02oct2024 16:28:58.940] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for resourcefullib [02oct2024 16:28:58.959] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for touhou_little_maid [02oct2024 16:28:58.959] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.item.ItemSubstituteJizo to FORGE [02oct2024 16:28:58.966] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.init.registry.MobSpawnInfoRegistry to FORGE [02oct2024 16:28:58.968] [modloading-worker-0/DEBUG] [mixin/]: Mixing accessor.LootTableAccessor from tombstone.mixins.json into net.minecraft.world.level.storage.loot.LootTable [02oct2024 16:28:58.968] [modloading-worker-0/DEBUG] [mixin/]: Mixing common.access.loot.AccessLootTable from crafttweaker.mixins.json into net.minecraft.world.level.storage.loot.LootTable [02oct2024 16:28:58.968] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.init.registry.CompatRegistry to MOD [02oct2024 16:28:58.968] [modloading-worker-0/DEBUG] [mixin/]: Mixing accessor.LootTableForgeAccessor from puzzleslib.forge.mixins.json into net.minecraft.world.level.storage.loot.LootTable [02oct2024 16:28:58.970] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.init.registry.CommonRegistry to MOD [02oct2024 16:28:58.971] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.init.registry.CommandRegistry to FORGE [02oct2024 16:28:58.971] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.init.registry.CapabilityRegistry to MOD [02oct2024 16:28:58.972] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.init.InitRecipes to MOD [02oct2024 16:28:58.972] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing ovh.corail.tombstone.event.EventHandler to FORGE [02oct2024 16:28:58.972] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.init.InitEntities to MOD [02oct2024 16:28:58.973] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.UseNameTagEvent to FORGE [02oct2024 16:28:58.975] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.UseFavorabilityToolEvent to FORGE [02oct2024 16:28:58.976] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.SwitchSittingEvent to FORGE [02oct2024 16:28:58.977] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.SlabClickEvent to FORGE [02oct2024 16:28:58.978] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.SaddleMaidEvent to FORGE [02oct2024 16:28:58.979] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.MaidMountEvent to FORGE [02oct2024 16:28:58.981] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.MaidFarmlandTrample to FORGE [02oct2024 16:28:58.982] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.MaidDeathFavorability to FORGE [02oct2024 16:28:58.983] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for cataclysm [02oct2024 16:28:58.983] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.L_Ender.cataclysm.world.CMWorldRegistry to MOD [02oct2024 16:28:58.984] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.MaidAreaClickEvent to FORGE [02oct2024 16:28:58.984] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.L_Ender.cataclysm.init.ModEntities to MOD [02oct2024 16:28:58.985] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.HandleBackpackEvent to FORGE [02oct2024 16:28:58.985] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.L_Ender.cataclysm.event.ServerEventHandler to FORGE [02oct2024 16:28:58.985] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.L_Ender.cataclysm.CommonProxy to MOD [02oct2024 16:28:58.985] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.L_Ender.cataclysm.Cataclysm to FORGE [02oct2024 16:28:58.986] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.GetExpBottleEvent to FORGE [02oct2024 16:28:58.987] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.DismountMaidEvent to FORGE [02oct2024 16:28:58.987] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.ApplyScriptBook to FORGE [02oct2024 16:28:58.988] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.ApplyPotionEffectEvent to FORGE [02oct2024 16:28:58.989] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.maid.ApplyGoldenAppleEvent to FORGE [02oct2024 16:28:58.990] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.food.DefaultEatenEvent to FORGE [02oct2024 16:28:58.992] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.food.BowlFoodEvent to FORGE [02oct2024 16:28:58.992] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.MaidMealRegConfigEvent to MOD [02oct2024 16:28:58.994] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.LevelLoadEvent to FORGE [02oct2024 16:28:58.994] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.EntityJoinWorldEvent to FORGE [02oct2024 16:28:58.995] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.EntityHurtEvent to FORGE [02oct2024 16:28:58.996] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.EnterServerEvent to FORGE [02oct2024 16:28:58.997] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.CapabilityEvent to FORGE [02oct2024 16:28:58.999] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.event.CancelSaddleMaidEvent to FORGE [02oct2024 16:28:59.000] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.entity.chatbubble.ChatBubbleManger to FORGE [02oct2024 16:28:59.001] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.debug.ChangeMaidOwner to FORGE [02oct2024 16:28:59.001] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.github.tartaricacid.touhoulittlemaid.compat.domesticationinnovation.EnchantmentRefuse to FORGE [02oct2024 16:28:59.004] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing ovh.corail.tombstone.config.ConfigTombstone$ConfigEvent to MOD [02oct2024 16:28:59.016] [modloading-worker-0/DEBUG] [mixin/]: Mixing SelfEntitySpawnDataMixin from moonlight.mixins.json into net.mehvahdjukaar.moonlight.api.entity.IExtraClientSpawnData [02oct2024 16:28:59.021] [modloading-worker-0/DEBUG] [doapi/]: Registering Sounds for doapi [02oct2024 16:28:59.022] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for doapi [02oct2024 16:28:59.026] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for terraform [02oct2024 16:28:59.039] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for architectury [02oct2024 16:28:59.039] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing dev.architectury.registry.level.entity.trade.forge.TradeRegistryImpl to FORGE [02oct2024 16:28:59.041] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing dev.architectury.registry.forge.ReloadListenerRegistryImpl to FORGE [02oct2024 16:28:59.042] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing dev.architectury.networking.forge.NetworkManagerImpl to FORGE [02oct2024 16:28:59.047] [modloading-worker-0/DEBUG] [mixin/]: Mixing PathPackResourcesAccessor from creativecore.mixins.json into net.minecraft.server.packs.PathPackResources [02oct2024 16:28:59.049] [modloading-worker-0/DEBUG] [mixin/]: Mixing FilePackResourcesAccessor from creativecore.mixins.json into net.minecraft.server.packs.FilePackResources [02oct2024 16:28:59.049] [modloading-worker-0/DEBUG] [mixin/]: Renaming @Invoker method callGetPathFromLocation(Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; to callGetPathFromLocation_$md$cc23e8$0 in creativecore.mixins.json:FilePackResourcesAccessor [02oct2024 16:28:59.070] [modloading-worker-0/DEBUG] [doapi/]: Logging file details for: C:\Games\Server\config\vinery\config.json5 [02oct2024 16:28:59.070] [modloading-worker-0/DEBUG] [doapi/]: Absolute path: C:\Games\Server\config\vinery\config.json5 [02oct2024 16:28:59.071] [modloading-worker-0/DEBUG] [doapi/]: File size: 1180 bytes [02oct2024 16:28:59.073] [modloading-worker-0/DEBUG] [doapi/]: File content read as raw bytes: 2f 2a 0a 56 69 6e 65 72 79 20 43 6f 6e 66 69 67 0a 0a 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 3d 0a 44 69 73 63 6f 72 64 3a 20 68 74 74 70 73 3a 2f 2f 64 69 73 63 6f 72 64 2e 67 67 2f 56 71 75 36 77 59 5a 77 64 5a 0a 4d 6f 64 72 69 6e 74 68 3a 20 68 74 74 70 73 3a 2f 2f 6d 6f 64 72 69 6e 74 68 2e 63 6f 6d 2f 6d 6f 64 2f 6c 65 74 73 2d 64 6f 2d 76 69 6e 65 72 79 0a 43 75 72 73 65 46 6f 72 67 65 3a 20 68 74 74 70 73 3a 2f 2f 77 77 77 2e 63 75 72 73 65 66 6f 72 67 65 2e 63 6f 6d 2f 6d 69 6e 65 63 72 61 66 74 2f 6d 63 2d 6d 6f 64 73 2f 6c 65 74 73 2d 64 6f 2d 76 69 6e 65 72 79 0a 2a 2f 0a 7b 0a 09 22 77 69 6e 65 5f 65 66 66 65 63 74 5f 64 75 72 61 74 69 6f 6e 22 3a 20 39 30 30 2c 0a 09 22 77 69 6e 65 5f 65 66 66 65 63 74 5f 73 74 72 65 6e 67 74 68 22 3a 20 31 2c 0a 09 2f 2f 20 57 68 65 74 68 65 72 20 74 68 65 20 43 72 65 65 70 65 72 45 66 66 65 63 74 20 73 68 6f 75 6c 64 20 64 65 73 74 72 6f 79 20 62 6c 6f 63 6b 73 20 28 74 72 75 65 29 20 6f 72 20 6a 75 73 74 20 6b 69 6c 6c 20 74 68 65 20 70 6c 61 79 65 72 20 28 66 61 6c 73 65 29 2e 0a 09 22 64 65 73 74 72 6f 79 5f 62 6c 6f 63 6b 73 22 3a 20 74 72 75 65 2c 0a 09 2f 2f 20 50 72 6f 62 61 62 69 6c 69 74 79 20 66 6f 72 20 74 68 65 20 73 65 74 20 62 6f 6e 75 73 20 74 6f 20 77 6f 72 6b 20 28 69 6e 20 25 29 0a 09 22 70 72 6f 62 61 62 69 6c 69 74 79 5f 74 6f 5f 6b 65 65 70 5f 62 6f 6e 65 5f 6d 65 61 6c 22 3a 20 31 30 30 2c 0a 09 2f 2f 20 54 69 63 6b 73 20 69 74 20 74 61 6b 65 73 20 74 6f 20 66 65 72 6d 65 6e 74 20 61 20 62 6f 74 74 6c 65 0a 09 22 66 65 72 6d 65 6e 74 61 74 69 6f 6e 5f 62 61 72 72 65 6c 5f 74 69 6d 65 22 3a 20 36 30 30 30 2c 0a 09 2f 2f 20 50 65 72 63 65 6e 74 61 67 65 20 6d 75 6c 74 69 70 6c 69 65 72 20 66 6f 72 20 74 68 65 20 67 72 6f 77 74 68 20 73 70 65 65 64 20 6f 66 20 67 72 61 70 65 73 0a 09 22 67 72 61 70 65 5f 67 72 6f 77 74 68 5f 73 70 65 65 64 22 3a 20 31 30 30 2c 0a 09 2f 2f 20 57 68 65 74 68 65 72 20 74 68 65 20 77 69 6e 65 6d 61 6b 65 72 20 61 72 6d 6f 72 20 73 68 6f 75 6c 64 20 67 69 76 65 20 61 20 73 65 74 20 62 6f 6e 75 73 2c 20 77 68 69 63 68 20 63 61 6e 20 70 72 65 76 65 6e 74 20 79 6f 75 72 20 62 6f 6e 65 20 6d 65 61 6c 20 66 72 6f 6d 20 62 65 69 6e 67 20 75 73 65 64 0a 09 22 65 6e 61 62 6c 65 5f 77 69 6e 65 5f 6d 61 6b 65 72 5f 73 65 74 5f 62 6f 6e 75 73 22 3a 20 74 72 75 65 2c 0a 09 2f 2f 20 41 6d 6f 75 6e 74 20 6f 66 20 64 61 6d 61 67 65 20 77 68 65 6e 20 74 68 65 20 61 72 6d 6f 72 20 67 65 74 73 20 64 61 6d 61 67 65 64 20 62 65 63 61 75 73 65 20 6f 66 20 74 68 65 20 73 65 74 20 62 6f 6e 75 73 0a 09 22 64 61 6d 61 67 65 5f 70 65 72 5f 75 73 65 22 3a 20 31 2c 0a 09 2f 2f 20 50 72 6f 62 61 62 69 6c 69 74 79 20 66 6f 72 20 64 61 6d 61 67 69 6e 67 20 61 72 6d 6f 72 20 6f 6e 20 75 73 69 6e 67 20 74 68 65 20 73 65 74 20 62 6f 6e 75 73 20 28 69 6e 20 25 29 0a 09 22 70 72 6f 62 61 62 69 6c 69 74 79 5f 66 6f 72 5f 64 61 6d 61 67 65 22 3a 20 33 30 2c 0a 09 2f 2f 20 48 6f 77 20 6d 61 6e 79 20 25 20 6f 66 20 74 68 65 20 6e 6f 72 6d 61 6c 20 77 61 6e 64 65 72 69 6e 67 20 74 72 61 64 65 72 73 20 73 68 6f 75 6c 64 20 62 65 20 61 20 77 61 6e 64 65 72 69 6e 67 20 77 69 6e 65 20 74 72 61 64 65 72 3f 0a 09 22 77 69 6e 65 5f 74 72 61 64 65 72 5f 63 68 61 6e 63 65 22 3a 20 35 30 2c 0a 09 2f 2f 20 4c 65 6e 67 74 68 20 6f 66 20 61 20 79 65 61 72 20 28 69 6e 20 64 61 79 73 29 2e 0a 09 22 79 65 61 72 5f 6c 65 6e 67 74 68 5f 69 6e 5f 64 61 79 73 22 3a 20 31 36 2c 0a 09 2f 2f 20 59 65 61 72 73 20 70 65 72 20 65 66 66 65 63 74 20 6c 65 76 65 6c 0a 09 22 79 65 61 72 73 5f 70 65 72 5f 65 66 66 65 63 74 5f 6c 65 76 65 6c 22 3a 20 34 0a 7d [02oct2024 16:28:59.073] [modloading-worker-0/DEBUG] [doapi/]: File content read as string: /* Vinery Config =========== Discord: https://discord.gg/Vqu6wYZwdZ Modrinth: https://modrinth.com/mod/lets-do-vinery CurseForge: https://www.curseforge.com/minecraft/mc-mods/lets-do-vinery */ {     "wine_effect_duration": 900,     "wine_effect_strength": 1,     // Whether the CreeperEffect should destroy blocks (true) or just kill the player (false).     "destroy_blocks": true,     // Probability for the set bonus to work (in %)     "probability_to_keep_bone_meal": 100,     // Ticks it takes to ferment a bottle     "fermentation_barrel_time": 6000,     // Percentage multiplier for the growth speed of grapes     "grape_growth_speed": 100,     // Whether the winemaker armor should give a set bonus, which can prevent your bone meal from being used     "enable_wine_maker_set_bonus": true,     // Amount of damage when the armor gets damaged because of the set bonus     "damage_per_use": 1,     // Probability for damaging armor on using the set bonus (in %)     "probability_for_damage": 30,     // How many % of the normal wandering traders should be a wandering wine trader?     "wine_trader_chance": 50,     // Length of a year (in days).     "year_length_in_days": 16,     // Years per effect level     "years_per_effect_level": 4 } [02oct2024 16:28:59.073] [modloading-worker-0/DEBUG] [doapi/]: Reading config file: C:\Games\Server\config\vinery\config.json5 [02oct2024 16:28:59.073] [modloading-worker-0/DEBUG] [doapi/]: File content read as string: /* Vinery Config =========== Discord: https://discord.gg/Vqu6wYZwdZ Modrinth: https://modrinth.com/mod/lets-do-vinery CurseForge: https://www.curseforge.com/minecraft/mc-mods/lets-do-vinery */ {     "wine_effect_duration": 900,     "wine_effect_strength": 1,     // Whether the CreeperEffect should destroy blocks (true) or just kill the player (false).     "destroy_blocks": true,     // Probability for the set bonus to work (in %)     "probability_to_keep_bone_meal": 100,     // Ticks it takes to ferment a bottle     "fermentation_barrel_time": 6000,     // Percentage multiplier for the growth speed of grapes     "grape_growth_speed": 100,     // Whether the winemaker armor should give a set bonus, which can prevent your bone meal from being used     "enable_wine_maker_set_bonus": true,     // Amount of damage when the armor gets damaged because of the set bonus     "damage_per_use": 1,     // Probability for damaging armor on using the set bonus (in %)     "probability_for_damage": 30,     // How many % of the normal wandering traders should be a wandering wine trader?     "wine_trader_chance": 50,     // Length of a year (in days).     "year_length_in_days": 16,     // Years per effect level     "years_per_effect_level": 4 } [02oct2024 16:28:59.085] [modloading-worker-0/DEBUG] [doapi/]: Config loaded successfully: {     /* Vinery Config                ===========        Discord: https://discord.gg/Vqu6wYZwdZ        Modrinth: https://modrinth.com/mod/lets-do-vinery        CurseForge: https://www.curseforge.com/minecraft/mc-mods/lets-do-vinery     */     "wine_effect_duration": 900,     "wine_effect_strength": 1,     // Whether the CreeperEffect should destroy blocks (true) or just kill the player (false).     "destroy_blocks": true,     // Probability for the set bonus to work (in %)     "probability_to_keep_bone_meal": 100,     // Ticks it takes to ferment a bottle     "fermentation_barrel_time": 6000,     // Percentage multiplier for the growth speed of grapes     "grape_growth_speed": 100,     // Whether the winemaker armor should give a set bonus, which can prevent your bone meal from being used     "enable_wine_maker_set_bonus": true,     // Amount of damage when the armor gets damaged because of the set bonus     "damage_per_use": 1,     // Probability for damaging armor on using the set bonus (in %)     "probability_for_damage": 30,     // How many % of the normal wandering traders should be a wandering wine trader?     "wine_trader_chance": 50,     // Length of a year (in days).     "year_length_in_days": 16,     // Years per effect level     "years_per_effect_level": 4 } [02oct2024 16:28:59.103] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file deeperdarker-common.toml for deeperdarker tracking [02oct2024 16:28:59.103] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for deeperdarker [02oct2024 16:28:59.103] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.kyanite.deeperdarker.DeeperDarkerEvents to FORGE [02oct2024 16:28:59.105] [modloading-worker-0/DEBUG] [mixin/]: Mixing MapDataMixin from moonlight-common.mixins.json into net.minecraft.world.level.saveddata.maps.MapItemSavedData [02oct2024 16:28:59.105] [modloading-worker-0/DEBUG] [mixin/]: Renaming synthetic method lambda$save$3(Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;Lnet/mehvahdjukaar/moonlight/api/map/CustomMapData;)V to mdcc23e8$lambda$save$3$0 in moonlight-common.mixins.json:MapDataMixin [02oct2024 16:28:59.105] [modloading-worker-0/DEBUG] [mixin/]: Renaming synthetic method lambda$load$2(Lnet/minecraft/nbt/CompoundTag;Lnet/mehvahdjukaar/moonlight/api/map/CustomMapData;)V to mdcc23e8$lambda$load$2$1 in moonlight-common.mixins.json:MapDataMixin [02oct2024 16:28:59.105] [modloading-worker-0/DEBUG] [mixin/]: Renaming synthetic method lambda$setCustomDataDirty$1(Lnet/mehvahdjukaar/moonlight/api/map/CustomMapData$Type;Ljava/util/function/Consumer;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer;)V to mdcc23e8$lambda$setCustomDataDirty$1$2 in moonlight-common.mixins.json:MapDataMixin [02oct2024 16:28:59.105] [modloading-worker-0/DEBUG] [mixin/]: Renaming synthetic method lambda$setCustomDecorationsDirty$0(Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer;)V to mdcc23e8$lambda$setCustomDecorationsDirty$0$3 in moonlight-common.mixins.json:MapDataMixin [02oct2024 16:28:59.126] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file aiimprovements-common.toml for aiimprovements tracking [02oct2024 16:28:59.126] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for aiimprovements [02oct2024 16:28:59.126] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.builtbroken.ai.improvements.modifier.ModifierSystem to FORGE [02oct2024 16:28:59.133] [modloading-worker-0/DEBUG] [mixin/]: Mixing HatItemMixin from vinery.mixins.json into net.satisfy.vinery.item.WinemakerHatItem [02oct2024 16:28:59.141] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.builtbroken.ai.improvements.AIImprovements to MOD [02oct2024 16:28:59.142] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for conditional_mixin [02oct2024 16:28:59.146] [modloading-worker-0/DEBUG] [betterendisland/]: Loaded com.yungnickyoung.minecraft.betterendisland.services.ForgePlatformHelper@5173175b for service interface com.yungnickyoung.minecraft.betterendisland.services.IPlatformHelper [02oct2024 16:28:59.147] [modloading-worker-0/DEBUG] [betterendisland/]: Loaded com.yungnickyoung.minecraft.betterendisland.services.ForgeModulesLoader@639cf532 for service interface com.yungnickyoung.minecraft.betterendisland.services.IModulesLoader [02oct2024 16:28:59.148] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file betterendisland-forge-1_20.toml for betterendisland tracking [02oct2024 16:28:59.148] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for betterendisland [02oct2024 16:28:59.152] [modloading-worker-0/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024 [02oct2024 16:28:59.153] [modloading-worker-0/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096 [02oct2024 16:28:59.152] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.witch.WitchFleeTarget [02oct2024 16:28:59.154] [modloading-worker-0/DEBUG] [io.netty.util.internal.ThreadLocalRandom/]: -Dio.netty.initialSeedUniquifier: 0xbd5206c35b4862d7 [02oct2024 16:28:59.155] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.witch.throwing.WitchPotionThrowing [02oct2024 16:28:59.158] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.witch.ThirstyWitches [02oct2024 16:28:59.160] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.witch.darkart.DarkArtWitch [02oct2024 16:28:59.161] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for scguns [02oct2024 16:28:59.161] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.init.ModPointOfInterestTypes to MOD [02oct2024 16:28:59.161] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.init.ModFeatures to MOD [02oct2024 16:28:59.162] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.event.RaidEventHandler to FORGE [02oct2024 16:28:59.163] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.warden.Warden [02oct2024 16:28:59.164] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.event.PiglinWeaponEventHandler to FORGE [02oct2024 16:28:59.164] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.event.OceanWeaponEventHandler to FORGE [02oct2024 16:28:59.164] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.event.ModEvents to FORGE [02oct2024 16:28:59.165] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.villager.VillagerAttacking [02oct2024 16:28:59.167] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.event.ModCommonEventBus to MOD [02oct2024 16:28:59.167] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.spider.webber.ThrowingWeb [02oct2024 16:28:59.168] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.event.ModBiomeModification to FORGE [02oct2024 16:28:59.169] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.event.HeavyWeaponEventHandler to FORGE [02oct2024 16:28:59.169] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.event.GunEventBus to FORGE [02oct2024 16:28:59.170] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.spider.Misc [02oct2024 16:28:59.171] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.slime.Slimes [02oct2024 16:28:59.172] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.skeleton.WitherSkeletons [02oct2024 16:28:59.174] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.skeleton.SkeletonFleeTarget [02oct2024 16:28:59.174] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.event.DishesEventHandler to FORGE [02oct2024 16:28:59.175] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.skeleton.shoot.SkeletonShoot [02oct2024 16:28:59.176] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.event.ArmorRemoveEventHandler to FORGE [02oct2024 16:28:59.176] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.event.ArmorBoostEventHandler to FORGE [02oct2024 16:28:59.176] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.entity.throwable.ThrowableStunGrenadeEntity to FORGE [02oct2024 16:28:59.177] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.shulker.ShulkerBullets [02oct2024 16:28:59.178] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.shulker.shulkerattack.ShulkerAttack [02oct2024 16:28:59.180] [modloading-worker-0/DEBUG] [mixin/]: Mixing common.access.level.damage.AccessDamageSources from crafttweaker.mixins.json into net.minecraft.world.damagesource.DamageSources [02oct2024 16:28:59.181] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.shulker.ShulkerArmor [02oct2024 16:28:59.182] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.pets.Wolves [02oct2024 16:28:59.185] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.pets.snowgolem.SnowGolems [02oct2024 16:28:59.187] [modloading-worker-0/DEBUG] [mixin/]: Mixing CapabilityDispatcherMixin from customnpcs.mixins.json into net.minecraftforge.common.capabilities.CapabilityDispatcher [02oct2024 16:28:59.190] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.pets.IronGolems [02oct2024 16:28:59.192] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.WardenInteractions [02oct2024 16:28:59.195] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.debug.Debug to FORGE [02oct2024 16:28:59.198] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.targeting.Targeting [02oct2024 16:28:59.200] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.common.SpreadTracker to FORGE [02oct2024 16:28:59.201] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.common.ReloadTracker to FORGE [02oct2024 16:28:59.204] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.common.NetworkGunManager to FORGE [02oct2024 16:28:59.207] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.Spawning [02oct2024 16:28:59.209] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.riding.Riding [02oct2024 16:28:59.210] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.pearler.PearlerMobs [02oct2024 16:28:59.212] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.OpenDoors [02oct2024 16:28:59.214] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.movement.Movement [02oct2024 16:28:59.214] [modloading-worker-0/DEBUG] [vinery/]: Registering Mod Block and Items for vinery [02oct2024 16:28:59.216] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.miner.MinerMobs [02oct2024 16:28:59.218] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.common.DelayedTask to FORGE [02oct2024 16:28:59.219] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.MeleeAttacking [02oct2024 16:28:59.220] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.leap.Leap [02oct2024 16:28:59.220] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.common.CustomGunLoader to FORGE [02oct2024 16:28:59.222] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.Jump [02oct2024 16:28:59.223] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing top.ribs.scguns.common.BurstTracker to FORGE [02oct2024 16:28:59.224] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.ItemDisruption [02oct2024 16:28:59.227] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.flee.Flee [02oct2024 16:28:59.230] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.fisher.FisherMobs [02oct2024 16:28:59.233] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.breakanger.BreakAnger [02oct2024 16:28:59.237] [modloading-worker-0/DEBUG] [Framework/]: Loaded com.mrcrayfish.framework.platform.ForgePlatformHelper@334268dc for service interface com.mrcrayfish.framework.platform.services.IPlatformHelper [02oct2024 16:28:59.237] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.BitingMobs [02oct2024 16:28:59.239] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.enhancedai.modules.mobs.avoidexplosion.AvoidExplosions [02oct2024 16:28:59.240] [modloading-worker-0/DEBUG] [Framework/]: Loaded com.mrcrayfish.framework.platform.ForgeNetworkHelper@2d3e3994 for service interface com.mrcrayfish.framework.plat