Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/01/22 in all areas

  1. I suggest you contact whoever wrote the texture pack. The first error in your log is Which suggests something in that texture pack is breaking the class initialisation for minecraft's texture class Or it is conflicting with a mod that changes that code. Since you don't post a link to your debug.log we can't see which mods are modifying that code. The log does not contain an error to explain why it can't load that class. So, we can't see the root cause. There is this warning just before, which may or may not be relevant? Assuming there is no fundamental problem with the resource pack (e.g. it is for a different version of minecraft) I suspect the only way you will find the conflicting mod is to experiment with removing mods until the problem goes away.
    1 point
  2. then stop and breathe. place a cursor on "RepairItemRecipe" identifier and press ctrl+b (or ctrl+click it). study that class until you understand it completely. do not proceed until you understand repair recipe class and firework recipe class.
    1 point
  3. Conflict between enigmatic legacy and patchouli. Check you have the latest versions then contact the mod authors.
    1 point
  4. That's the point of MinecraftServer#getLevel. You can get the server from any current ServerLevel instance via #getServer.
    1 point
  5. You need to make your own subclass of CraftingRecipe (I assume this is the crafting table?) along with a Serializer for it. Then override Recipe.assemble() to do what you want. See for example FireworkRocketRecipe.
    1 point
  6. that sounds like a vanilla feature where you combine two items in crafting table. doesn't matter that it's not the same. did you look at RepairItemRecipe class?
    1 point
  7. You need to ask the mod author about their mod. 🙂
    1 point
  8. The client thread shows you in the pause screen. The server thread shows hexerei responding to a chunk unload event for its Chest. It seems to be trying to broadcast a network packet to all players in the chunk. Check to see if you still get the hang without this mod included.
    1 point
  9. The parameter can be obtained from EndDragonFight#hasPreviouslyKilledDragon which can be obtained from the ServerLevel#dragonFight assuming the ServerLevel is the END which can be obtained from MinecraftServer#getLevel.
    1 point
×
×
  • Create New...

Important Information

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