Jump to content

Forge MP, Bukkit and Minecraft 1.3


Kinniken

Recommended Posts

Hi,

 

I'm the author of a fairly large mod, Millénaire. So far I've kept it SP only, not because I'm against an MP version but because there seemed to be too much fragmentation of MP APIs and no solution that would allow me to keep the SP and MP code synchronised without having to maintain two wholly separate branches. However since in Minecraft 1.3 SP will basically be MP with an integrated server, I'm going to have to do the conversion anyway. One possibility is to go with Forge, but for that I have a few questions:

- does anyone know whether the changes in Minecraft 1.3 mean that Forge will support SP mods using its current MP APIs?

- what is the status of Forge and Bukkit? Can Forge MP mods be run on a Bukkit server?

- has anyone heard anything official from Mojang or the Bukkit people working with it on how mods are expected to work in Minecraft 1.3?

 

Thanks

 

K.

Link to comment
Share on other sites

  • Replies 102
  • Created
  • Last Reply

Top Posters In This Topic

These questions were one of the main reasons we decided to do fml client now rather than wait for 1.3.

 

For fml (I cannot speak for forge) my goal is that everything you have right now will live on into 1.3, in some fashion. Things that no longer will make sense on the client side (game ticks f.e.) will probably stop working, but only on the client side.

 

As for your bukkit question: I maintain the port of forge for bukkit so hopefully that will continue as long as the bukkit project itself does.

 

To your overall question now is the time to plan smp forge smp (esp for custom entities) is very strong now. I recommend you use forge and start planning. Smp migration though not trivial is not as hard as it might appear. I refer you to iron chest and compact solars as two projects on github that you can examine for organizational tips so you don't have to fork everything in your code base for amp.

 

Github.com/cpw/iron chest and github.com/cow/compactsolars

 

Hope this helps!

Link to comment
Share on other sites

Thanks for the answers! That's rather promising. Stupid question though, how do I access those GitHub repos? I'm old-fashion, I use SVN for Millénaire ;)

 

And with that Forge for Bukkit, do you have to release Bukkit versions of SMP mods or can it load the regular one?

 

Github repos need git to access them. Github has a crapton of help. Or you can just view them through the browser if you want to simply reference them...

 

Bukkit does require a "bukkit" version be generated- this is mostly a matter of converting the MCP based API to the bukkit based one. There are a variety of solutions to this and it's an active area of research at the minute- for now, assume that once you've built your mcp based SMP version, there will be a way to create a bukkit version from it. I will refer you to mcportcentral.co.za for examples from other mods that do this right now, though the process there is a little bit clunky at times ;)

 

On your last question there is no information that I have seen at all. I believe there's "hidden" work on the API going on, but that the 1.3 changes are so that the API (which is likely 1.4) can be SMP only...

Link to comment
Share on other sites

Thanks for the new info. Also, nobody really knows when 1.3 will be released, right?

 

I've setup a Forge MCP environnement, I'll start checking out the APIs. Any good references that you know on migrating from SP to MP? I'll have to deal mainly with custom entities, world generation, custom items and blocks, several custom GUIs, server-side actions based on client-side keyboard presses, read/write to the server's mod folder and the world's folder, keeping track of the positions of the players, and some custom entity rendering based on custom entity properties. I think that's the bulk of the areas that should be impacted by the switch to MP.

Link to comment
Share on other sites

Never used your mod but from what i've heard its good. Anyways from my experiences with NPCs there really easy to port to smp. They just need some dataWatchers to share variables between server and client. Sometimes they need to interface IMob or IAnaimal.

GUIs i don't know much about and still need to create a few for my NPC mods but, they need some kind of GUI handler and maybe a packet system. Land gen i think is done the same way, so are block and items. TileEntities are the same as well but you might want to code your ssp to not do anything when connected to a Server. No need for fake NPC to spawn ssp and not actual be there.

 

Porting in general you need to remove all graphics code from your smp code. Things like renders,  Guis, names, special effects and such. You also need to make packets too send any special data too the client that is generated from the server.

Link to comment
Share on other sites

Shameless OS plug: If you toss up a github repo i'd be more then happy to sit down and help you clean up and get thing working properly on SMP. Especially if you're saying you're gunna drop that whole annoying 'Forge Lite' crap. That is really annoying.. hehe

 

Anyways, Forge and FML are designed to keep the modding API fairly consistent, while still allowing for active development. However when it comes to 1.3, there will be many things that are different but I plan on making 1.3 as easy to merge to for modders as I can.

As there is no public official information on what exactly is changing under the hood of Minecraft I can not garentee that it will be instantly compatible, but it'll be as easy as I can get it.

 

Gitting your environment setup for SMP work, and then tackling each task one at a time would be the best method of getting help I think.  Feel free to ask as many questions as you need.

 

 

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

Shameless OS plug: If you toss up a github repo i'd be more then happy to sit down and help you clean up and get thing working properly on SMP.

 

Thanks. I'd like to try doing it myself first though, if I make Millénaire it's first because I enjoy the coding challenge ;) Any good tutorials or docs on best practice for SMP mods somewhere?

 

Especially if you're saying you're gunna drop that whole annoying 'Forge Lite' crap. That is really annoying.. hehe

 

Well, I don't have a choice if I want to do SMP using ForgeMP I guess. And my Forge Lite might be annoying, but I had done polls of my users and something like 15-20% of them can't install Forge due to incompatibility with other mods... I think MP support is worth it and with 1.3 anyway I'm not having much choice, but there is a drawback in terms of compatibility ;)

 

Otherwise, what strategies are you guys using in terms of client/server version compatibility? I tend to release new Millénaire versions quite frequently (these days every week, before often more than that). Obviously for MP requiring the client and server versions to be in sync would be a giant pain for users. I'm thinking of having a "compatibility version" code that would stay the same as long as no change I've made breaks compatibility - for instance new buildings would be server-only, so no problems there, changes to GUIs would generally be client-only, so no problems either, but if I add new blocks or new villager types (with client-side skins) I'll need to break compatibility.

Link to comment
Share on other sites

We determine the mod matching using the mod.toString(), which defaults to getName() + " " + getVersion().

So if you override toString() to only change when you want it to not match.

I was thinking of expanding that to something a bit more complicated (NetworkMod.checkModMatch(String)), but nobody has shown any interest in this particular aspect.

 

As for the issue of your users not using forge because it's compatibility issues, in most cases the mod they wish to use either

1) They arnt installing it correctly.

2) Doesn't really need to edit base classes, and the modder should update to Forge. or

3) Its not really a good mod :P or

4) The modder doesn't care about compatibility.

If you're editing base classes, in your mod, you're honestly doing something wrong.

 

 

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

We determine the mod matching using the mod.toString(), which defaults to getName() + " " + getVersion().

So if you override toString() to only change when you want it to not match.

I was thinking of expanding that to something a bit more complicated (NetworkMod.checkModMatch(String)), but nobody has shown any interest in this particular aspect.

 

Ok, thanks. Then maybe I'll have getVersion() be my "compatibility version code" and then use a separate sub-version code to differentiate intermediate releases.

 

And I like your expended check idea better. It could be implemented with a default method doing exactly what is being done now too, so it wouldn't change anything for anyone not wanting to use it ;)

 

As for the issue of your users not using forge because it's compatibility issues, in most cases the mod they wish to use either 1) Doesn't really need to edit base classes, and the modder should update to Forge. or 2) Its not really a good mod :P or 3) The modder doesn't care about compatibility.

If you're editing base classes, in your mod, you're honestly doing something wrong.

 

My issue is not deciding which mod author is right or wrong in how he is implementing his mod but to try and make Millénaire work for as many people as possible ;) And IIRC, there are modding APIs that are not compatible with Forge right?

 

So otherwise, any tutorial or guidelines I can use?

Link to comment
Share on other sites

Humm, I can't seem to find any proper tutorials beyond this. I am not good at writing tutorials, so I leave it up to other people.

However if you have specific things I can point you in the proper direction.

 

Registering your entities: MinecraftForge.registerEntity

Registering guis: IGuiHandler -> MinecraftForge.registerGuiHandler

Sending keys, you'd have to write your own packet handler, and honestly, you'd prolly wanna do that for a lot of other things, so I suggest looking at IConnectionHandler, IPacketHandler.

 

Like i said, give it a poke and if you get to specific parts, ask.

One thing you really should remember though, is to separate your logic. So that you only do the real logic when you know that you are the definitive source. {AE: you only set blocks, or things when you're the server, or you're on SSP}

 

As for the incompatibilities, for the most part, most major APIs are compatible with Forge. PAPI, GuiAPI, etc... If we are incompatible with certain apis, we can become compatible. And if its really something important, the author can submit a PR to Forge and get his API cleaned up and used by more users.

 

The point of Forge is to be open source and allow for people to submit things, and have them incorporated. Forge strives for more compatibility and ease of use between mods. As well as keeping in development with what modders need to make there mods better and easier for the end user to use.

 

An example of this would be ISoundHandler, which is a interface that lets you deal with sound events. This allows for many things such as accessibility mods, which allows deaf people to see sound cues. Or ease of use for the end user's by allowing modders to add there sounds directly from inside the mod's zip to remove the need for the end user to do anything more then drop the zip into the mods folder.

This required editing the same class that AudioMod edited, so at first, we made it so that things worked properly if someone installed AudioMod alongside Forge, but after more research, found that AudioMod was actually almost completely PaulsCode and improperly attributed. So we incorporated it's opensource parts and gave proper attribution. Therefore giving more credit to the original authors, keeping compatibility, making the install easier for users, and allowing us to have more useful functionality.

 

So ya, I would go to those 15-20% of your users, and ask them exactly which mods/apis are incompatible with Forge. And see if we can resolve the issues.

 

All mods should be solely 'drop this zip in mods folder', and all APIs should strive to be compatible with anything they can and provide unique functionality. I am always willing to have modders come to me and discuss how we can make everything work together.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

FMLCommonHandler.instance().getMinecraftRootDirectory(); Will return either the .minecraft folder on the client, or the folder with the server jar in it on the server.

I would HIGHLY recommend you append  "mods/Millinaire" to that so that you have your data stored in the mods folder. One thing that bugged me about Mill was it sticking things in the root directory, no mod should do that.

ROOT/mods/MODNAME/ should be used for data storage

ROOT/config/MODNAME/ should be used for user configurations.

 

That way the root directory doesn't get cluttered :P

 

As for the world folder, I cant rememebr off the top of my head, but this should work: {note written off top of my head, may not compile}

public File getWorldFolder(World world)
{
  ISaveHandler save = world.getSaveHandler();
  if (world.isRemote) return null; //In SMP no save folder, cuz we arnt server
  return ((SaveHandler)save).getSaveDirectory(); 
}

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

Github.com/cpw/iron chest and github.com/cow/compactsolars

 

I must be making a stupid mistake, having never used Git, but how do I check those out using eGit in Eclipse? I've tried using import > Git then entering http://github.com/cow/compactsolars as the URI but I'm getting a 301 error.

do you mean http://github.com/cpw/compactsolars not http://github.com/cow/compactsolars

Link to comment
Share on other sites

Github.com/cpw/iron chest and github.com/cow/compactsolars

 

Ok, got them and had a look. Very clean code. I liked how you isolated the server and client specific parts so as to have the maximum amount of code being shared. That should help me work out my split. One question though, in practice how do you work on it in Eclipse and to test compilation? It looks like it would only compile and run if you put client+common in a client MCP install, and server+common in a server MCP one. Is that what you do, just moving the changes you make in common to both sides manually?

Link to comment
Share on other sites

In eclipse you can have linked source files, and debugging in eclipse will pull all source files that are linked and compile them.

It only because a issue when you go to reobf, in which case you do exactly what you said,

Make copy of MCP/src to MCP/src-bak

Copy Mod/Client -> MCP/src/minecraft

Copy Mod/Common -> MCP/src/minecraft

Copy Mod/Server -> MCP/src/minecraft_server

Copy Mod/Common -> MCP/src/minecraft_server

Recompile, reobf

Del MCP/src

Move MCP/src-bak -> MCP/src

Small batch file to do that makes it simple.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

Kinniken, in eclipse yes i have two projects: project 1 (client side) depends on the forge-client and has "client" and "common". project 2 depends on forge-server and has "server" and "common". Works very well and is quite robust. Just make sure you check both sides for errors before you do a build push.

 

If you look in my projects you'll see there's an ant build script that can help by pushing all the "manual" work of rebuilding/reobfuscating the code for both client and server. (I also have an unshared version that is tentatively pushing a bukkit build too ;) ).

 

I recommend you start by putting everything in common and then just peeling out enough that client and server compile.

 

I also strongly recommend you use your own packages for your mod. that way you don't clutter up the net.minecraft.src package namespace.

 

Finally, the @SidedProxy is useful (for me) because it lets the mod loader load in the right "sided" class for client or server into my mod. I use that as a proxy to access side specific behaviour without having to code duplication everywhere.

 

 

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

    • I've been trying nonstop to get my mods to work in my forge server but I can't even launch forge without it crashing, this is the error with the server I'm trying to launch. It doesn't even open. I've tried all youtube fixes but none seem to work. Any fixes or help would be appreciated. More Info: I installed java 23 and both my minecraft mods folder and server mods folder have the same exact mods in them. I got all of these mods from a modpack called CuteCraft by Bunee_z Server only launches without mods 2024-05-11 12:24:09,800 main WARN Advanced terminal features are not available in this environment [12:24:09] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [12:24:09] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 22.0.1 by Oracle Corporation; OS Windows 11 arch amd64 version 10.0 [12:24:10] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Redux/Desktop/Emersons%20Server/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [12:24:11] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Redux\Desktop\Emersons Server\libraries\net\minecraftforge\fmlcore\1.19.2-43.3.0\fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [12:24:11] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Redux\Desktop\Emersons Server\libraries\net\minecraftforge\javafmllanguage\1.19.2-43.3.0\javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [12:24:11] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Redux\Desktop\Emersons Server\libraries\net\minecraftforge\lowcodelanguage\1.19.2-43.3.0\lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [12:24:11] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\Redux\Desktop\Emersons Server\libraries\net\minecraftforge\mclanguage\1.19.2-43.3.0\mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [12:24:11] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File:  and Mod File: . Using Mod File: [12:24:11] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection [12:24:12] [main/ERROR] [mixin/]: Mixin config dynamiclightsreforged.mixins.json does not specify "minVersion" property [12:24:12] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [12:24:12] [main/ERROR] [mixin/]: Mixin config mixins.oculus.compat.sodium.json does not specify "minVersion" property [12:24:12] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [ca.spottedleaf.starlight.mixin.MixinConnector] [12:24:12] [main/INFO] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [] [12:24:12] [main/INFO] [Rubidium/]: Loaded configuration file for Rubidium: 30 options available, 1 override(s) found [12:24:12] [main/WARN] [mixin/]: Reference map 'vinery-forge-refmap.json' for vinery.mixins.json could not be read. If this is a development environment you can ignore this message [12:24:12] [main/INFO] [Sodium Extra Config/]: Loaded configuration file for Sodium Extra: 28 options available, 0 override(s) found [12:24:12] [main/WARN] [mixin/]: Reference map 'carpeted-common-refmap.json' for carpeted-common.mixins.json could not be read. If this is a development environment you can ignore this message [12:24:12] [main/WARN] [mixin/]: Reference map 'carpeted-forge-refmap.json' for carpeted.mixins.json could not be read. If this is a development environment you can ignore this message [12:24:12] [main/WARN] [mixin/]: Reference map 'betterjukebox-forge-refmap.json' for betterjukebox-forge.mixins.json could not be read. If this is a development environment you can ignore this message [12:24:12] [main/WARN] [CanaryConfig/]: Mod 'pluto' attempted to override option 'mixin.world.player_chunk_tick', which doesn't exist, ignoring [12:24:12] [main/INFO] [Canary/]: Loaded configuration file for Canary: 117 options available, 0 override(s) found [12:24:12] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/model/IronGolemModel (java.lang.ClassNotFoundException: net.minecraft.client.model.IronGolemModel) [12:24:12] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.model.IronGolemModel was not found strawgolem.mixins.json:IronGolemModelMixin [12:24:13] [main/INFO] [ne.mi.co.Co.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [12:24:13] [main/INFO] [ne.mi.co.Co.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [12:24:13] [main/WARN] [mixin/]: Error loading class: vazkii/quark/addons/oddities/inventory/BackpackMenu (java.lang.ClassNotFoundException: vazkii.quark.addons.oddities.inventory.BackpackMenu) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/Thread$UncaughtExceptionHandler (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/util/Map$Entry (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/invoke/MethodHandles$Lookup (java.lang.IllegalArgumentException: Unsupported class file major version 66) [12:24:13] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.2.0-rc.5). [12:24:13] [main/WARN] [mixin/]: Error loading class: java/lang/Thread (java.lang.IllegalArgumentException: Unsupported class file major version 66) Exception in thread "main" java.lang.RuntimeException: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:32)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:106)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:77)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23)         at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50)         at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113)         at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219)         at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229)         at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219)         at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:637)         at java.base/java.lang.Class.forName(Class.java:620)         at java.base/java.lang.Class.forName(Class.java:595)         at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:29)         at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30)         ... 7 more Caused by: org.spongepowered.asm.mixin.throwables.ClassMetadataNotFoundException: java.lang.Thread         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.transformMethod(MixinPreProcessorStandard.java:754)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.transform(MixinPreProcessorStandard.java:739)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.attach(MixinPreProcessorStandard.java:310)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.createContextFor(MixinPreProcessorStandard.java:280)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinInfo.createContextFor(MixinInfo.java:1288)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:292)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365)         at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)         ... 23 more
    • Hi, can anybody tell me what's wrong? public class SoulDrinkerItem extends Item { public SoulDrinkerItem(Properties pProperties) { super(pProperties); } @Override public boolean onLeftClickEntity(ItemStack stack, Player player, Entity entity) { if (entity instanceof Player){ Player victim = (Player) entity; if(!victim.isDeadOrDying() && victim.getHealth()>0){ victim.setHealth(0); return true; } } return false; } @Override public void setDamage(ItemStack stack, int damage) { super.setDamage(stack, 0); } } The code above is the custom item class. I'm trying to make a Sword-of-the-Cosmos-like item that basically does .setHealth(0) for every single entity it hits. When I go into the game, the attack damage is just 1.
    • Thanks. But how can I work with these attribute modifiers?
    • I can't undestand why some events caught using EventHandler and other using SubscribeEvent. What's the difference between them?
    • Hosting server with Apex hosting and whenever i load it the mods start to load then at a random point it says "failed to load datapack" and despite trying to find what might be the issue nothing has worked so far, help would be much appreciated. Below is the latter half of the log. [12May2024 05:05:55.678] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [sandbox] Found status: UP_TO_DATE Current: 1.19.2-1.0.1 Target: null [12May2024 05:05:56.174] [main/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' [12May2024 05:05:56.209] [main/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/home/minecraft/multicraft/servers/server2322386/default/jar/libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-srg.jar%23523!/assets/.mcassetsroot' uses unexpected schema [12May2024 05:05:56.210] [main/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/home/minecraft/multicraft/servers/server2322386/default/jar/libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-srg.jar%23523!/data/.mcassetsroot' uses unexpected schema [12May2024 05:05:56.246] [main/DEBUG] [mixin/]: Mixing common.RegistryAccessMixin from byg.mixins.json into net.minecraft.server.WorldStem [12May2024 05:05:56.252] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_214362_ with desc (Lnet/minecraft/server/WorldLoader$InitConfig;Lnet/minecraft/server/WorldLoader$WorldDataSupplier;Lnet/minecraft/server/WorldLoader$ResultFactory;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; [12May2024 05:05:56.274] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming m_7179_ with desc (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; [12May2024 05:05:56.275] [main/DEBUG] [mixin/]: Mixing reach.compat119plus.ServerPlayerInteractionManagerMixin from pehkui.mixins.json into net.minecraft.server.level.ServerPlayerGameMode [12May2024 05:05:56.275] [main/DEBUG] [mixin/]: Mixing common.minecraft.ServerPlayerGameModeMixin from origins_classes.mixins.json into net.minecraft.server.level.ServerPlayerGameMode [12May2024 05:05:56.276] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$originsClasses$saveSneakingState$0()Lnet/minecraft/server/level/ServerPlayer; to md2642d6$lambda$originsClasses$saveSneakingState$0$0 in origins_classes.mixins.json:common.minecraft.ServerPlayerGameModeMixin [12May2024 05:05:56.281] [main/DEBUG] [mixin/]: Mixing ServerPlayerGameModeMixin from forbidden_arcanus.mixins.json into net.minecraft.server.level.ServerPlayerGameMode [12May2024 05:05:56.281] [main/DEBUG] [mixin/]: forbidden_arcanus.mixins.json:ServerPlayerGameModeMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) [12May2024 05:05:56.281] [main/DEBUG] [mixin/]: Renaming synthetic method lambda$forbiddenArcanus_destroyBlock$0(Lcom/stal111/forbidden_arcanus/common/item/modifier/DemolishingModifierBlockBreaker;)V to md2642d6$lambda$forbiddenArcanus_destroyBlock$0$1 in forbidden_arcanus.mixins.json:ServerPlayerGameModeMixin [12May2024 05:05:56.315] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:betterdungeons for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/YungsBetterDungeons-1.19.2-Forge-3.2.2.jar [12May2024 05:05:56.315] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:supermartijn642configlib for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/supermartijn642configlib-1.1.8-forge-mc1.19.jar [12May2024 05:05:56.315] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:additionalentityattributes for mod file [12May2024 05:05:56.316] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:oriacs for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/origins-accessbilities-1.19.2-1.1.1.jar [12May2024 05:05:56.316] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:botarium for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/botarium-forge-1.19.2-1.9.2.jar [12May2024 05:05:56.316] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:hammerlib for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/HammerLib-1.19.2-19.3.81.jar [12May2024 05:05:56.316] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mcwwindows for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mcw-windows-2.2.1-mc1.19.2forge.jar [12May2024 05:05:56.316] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:aquaculturedelight for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/aquaculture_delight_1.0.0_forge_1.19.2.jar [12May2024 05:05:56.316] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:apoli for mod file [12May2024 05:05:56.316] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:macawsroofsbyg for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/macawsroofsbyg-1.19.2-1.3.jar [12May2024 05:05:56.317] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:yungsapi for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/YungsApi-1.19.2-Forge-3.8.10.jar [12May2024 05:05:56.317] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:botanypotstiers for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/BotanyPotsTiers-Forge-1.19.2-3.3.2.jar [12May2024 05:05:56.317] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:guardvillagers for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/guardvillagers-1.19.2-1.5.9.jar [12May2024 05:05:56.317] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:createdieselgenerators for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/createdieselgenerators-1.19.2-1.2h.jar [12May2024 05:05:56.317] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:create_compressed for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/create_compressed_1.0.1_forge_1.19.2.jar [12May2024 05:05:56.317] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:apotheosis for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Apotheosis-1.19.2-6.5.1.jar [12May2024 05:05:56.317] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:create_new_age for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/create-new-age-forge-1.19.2-1.1.2.jar [12May2024 05:05:56.317] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:balm for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/balm-forge-1.19.2-4.6.0.jar [12May2024 05:05:56.318] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:exposure for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/exposure-1.19.2-1.6.0-forge.jar [12May2024 05:05:56.318] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:betterfortresses for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/YungsBetterNetherFortresses-1.19.2-Forge-1.0.6.jar [12May2024 05:05:56.318] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:cloth_config for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/cloth-config-8.3.115-forge.jar [12May2024 05:05:56.318] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:qualitycrops for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/QualityCrops-1.19.2-1.3.3.jar [12May2024 05:05:56.318] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:supplementaries for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/supplementaries-1.19.2-2.4.20.jar [12May2024 05:05:56.318] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:geophilic for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/geophilic-1.19-2.0.0c.jar [12May2024 05:05:56.318] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:easy_piglins for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/easy-piglins-forge-1.19.2-1.0.5.jar [12May2024 05:05:56.318] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:structure_gel for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/structure_gel-1.19.2-2.7.3.jar [12May2024 05:05:56.318] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:corpse for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/corpse-forge-1.19.2-1.0.12.jar [12May2024 05:05:56.319] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:handcrafted for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/handcrafted-forge-1.19.2-2.0.6.jar [12May2024 05:05:56.319] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:botanytrees for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/BotanyTrees-Forge-1.19.2-5.0.12.jar [12May2024 05:05:56.319] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:explorify for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/explorify-v1.4.0.jar [12May2024 05:05:56.319] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:w2pets for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/WaystonesTeleportPets-1.19.2-1.19.4--1.2.jar [12May2024 05:05:56.319] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:ironfurnaces for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/ironfurnaces-1.19.2-3.6.5.jar [12May2024 05:05:56.319] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:dungeons_plus for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/dungeons_plus-1.19.2-1.3.1.jar [12May2024 05:05:56.319] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mcwtrpdoors for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mcw-trapdoors-1.1.2-mc1.19.2forge.jar [12May2024 05:05:56.320] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:transparent for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/transparent-5.1.2+1.19-forge.jar [12May2024 05:05:56.320] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:supermartijn642corelib for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/supermartijn642corelib-1.1.17-forge-mc1.19.2.jar [12May2024 05:05:56.320] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:createmoredrillheads for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/createmoredrillheads-2.0.3-1.19.2.jar [12May2024 05:05:56.320] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:yungsbridges for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/YungsBridges-1.19.2-Forge-3.1.0.jar [12May2024 05:05:56.320] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:botania for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Botania-1.19.2-440-FORGE.jar [12May2024 05:05:56.320] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:resourcefulconfig for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/resourcefulconfig-forge-1.19.2-1.0.20.jar [12May2024 05:05:56.320] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:fairylights for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/fairylights-6.0.1-1.19.2.jar [12May2024 05:05:56.321] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:curios for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/curios-forge-1.19.2-5.1.6.2.jar [12May2024 05:05:56.321] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:origins for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/origins-forge-1.19.2-1.7.1.7-all.jar [12May2024 05:05:56.321] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:createarmory for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/createarmoryv0.6.jar [12May2024 05:05:56.321] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:yungsextras for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/YungsExtras-1.19.2-Forge-3.1.0.jar [12May2024 05:05:56.321] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:framedblocks for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/FramedBlocks-6.8.6.jar [12May2024 05:05:56.321] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mcwroofs for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mcw-roofs-2.3.0-mc1.19.2forge.jar [12May2024 05:05:56.321] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mcwfurnitures for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mcw-furniture-3.2.2-mc1.19.2forge.jar [12May2024 05:05:56.322] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:createindustry for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/createindustry-0.8.0b-1.19.2.jar [12May2024 05:05:56.322] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:adorn for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Adorn-3.9.1+1.19.2-forge.jar [12May2024 05:05:56.322] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:betterendisland for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/YungsBetterEndIsland-1.19.2-Forge-1.0.jar [12May2024 05:05:56.322] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:bettermineshafts for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/YungsBetterMineshafts-1.19.2-Forge-3.2.1.jar [12May2024 05:05:56.322] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:sliceanddice for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/sliceanddice-forge-2.3.2.jar [12May2024 05:05:56.322] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mcwlights for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mcw-lights-1.0.6-mc1.19.2forge.jar [12May2024 05:05:56.322] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:betterjungletemples for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/YungsBetterJungleTemples-1.19.2-Forge-1.0.1.jar [12May2024 05:05:56.323] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:bellsandwhistles for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/bellsandwhistles-v0.4.4-1.19.2.jar [12May2024 05:05:56.323] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:rechiseled for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/rechiseled-1.1.6-forge-mc1.19.2.jar [12May2024 05:05:56.323] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:jei for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/jei-1.19.2-forge-11.6.0.1019.jar [12May2024 05:05:56.323] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:pehkui for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Pehkui-3.8.0+1.19.2-forge.jar [12May2024 05:05:56.323] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:goblintraders for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/goblintraders-1.8.0-1.19.2.jar [12May2024 05:05:56.323] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:caelus for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/caelus-forge-1.19.2-3.0.0.6.jar [12May2024 05:05:56.323] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:apotheotic_additions for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/apotheotic_additions1.0.4.jar [12May2024 05:05:56.323] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:naturescompass for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/NaturesCompass-1.19.2-1.10.0-forge.jar [12May2024 05:05:56.323] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:libx for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/LibX-1.19.2-4.2.8.jar [12May2024 05:05:56.324] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:botanypots for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/BotanyPots-Forge-1.19.2-9.0.43.jar [12May2024 05:05:56.324] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:design_decor for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/design_decor-0.4-1.19.2.jar [12May2024 05:05:56.324] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:rechiseledcreate for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/rechiseledcreate-1.0.2-forge-mc1.19.jar [12May2024 05:05:56.324] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:create_easy_structures for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/create_easy_structures-0.1.1-1.19.2.jar [12May2024 05:05:56.324] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:book_fishing for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Book Fishing 1.0.0 - 1.19.2.jar [12May2024 05:05:56.324] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mythicmounts for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mythicmounts-19.2-7.2.1-forge.jar [12May2024 05:05:56.324] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mcwpaths for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mcw-paths-1.0.4forge-mc1.19.2.jar [12May2024 05:05:56.324] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:terrablender for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/TerraBlender-forge-1.19.2-2.0.1.136.jar [12May2024 05:05:56.324] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:wildfire_gender for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Female-Gender-Mod-forge-1.19.1-3.0.1.jar [12May2024 05:05:56.324] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:astikorcarts for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/astikorcarts-1.19.2-1.1.2.jar [12May2024 05:05:56.324] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:calio for mod file [12May2024 05:05:56.324] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:kotlinforforge for mod file [12May2024 05:05:56.325] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:paintings for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Paintings-forge-1.19.2-10.2.4.0.jar [12May2024 05:05:56.325] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file /home/minecraft/multicraft/servers/server2322386/default/jar/libraries/net/minecraftforge/forge/1.19.2-43.3.13/forge-1.19.2-43.3.13-universal.jar [12May2024 05:05:56.325] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:silentgear for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/silent-gear-1.19.2-3.2.2.jar [12May2024 05:05:56.325] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:origins_plus_plus for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/origins-plus-plus-2.2-forge.jar [12May2024 05:05:56.325] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:archaeology for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/archaeology-api-1.19.2-1.0.0.jar [12May2024 05:05:56.325] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:flywheel for mod file [12May2024 05:05:56.325] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:alloyed for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/alloyed-1.19.2-v1.5a.jar [12May2024 05:05:56.325] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:createoreexcavation for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/createoreexcavation-1.19-1.2.3.jar [12May2024 05:05:56.325] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:decoration_delight for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/DecorationDelightRefurbished-1.19.2.jar [12May2024 05:05:56.325] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:nocubescreateexp for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/nocube's_create_compact_exp_1.0.3_forge_1.19.2.jar [12May2024 05:05:56.326] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:strictly_origins for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/strictly_origins_v9.0.1_1.19.2.jar [12May2024 05:05:56.326] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:appleskin for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/appleskin-forge-mc1.19-2.4.2.jar [12May2024 05:05:56.326] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:puzzleslib for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/PuzzlesLib-v4.4.3-1.19.2-Forge.jar [12May2024 05:05:56.326] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:byg for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Oh_The_Biomes_You'll_Go-forge-1.19.2-2.0.1.6.jar [12May2024 05:05:56.326] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:corgilib for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/CorgiLib-forge-1.19.2-1.0.0.34.jar [12May2024 05:05:56.326] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:aquaculture for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Aquaculture-1.19.2-2.4.17.jar [12May2024 05:05:56.326] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:babydelight for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/baby_delight_1.0.2_forge_1.19.2.jar [12May2024 05:05:56.326] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mcwfurnituresbyg for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mcwfurnituresbyg-1.19.2-1.2.jar [12May2024 05:05:56.326] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:valkyrienskies for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/valkyrienskies-119-2.1.2-beta.1.jar [12May2024 05:05:56.327] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:cosmeticarmorreworked for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/CosmeticArmorReworked-1.19.2-v1a.jar [12May2024 05:05:56.327] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:letsdoaddonstructures for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/letsdo-addon-structures-1.6.0_1.19.2.jar [12May2024 05:05:56.327] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:ad_astra for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/ad_astra-forge-1.19.2-1.12.7.jar [12May2024 05:05:56.327] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:ad_astra_giselle_addon for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Ad-Astra-Giselle-Addon-forge-1.19.2-1.20.jar [12May2024 05:05:56.327] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:tetra for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/tetra-1.19.2-5.6.0.jar [12May2024 05:05:56.327] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:hexerei for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/hexerei-0.3.3.1.jar [12May2024 05:05:56.327] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:cp_tweaks for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/cp_tweaks-1.0.7-1.19.2.jar [12May2024 05:05:56.327] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:create_upgraded_armor for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Renforced_Brass_Armor_1.19.2.jar [12May2024 05:05:56.327] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:create_things_and_misc for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/create_misc_and_things_ 1.19.2_4.0A.jar [12May2024 05:05:56.327] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:betterwitchhuts for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/YungsBetterWitchHuts-1.19.2-Forge-2.1.0.jar [12May2024 05:05:56.328] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:netherportalfix for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/netherportalfix-forge-1.19-10.0.1.jar [12May2024 05:05:56.328] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:naturalist for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/naturalist-forge-4.0.3-1.19.2.jar [12May2024 05:05:56.328] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:betteroceanmonuments for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/YungsBetterOceanMonuments-1.19.2-Forge-2.1.1.jar [12May2024 05:05:56.328] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:macawsbridgesbyg for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/macawsbridgesbyg-1.19.2-1.4.jar [12May2024 05:05:56.328] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:sophisticatedcore for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/sophisticatedcore-1.19.2-0.6.4.605.jar [12May2024 05:05:56.328] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:create_crush_everything for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/create_recycle_1.0.2_forge_1.19.2.jar [12May2024 05:05:56.328] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:applecrates for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Apple Crates-forge-1.19.2-2.9.0.jar [12May2024 05:05:56.328] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:vs_eureka for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/eureka-1192-1.5.1-beta.2.jar [12May2024 05:05:56.329] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:placebo for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Placebo-1.19.2-7.4.0.jar [12May2024 05:05:56.329] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:citadel for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/citadel-2.1.4-1.19.jar [12May2024 05:05:56.329] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:alexsmobs for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/alexsmobs-1.21.1.jar [12May2024 05:05:56.329] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:iceandfire for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/iceandfire-1.19.2-2.1.13-beta-3.jar [12May2024 05:05:56.329] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mixinextras for mod file [12May2024 05:05:56.329] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:bookshelf for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Bookshelf-Forge-1.19.2-16.3.20.jar [12May2024 05:05:56.329] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:sophisticatedbackpacks for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/sophisticatedbackpacks-1.19.2-3.20.2.1035.jar [12May2024 05:05:56.329] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:create_dragon_lib for mod file [12May2024 05:05:56.329] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:relics for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/relics-1.19.2-0.6.2.4.jar [12May2024 05:05:56.329] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mcwdoors for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mcw-doors-1.1.0forge-mc1.19.2.jar [12May2024 05:05:56.330] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mermod for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mermod-forge-1.11.jar [12May2024 05:05:56.330] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:railways for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Steam_Rails-1.6.4+forge-mc1.19.2.jar [12May2024 05:05:56.330] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:carryon for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/carryon-forge-1.19.2-2.1.2.23.jar [12May2024 05:05:56.330] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:adtetra for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/adtetra-1.0.1.jar [12May2024 05:05:56.330] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:create_connected for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/create_connected-0.7.4-mc1.19.2-all.jar [12May2024 05:05:56.330] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:chipped for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/chipped-forge-1.19.2-2.1.5.jar [12May2024 05:05:56.330] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mcwbridges for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mcw-bridges-3.0.0-mc1.19.2forge.jar [12May2024 05:05:56.330] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:farmersdelight for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/FarmersDelight-1.19.2-1.2.4.jar [12May2024 05:05:56.330] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:createframed for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/createframed-1.19.2-1.4.2.jar [12May2024 05:05:56.331] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:nekoration for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/nekoration-1.19.2-1.8.1.jar [12May2024 05:05:56.331] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mcwfences for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mcw-fences-1.1.1-mc1.19.2forge.jar [12May2024 05:05:56.331] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mcwfencesbyg for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mcwfencesbyg-1.19.2-1.0.jar [12May2024 05:05:56.331] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:diagonalwindows for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/DiagonalWindows-v4.0.2-1.19.2-Forge.jar [12May2024 05:05:56.331] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:simplefarming for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/simplefarming-1.19.2-2.0.4.jar [12May2024 05:05:56.331] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:lionfishapi for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/lionfishapi-1.8.jar [12May2024 05:05:56.331] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:fishontheline for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/fishontheline-1.19.2-3.2.jar [12May2024 05:05:56.331] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:cnb for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/CNB-1.19-1.5.4.jar [12May2024 05:05:56.331] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:geckolib3 for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/geckolib-forge-1.19-3.1.40.jar [12May2024 05:05:56.331] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:crittersandcompanions for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/crittersandcompanions-1.19.2-2.1.2.jar [12May2024 05:05:56.331] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:cataclysm for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/L_Enders_Cataclysm-1.99.2-1.19.2.jar [12May2024 05:05:56.332] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:patchouli for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Patchouli-1.19.2-77.jar [12May2024 05:05:56.332] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:feywild for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Feywild-1.19.2-3.2.6.jar [12May2024 05:05:56.332] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:ars_nouveau for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/ars_nouveau-1.19.2-3.23.0.jar [12May2024 05:05:56.332] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:ars_artifice for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/ars_artifice-1.19.2-1.0.6.jar [12May2024 05:05:56.332] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:suppsquared for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/suppsquared-1.19.2-1.1.1.jar [12May2024 05:05:56.332] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:collective for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/collective-1.19.2-7.57.jar [12May2024 05:05:56.332] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:origins_classes for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/origins-classes-forge-1.2.1.jar [12May2024 05:05:56.332] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:betterstrongholds for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/YungsBetterStrongholds-1.19.2-Forge-3.2.0.jar [12May2024 05:05:56.332] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:resourcefullib for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/resourcefullib-forge-1.19.2-1.1.24.jar [12May2024 05:05:56.332] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:architectury for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/architectury-6.6.92-forge.jar [12May2024 05:05:56.332] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:doapi for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/doapi-1.1.0b.jar [12May2024 05:05:56.332] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:vinery for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/letsdo-vinery-forge-1.3.12b.jar [12May2024 05:05:56.333] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:candlelight for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/letsdo-candlelight-forge-1.1.9.jar [12May2024 05:05:56.333] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:bakery for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/letsdo-bakery-forge-1.0.6.jar [12May2024 05:05:56.333] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:meadow for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/letsdo-meadow-forge-1.2.4.jar [12May2024 05:05:56.333] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:reaping for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/reaping-forge-2.2.0.jar [12May2024 05:05:56.333] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:productivebees for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/productivebees-1.19.2-0.10.7.2.jar [12May2024 05:05:56.333] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:the_bumblezone for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/the_bumblezone_forge-6.9.13+1.19.2.jar [12May2024 05:05:56.333] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:bwncr for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/bwncr-forge-1.19.2-3.14.1.jar [12May2024 05:05:56.333] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:t_and_t for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Towns-and-Towers-v.1.10-_FORGE-1.19.2_.jar [12May2024 05:05:56.333] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:arcane_abilities for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/arcane_abilities-0.1.9.1-1.19.2.jar [12May2024 05:05:56.333] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:festive_delight for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Festive_Delight_1.3_Forge_1.19.2.jar [12May2024 05:05:56.333] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:sophisticatedstorage for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/sophisticatedstorage-1.19.2-0.9.7.765.jar [12May2024 05:05:56.334] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:octolib for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/octolib-1.19.2-0.3.jar [12May2024 05:05:56.334] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:copycats for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Copycats-forge.1.19.2-1.2.5.jar [12May2024 05:05:56.334] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:xlpackets for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/xlpackets-1.18.2-2.1.jar [12May2024 05:05:56.334] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:create for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/create-1.19.2-0.5.1.f.jar [12May2024 05:05:56.334] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:createdeco for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/createdeco-1.3.3-1.19.2.jar [12May2024 05:05:56.334] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:create_central_kitchen for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/create_central_kitchen-1.19.2-for-create-0.5.1.f-1.3.11.c.jar [12May2024 05:05:56.334] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:vs_clockwork for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/clockwork-1.19.2-0.1.13-forge-4621aeec07.jar [12May2024 05:05:56.334] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:interiors for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/interiors-0.5.3+forge-mc1.19.2.jar [12May2024 05:05:56.334] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:extendedgears for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/extendedgears-2.1.1-1.19.2-0.5.1.f-forge.jar [12May2024 05:05:56.334] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:createastracompat for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/createastracompat-1.0.3-1.19.2.jar [12May2024 05:05:56.334] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:ars_creo for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/ars_creo-1.19.2-3.2.1.jar [12May2024 05:05:56.334] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:create_crystal_clear for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/create_crystal_clear-0.2.1-1.19.2.jar [12May2024 05:05:56.335] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:createcasing for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/CreateCasing-1.19.2-1.6.0-ht1.jar [12May2024 05:05:56.335] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:waystones for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/waystones-forge-1.19.2-11.4.2.jar [12May2024 05:05:56.335] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mcwpaintings for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mcw-paintings-1.0.5-1.19.2forge.jar [12May2024 05:05:56.335] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:decorative_blocks for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Decorative Blocks-forge-1.19.2-3.0.0.jar [12May2024 05:05:56.335] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:betteranimalsplus for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/betteranimalsplus-1.19.2-11.0.10-forge.jar [12May2024 05:05:56.335] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:create_confectionery for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/create-confectionery1.19.2_v1.0.9.jar [12May2024 05:05:56.335] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:betterdeserttemples for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/YungsBetterDesertTemples-1.19.2-Forge-2.2.2.jar [12May2024 05:05:56.335] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:qualitysdelight for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/QualitysDelight-1.19.2-1.5.3.jar [12May2024 05:05:56.335] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:farmersrespite for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/FarmersRespite-1.19-2.0.jar [12May2024 05:05:56.336] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:oceansdelight for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/oceansdelight-1.0.2-1.19.2.jar [12May2024 05:05:56.336] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:endersdelight for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/endersdelight-1.19-1.2.2.jar [12May2024 05:05:56.336] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:blueprint for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/blueprint-1.19.2-6.2.0.jar [12May2024 05:05:56.336] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:bobberdetector for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/bobberdetector-0.1.9-1.19.2.jar [12May2024 05:05:56.336] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:iron_fishing_rods for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Iron Fishing Rods 1.0.0 - 1.19.2.jar [12May2024 05:05:56.336] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:moderntrainparts for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/moderntrainparts-mc1.19.2-0.2.2-forge.jar [12May2024 05:05:56.336] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:better_fishing_rods for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Better Fishing Rods 1.0.0 - 1.19.2.jar [12May2024 05:05:56.336] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:moonlight for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/moonlight-1.19.2-2.3.6-forge.jar [12May2024 05:05:56.337] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:babyfat for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/babyfat-forge-1.19.2-1.1.2.jar [12May2024 05:05:56.337] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:silentlib for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/silent-lib-1.19.2-7.0.3.jar [12May2024 05:05:56.337] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:jade for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Jade-1.19.1-forge-8.9.2.jar [12May2024 05:05:56.337] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:another_furniture for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/another_furniture-forge-1.19.2-2.1.4.jar [12May2024 05:05:56.337] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:nethersdelight for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/NethersDelight-1.19-3.1.jar [12May2024 05:05:56.337] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:valkyrienskies_sophisticatedstorage_compat for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/valkyrienskies_sophisticatedstorage_compat-1.19.2-1.0.2-SS0.8.jar [12May2024 05:05:56.337] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:easy_villagers for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/easy_villagers-1.19.2-1.0.17.jar [12May2024 05:05:56.337] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:iceberg for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/Iceberg-1.19.2-forge-1.1.4.jar [12May2024 05:05:56.337] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:reliquary for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/reliquary-1.19.2-2.0.40.1198.jar [12May2024 05:05:56.337] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:mutil for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/mutil-1.19.2-5.2.0.jar [12May2024 05:05:56.338] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:create_sa for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/create-stuff-additions1.19.2_v2.0.4a.jar [12May2024 05:05:56.338] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:ars_elemental for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/ars_elemental-1.19.2-0.5.9.4.1.jar [12May2024 05:05:56.338] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:diagonalfences for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/DiagonalFences-v4.2.6-1.19.2-Forge.jar [12May2024 05:05:56.338] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:miners_delight for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/miners_delight-1.19.2-1.1.2.jar [12May2024 05:05:56.338] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:dynamicvillage for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/dynamicvillage-v0.3-1.19.2.jar [12May2024 05:05:56.338] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:sandbox for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/SandBox-1.19.2-1.0.1.jar [12May2024 05:05:56.338] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:creeperoverhaul for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/creeperoverhaul-2.0.9-forge.jar [12May2024 05:05:56.338] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:alexsdelight for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/alexsdelight-1.4.1.jar [12May2024 05:05:56.338] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:ferritecore for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/ferritecore-5.0.3-forge.jar [12May2024 05:05:56.338] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:solcarrot for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/SoL-Carrot-1.19.2-1.14.0.jar [12May2024 05:05:56.339] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:valhelsia_core for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/valhelsia_core-forge-1.19.2-0.5.0.jar [12May2024 05:05:56.339] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forbidden_arcanus for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/forbidden_arcanus-1.19.2-2.1.5.jar [12May2024 05:05:56.339] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:create_enchantment_industry for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/create_enchantment_industry-1.19.2-for-create-0.5.1.f-1.2.9.d.jar [12May2024 05:05:56.339] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:createaddition for mod file /home/minecraft/multicraft/servers/server2322386/default/mods/createaddition-1.19.2-1.2.3.jar [12May2024 05:05:56.343] [main/INFO] [net.minecraft.server.MinecraftServer/]: Found new data pack Supplementaries Generated Pack, loading it automatically [12May2024 05:05:56.343] [main/INFO] [net.minecraft.server.MinecraftServer/]: Found new data pack Suppsquared Generated Pack, loading it automatically [12May2024 05:05:56.343] [main/INFO] [net.minecraft.server.MinecraftServer/]: Found new data pack create_central_kitchen:farmersdelight, loading it automatically [12May2024 05:05:56.343] [main/INFO] [net.minecraft.server.MinecraftServer/]: Found new data pack create_central_kitchen:farmersrespite, loading it automatically [12May2024 05:05:56.343] [main/INFO] [net.minecraft.server.MinecraftServer/]: Found new data pack create_central_kitchen:miners_delight, loading it automatically [12May2024 05:05:56.344] [main/INFO] [net.minecraft.server.MinecraftServer/]: Found new data pack create_new_age:create_new_age_monkey_edition, loading it automatically [12May2024 05:05:56.344] [main/INFO] [net.minecraft.server.MinecraftServer/]: Found new data pack t_and_t_waystones_patch_1.19.2.zip, loading it automatically [12May2024 05:05:56.347] [main/DEBUG] [mixin/]: Mixing MultiPackResourceManagerMixin from moonlight-common.mixins.json into net.minecraft.server.packs.resources.MultiPackResourceManager [12May2024 05:05:56.434] [main/DEBUG] [mixin/]: Mixing MixinShapedRecipeBuilder from railways-common.mixins.json into net.minecraft.data.recipes.ShapedRecipeBuilder [12May2024 05:05:56.494] [main/INFO] [supplementaries/]: Generated runtime SERVER_DATA for pack Supplementaries Generated Pack in: 91 ms [12May2024 05:05:56.524] [main/INFO] [suppsquared/]: Generated runtime SERVER_DATA for pack Suppsquared Generated Pack in: 29 ms (debug resource dump on) [12May2024 05:05:59.668] [main/WARN] [net.minecraft.server.Main/]: Failed to load datapacks, can't proceed with server load. You can either fix your datapacks or reset to vanilla with --safeMode java.util.concurrent.ExecutionException: com.google.gson.JsonParseException: Error loading registry data: No key name in MapLike[{"fallback":"minecraft:empty","elements":[{"weight":1,"element":{"element_type":"minecraft:empty_pool_element"}},{"weight":1,"element":{"element_type":"minecraft:single_pool_element","projection":"rigid","location":"create_easy_structures:grade1","processors":"minecraft:empty"}},{"weight":1,"element":{"element_type":"minecraft:single_pool_element","projection":"rigid","location":"create_easy_structures:grade2","processors":"minecraft:empty"}}],"forge:registry_name":"minecraft:worldgen/template_pool"}] at java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396) ~[?:?] at java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2073) ~[?:?] at net.minecraft.server.Main.main(Main.java:182) ~[server-1.19.2-20220805.130853-srg.jar%23523!/:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:29) ~[fmlloader-1.19.2-43.3.13.jar%2367!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2354!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] Caused by: com.google.gson.JsonParseException: Error loading registry data: No key name in MapLike[{"fallback":"minecraft:empty","elements":[{"weight":1,"element":{"element_type":"minecraft:empty_pool_element"}},{"weight":1,"element":{"element_type":"minecraft:single_pool_element","projection":"rigid","location":"create_easy_structures:grade1","processors":"minecraft:empty"}},{"weight":1,"element":{"element_type":"minecraft:single_pool_element","projection":"rigid","location":"create_easy_structures:grade2","processors":"minecraft:empty"}}],"forge:registry_name":"minecraft:worldgen/template_pool"}] at net.minecraft.core.RegistryAccess.m_206152_(RegistryAccess.java:211) ~[server-1.19.2-20220805.130853-srg.jar%23523!/:?] at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] at net.minecraft.core.RegistryAccess.m_206159_(RegistryAccess.java:210) ~[server-1.19.2-20220805.130853-srg.jar%23523!/:?] at net.minecraft.core.RegistryAccess.m_206171_(RegistryAccess.java:203) ~[server-1.19.2-20220805.130853-srg.jar%23523!/:?] at net.minecraft.resources.RegistryOps.m_206817_(RegistryOps.java:32) ~[server-1.19.2-20220805.130853-srg.jar%23523!/:?] at net.minecraft.resources.RegistryOps.m_206813_(RegistryOps.java:25) ~[server-1.19.2-20220805.130853-srg.jar%23523!/:?] at net.minecraft.server.Main.lambda$main$2(Main.java:160) ~[server-1.19.2-20220805.130853-srg.jar%23523!/:?] at net.minecraft.server.WorldLoader.m_214362_(WorldLoader.java:24) ~[server-1.19.2-20220805.130853-srg.jar%23523!/:?] at net.minecraft.server.WorldStem.m_214415_(WorldStem.java:18) ~[server-1.19.2-20220805.130853-srg.jar%23523!/:?] at net.minecraft.server.Main.lambda$main$3(Main.java:158) ~[server-1.19.2-20220805.130853-srg.jar%23523!/:?] at net.minecraft.Util.m_214652_(Util.java:775) ~[server-1.19.2-20220805.130853-srg.jar%23523!/:?] at net.minecraft.Util.m_214679_(Util.java:770) ~[server-1.19.2-20220805.130853-srg.jar%23523!/:?] at net.minecraft.server.Main.main(Main.java:157) ~[server-1.19.2-20220805.130853-srg.jar%23523!/:?] ... 13 more  
  • Topics

×
×
  • Create New...

Important Information

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