Jump to content

Recommended Posts

Posted

How to get All Woods and their Planks? I want to shorten this piece of code and easily add compatibility for other mods. I want to get logs as an array and their planks as an array, so I can go through a loop and shorten this:

   if (offHandItem.is(Items.OAK_LOG)) {
            offHandItem.shrink(1);
            ItemStack woodStack = Items.OAK_PLANKS.getDefaultInstance();
            woodStack.grow(5);
            player.addItem(woodStack);
        }
        if (offHandItem.is(Items.SPRUCE_LOG)) {
            offHandItem.shrink(1);
            ItemStack woodStack = Items.SPRUCE_PLANKS.getDefaultInstance();
            woodStack.grow(5);
            player.addItem(woodStack);
        }
        if (offHandItem.is(Items.BIRCH_LOG)) {
            offHandItem.shrink(1);
            ItemStack woodStack = Items.BIRCH_PLANKS.getDefaultInstance();
            woodStack.grow(5);
            player.addItem(woodStack);
        }
        if (offHandItem.is(Items.JUNGLE_LOG)) {
            offHandItem.shrink(1);
            ItemStack woodStack = Items.JUNGLE_PLANKS.getDefaultInstance();
            woodStack.grow(5);
            player.addItem(woodStack);
        }
        if (offHandItem.is(Items. ACACIA_LOG)) {
            offHandItem.shrink(1);
            ItemStack woodStack = Items.ACACIA_PLANKS.getDefaultInstance();
            woodStack.grow(5);
            player.addItem(woodStack);
        }
        if (offHandItem.is(Items.DARK_OAK_LOG)) {
            offHandItem.shrink(1);
            ItemStack woodStack = Items.DARK_OAK_PLANKS.getDefaultInstance();
            woodStack.grow(5);
            player.addItem(woodStack);
        }
        if (offHandItem.is(Items.CRIMSON_HYPHAE)) {
            offHandItem.shrink(1);
            ItemStack woodStack = Items.CRIMSON_PLANKS.getDefaultInstance();
            woodStack.grow(5);
            player.addItem(woodStack);
        }
        if (offHandItem.is(Items.WARPED_HYPHAE)) {
            offHandItem.shrink(1);
            ItemStack woodStack = Items.WARPED_PLANKS.getDefaultInstance();
            woodStack.grow(5);
            player.addItem(woodStack);
        }
        if (offHandItem.is(Items.MANGROVE_LOG)) {
            offHandItem.shrink(1);
            ItemStack woodStack = Items.MANGROVE_PLANKS.getDefaultInstance();
            woodStack.grow(5);
            player.addItem(woodStack);
        }

I don't want to use a crafting recipe as it is way cooler to have it in your offhand and make wood.

Posted

i do something similar and is complicated 

	 
	        public static Map<String, BlockState> blocklist = new HashMap<String, BlockState>();// list whit all blocks
	        Block actualBlock = null;
        String type = "";
        String nnn = "";
        int count = 0;
	 
	//load hashmap whit all blocks and fix their names 
	        for (Entry<ResourceKey<Block>, Block> ResourceKey : ForgeRegistries.BLOCKS.getEntries()) {
            actualBlock = ResourceKey.getValue();
	            nnn = fix_blkfullname(actualBlock.getName().getString());
            blocklist.put(nnn, actualBlock.defaultBlockState());
	            if (nnn.contains("slab")) {
                slablist.put(nnn, "");
            }
            count++;
        }
	 
	    // ########## ########## ########## ########## ########## ##########
    //
    public static String fix_blkfullname(String blkfullname) {
        if (blkfullname.contains(".")) {
            String[] split1 = blkfullname.split("\\."); // "\\."
	            if (split1.length > 1) {
                blkfullname = split1[split1.length - 1].replaceAll("_", " ");
            }
        }
	        return blkfullname.toLowerCase();
    }
	

is up to you to use the if (nnn.contains("slab")) { slablist.put(nnn, "");  }    to find all tha planks and logs in the list and sort them as it suits you 

 

Posted (edited)
  On 10/3/2022 at 12:54 PM, perromercenary00 said:

i do something similar and is complicated 
 

	 
	        public static Map<String, BlockState> blocklist = new HashMap<String, BlockState>();// list whit all blocks
	        Block actualBlock = null;
        String type = "";
        String nnn = "";
        int count = 0;
	 
	//load hashmap whit all blocks and fix their names 
	        for (Entry<ResourceKey<Block>, Block> ResourceKey : ForgeRegistries.BLOCKS.getEntries()) {
            actualBlock = ResourceKey.getValue();
	            nnn = fix_blkfullname(actualBlock.getName().getString());
            blocklist.put(nnn, actualBlock.defaultBlockState());
	            if (nnn.contains("slab")) {
                slablist.put(nnn, "");
            }
            count++;
        }
	 
	    // ########## ########## ########## ########## ########## ##########
    //
    public static String fix_blkfullname(String blkfullname) {
        if (blkfullname.contains(".")) {
            String[] split1 = blkfullname.split("\\."); // "\\."
	            if (split1.length > 1) {
                blkfullname = split1[split1.length - 1].replaceAll("_", " ");
            }
        }
	        return blkfullname.toLowerCase();
    }
	

 

is up to you to use the if (nnn.contains("slab")) { slablist.put(nnn, "");  }    to find all tha planks and logs in the list and sort them as it suits you 

 

Expand  

It's giving me only this error:

/home/yusuf/IdeaProjects/Orangecraft/src/main/java/com/mys/orangecraft/Woodcutter.java:57: error: method put in class ConversionTable cannot be applied to given types;
                slablist.put(nnn, "");
                        ^
  required: Class<T>,Function<? super T,Object>
  found:    String,String
  reason: cannot infer type-variable(s) T
    (argument mismatch; String cannot be converted to Class<T>)
  where T is a type-variable:
    T extends Object declared in method <T>put(Class<T>,Function<? super T,Object>)

 

Edited by JoeBox9
Added word only to clarify
Posted (edited)

  The way to get the list for all logs (including modded logs) is:

 ForgeRegistries.ITEMS.tags().getTag(ItemTags.LOGS).forEach(item -> blah);

and similar for ItemTags.PLANKS

But there is no association between the 2 lists except for that provided by the recipes.

Edited by warjort

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Posted
  On 10/3/2022 at 1:16 PM, warjort said:

  The way to get the list for all logs (including modded logs) is:

 ForgeRegistries.ITEMS.tags().getTag(ItemTags.LOGS).forEach(item -> blah);

and similar for ItemTags.PLANKS

But there is no association between the 2 lists except for that provided by the recipes.

Expand  

How do I declare the blah var?

Posted

That's for you to decide. "blah" is a placeholder for your code. 🙂 

You could also replace the .forEach() with .stream().toList() or .iterator() if you are not familiar with consumer iteration.

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Posted
  On 10/3/2022 at 1:34 PM, warjort said:

That's for you to decide. "blah" is a placeholder for your code. 🙂 

You could also replace the .forEach() with .stream().toList() or .iterator() if you are not familiar with consumer iteration.

Expand  

I used a list and appended to it like this:

        List<ITag> logs = null;
        for (Item item : ForgeRegistries.ITEMS.tags().getTag(ItemTags.LOGS)) {
            logs.add((ITag) item);
        }

It was an auto suggestion from Intellij, I was able to do planks like:

        for (i = 0; i > logs.size();i++) {
            if (offHandItem.is((Item) logs.get(i))) {

but I can't do:

 ItemStack woodStack = planks.get(i).getDeafultInstance();

It can't find it

Posted (edited)

(Re)read what I wrote above about recipes.

Edited by warjort

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Posted

You need to use the RecipeManager

serverLevel.getServer().getRecipeManager()

to find the Crafting(Shapeless)Recipe for the logs you have (assuming there is one).

That is the only thing that associates logs with planks.

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Posted
  On 10/3/2022 at 2:07 PM, warjort said:

You need to use the RecipeManager

serverLevel.getServer().getRecipeManager()

to find the Crafting(Shapeless)Recipe for the logs you have (assuming there is one).

That is the only thing that associates logs with planks.

Expand  

I am very confused. What is the exact code I need to associate logs with planks?

Posted (edited)

Enough. You need to spend more than 5 minutes researching this. Instead of expecting us to write your mod for you.

e.g. look at how the 2x2 crafting grid works in InventoryMenu

Edited by warjort

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Posted

There is no "Exact code".

You need to loop through the list of logs (that you got from the tag), and then compare those blocks with recipes which you can find from the recipemanager.

Minecraft doesn't make any links between logs and planks other than the recipes. There is no good way to do what you want, because there is no way to define "Block Y is a plank version of log X". Just "If you craft log X by itself, you get block Y". If someone adds a recipe for a single log to a diamond block, does that make a diamond block a plank?

Posted
  On 10/3/2022 at 2:07 PM, warjort said:

You need to use the RecipeManager

serverLevel.getServer().getRecipeManager()

to find the Crafting(Shapeless)Recipe for the logs you have (assuming there is one).

That is the only thing that associates logs with planks.

Expand  

What is the method that returns the crafting recipe for each log, I can't find any doc on this from a search and the autocomplete is not enough

Posted (edited)

There isn't one, you have to loop through all the (shapeless) recipes and check them yourself (i.e. check that there is a single ingredient and it is in the logs tag (and probably also check the output is something sensible, as I mentioned before)).

Alternatively, you might be able to look up the recipes manually by looping through the items in the logs tag, converting them to a single ingredient, then looking up the recipe for that single ingredient. I haven't ever tried, so I don't know how that would work, but it is probably more efficient.

Edited by Alpvax

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

    • ok, so you just have to go back to 1.20.1 to install the mrcrayfish controller support mod and everything will work perfectly  
    • Hello, so I'm trying to play with my friends on a modded server, I took a base modpack and then added a few mods, when they try to join I'm seeing them on the world and then they disconnect. Here's a piece of the log from a friend :   [28Apr2025 19:57:57.985] [Render thread/INFO] [placebo/]: Starting sync for affixes [28Apr2025 19:57:58.010] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 179 affixes. [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:charmRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:braceletRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:scrollRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:an_focusRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:necklaceRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:ringRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:spellstoneRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:talismanRequired: 3; Provided: 2 [28Apr2025 19:57:58.016] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:beltRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:charmRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:braceletRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:scrollRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:an_focusRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:necklaceRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:ringRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:spellstoneRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:talismanRequired: 3; Provided: 2 [28Apr2025 19:57:58.017] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:beltRequired: 3; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:charmRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:braceletRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:scrollRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:an_focusRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:necklaceRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:ringRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:spellstoneRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:talismanRequired: 4; Provided: 2 [28Apr2025 19:57:58.019] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:beltRequired: 4; Provided: 2 [28Apr2025 19:57:58.024] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:charmRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:braceletRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:scrollRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:an_focusRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:necklaceRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:ringRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:spellstoneRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:talismanRequired: 4; Provided: 2 [28Apr2025 19:57:58.025] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:beltRequired: 4; Provided: 2 [28Apr2025 19:57:58.026] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category helmetRequired: 5; Provided: 4 [28Apr2025 19:57:58.026] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category chestplateRequired: 5; Provided: 4 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category leggingsRequired: 5; Provided: 4 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category bootsRequired: 5; Provided: 4 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category shieldRequired: 5; Provided: 4 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:charmRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:braceletRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:scrollRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:an_focusRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:necklaceRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:ringRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:spellstoneRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:talismanRequired: 5; Provided: 2 [28Apr2025 19:57:58.027] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:beltRequired: 5; Provided: 2 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:backRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:feetRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:headRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:bodyRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:handsRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category bowRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category crossbowRequired: 5; Provided: 4 [28Apr2025 19:57:58.028] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category heavy_weaponRequired: 5; Provided: 3 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category shieldRequired: 5; Provided: 4 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:charmRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:braceletRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:scrollRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:an_focusRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:necklaceRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:ringRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:spellstoneRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:talismanRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:beltRequired: 5; Provided: 2 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:backRequired: 5; Provided: 4 [28Apr2025 19:57:58.029] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:feetRequired: 5; Provided: 4 [28Apr2025 19:57:58.030] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:headRequired: 5; Provided: 4 [28Apr2025 19:57:58.030] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:bodyRequired: 5; Provided: 4 [28Apr2025 19:57:58.030] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:handsRequired: 5; Provided: 4 [28Apr2025 19:57:58.030] [Render thread/INFO] [placebo/]: Starting sync for gems [28Apr2025 19:57:58.056] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 57 gems. [28Apr2025 19:57:58.194] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/world/phys/HitResult$Type [28Apr2025 19:58:00.099] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting io/socol/betterthirdperson/api/TickPhase [28Apr2025 19:58:00.385] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting io/wispforest/accessories/api/EquipmentChecking [28Apr2025 19:58:00.416] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/mehvahdjukaar/supplementaries/client/cannon/ShootingMode [28Apr2025 19:58:00.508] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/world/scores/Team$CollisionRule [28Apr2025 19:58:00.553] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting com/corosus/watut/PlayerStatus$PlayerChatState [28Apr2025 19:58:00.810] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting tschipp/carryon/common/carry/CarryOnData$CarryType [28Apr2025 19:58:00.931] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting org/violetmoon/quark/api/event/UsageTickerEvent$Pass [28Apr2025 19:58:00.946] [Render thread/INFO] [ChunkBuilder/]: Stopping worker threads [28Apr2025 19:58:00.998] [Render thread/INFO] [ChunkBuilder/]: Started 10 worker threads [28Apr2025 19:58:01.170] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting me/jellysquid/mods/sodium/client/render/chunk/shader/ChunkFogMode [28Apr2025 19:58:01.176] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting me/jellysquid/mods/sodium/client/gl/shader/ShaderType [28Apr2025 19:58:01.439] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting me/jellysquid/mods/sodium/client/render/chunk/shader/ChunkShaderTextureSlot [28Apr2025 19:58:02.263] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting de/odysseus/ithaka/digraph/util/fas/FeedbackArcSetPolicy [28Apr2025 19:58:02.274] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/irisshaders/iris/shaderpack/properties/ParticleRenderingSettings [28Apr2025 19:58:02.446] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting glitchcore/event/client/LevelRenderEvent$Stage [28Apr2025 19:58:02.449] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting twilightforest/client/EffectRenders [28Apr2025 19:58:02.458] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/irisshaders/iris/shaderpack/properties/CloudSetting [28Apr2025 19:58:02.564] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting dev/kosmx/playerAnim/api/firstPerson/FirstPersonMode [28Apr2025 19:58:02.576] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection [28Apr2025 19:58:02.615] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting traben/entity_model_features/models/animation/EMFAttachments [28Apr2025 19:58:02.628] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting dev/tr7zw/skinlayers/versionless/util/Direction [28Apr2025 19:58:02.629] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting dev/tr7zw/skinlayers/versionless/util/Direction$Axis [28Apr2025 19:58:02.661] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting traben/entity_texture_features/config/screens/skin/ETFConfigScreenSkinTool$NoseType [28Apr2025 19:58:02.716] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/blay09/mods/balm/api/event/client/GuiDrawEvent$Element [28Apr2025 19:58:02.856] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Reloading radar icon resources... [28Apr2025 19:58:02.875] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:cockatrice [28Apr2025 19:58:02.875] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:evil_whirlwind [28Apr2025 19:58:02.876] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:mimic [28Apr2025 19:58:02.876] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:moa [28Apr2025 19:58:02.876] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for aether:whirlwind [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:alligator_snapping_turtle [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:anaconda [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:anaconda_part [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:anteater [28Apr2025 19:58:02.877] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bald_eagle [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:banana_slug [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bison [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:blobfish [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:blue_jay [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bone_serpent [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bone_serpent_part [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:bunfungus [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:cachalot_whale [28Apr2025 19:58:02.878] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:caiman [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:capuchin_monkey [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:catfish [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:centipede_body [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:centipede_head [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:centipede_tail [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:cockroach [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:comb_jelly [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:cosmaw [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:cosmic_cod [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:crimson_mosquito [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:crocodile [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:crow [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:devils_hole_pupfish [28Apr2025 19:58:02.879] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:dropbear [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:elephant [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:emu [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:endergrade [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:enderiophage [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:farseer [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:flutter [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:fly [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:flying_fish [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:frilled_shark [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:froststalker [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:gazelle [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:gelada_monkey [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:giant_squid [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:gorilla [28Apr2025 19:58:02.880] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:grizzly_bear [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:guster [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:hammerhead_shark [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:hummingbird [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:jerboa [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:kangaroo [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:komodo_dragon [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:laviathan [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:leafcutter_ant [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:lobster [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:maned_wolf [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mantis_shrimp [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mimic_octopus [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mimicube [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:moose [28Apr2025 19:58:02.881] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mudskipper [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:mungus [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:murmur [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:murmur_head [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:orca [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:platypus [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:potoo [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:raccoon [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:rain_frog [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:rattlesnake [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:rhinoceros [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:roadrunner [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:rocky_roller [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:sea_bear [28Apr2025 19:58:02.882] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:seagull [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:seal [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:shoebill [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:skelewag [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:skreecher [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:skunk [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:snow_leopard [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:soul_vulture [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:spectre [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:straddler [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:stradpole [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:sugar_glider [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:sunbird [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:tarantula_hawk [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:tasmanian_devil [28Apr2025 19:58:02.883] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:terrapin [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:tiger [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:toucan [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:triops [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:tusklin [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:underminer [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:void_worm [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:void_worm_part [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:warped_mosco [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for alexsmobs:warped_toad [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:cubozoa [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:dragonfly [28Apr2025 19:58:02.884] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:end_fish [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:end_slime [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betterend:silk_moth [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betternether:firefly [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betternether:hydrogen_jellyfish [28Apr2025 19:58:02.885] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for betternether:naga [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:amethyst_crab [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ancient_remnant [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:coral_golem [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:coralssus [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling_angler [28Apr2025 19:58:02.889] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling_brute [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling_priest [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:deepling_warlock [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ender_golem [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ender_guardian [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:endermaptera [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ignis [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ignited_berserker [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:ignited_revenant [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:kobolediator [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:koboleton [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:lionfish [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:modern_remnant [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:nameless_sorcerer [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:netherite_monstrosity [28Apr2025 19:58:02.890] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_baby_leviathan [28Apr2025 19:58:02.891] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_harbinger [28Apr2025 19:58:02.891] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_leviathan [28Apr2025 19:58:02.897] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_prowler [28Apr2025 19:58:02.897] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:the_watcher [28Apr2025 19:58:02.898] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for cataclysm:wadjet [28Apr2025 19:58:02.898] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for crabbersdelight:crab [28Apr2025 19:58:02.898] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:sculk_centipede [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:sculk_leech [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:sculk_snapper [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:shattered [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:shriek_worm [28Apr2025 19:58:02.899] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for deeperdarker:stalker [28Apr2025 19:58:02.900] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for goodending:firefly_swarm [28Apr2025 19:58:02.900] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for goodending:marsh [28Apr2025 19:58:02.905] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:creeper [28Apr2025 19:58:02.905] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:enderman [28Apr2025 19:58:02.906] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:piglin [28Apr2025 19:58:02.906] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:piglin_brute [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for minecraft:zombified_piglin [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:entombed [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:himmelite [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:purpur_golem [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:sinker [28Apr2025 19:58:02.907] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Skipping invalid icon form: true for outer_end:stalker [28Apr2025 19:58:02.909] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Reloaded radar icon resources! [28Apr2025 19:58:02.947] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/world/level/chunk/LevelChunk$EntityCreationType [28Apr2025 19:58:02.951] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting fuzs/overflowingbars/client/handler/HealthBarRenderer$HeartType [28Apr2025 19:58:02.997] [Render thread/INFO] [inventoryhud/]: Curios has been initialized with 20 slot(s) after 1 tries [28Apr2025 19:58:03.047] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting fi/dy/masa/malilib/gui/Message$MessageType [28Apr2025 19:58:13.337] [CullThread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting com/logisticscraft/occlusionculling/OcclusionCullingInstance$Relative [28Apr2025 19:58:38.795] [Render thread/INFO] [mixin/]: Mixing client.MixinGuiMessageTag from mixins/common/nochatreports.mixins.json into net.minecraft.client.GuiMessageTag [28Apr2025 19:58:39.613] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] Unable to open Quest GUI: no quest book data received from server! [28Apr2025 19:58:40.386] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] - Check that FTB Quests and FTB Teams are installed on the server [28Apr2025 19:58:40.386] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT]   and that no server-side errors were logged when you connected. [28Apr2025 19:58:40.386] [Render thread/ERROR] [toni.ftbquestsfreezefix.FTBQuestsFreezeFix/]: [FTB Quests Freeze Fix] ERROR! Could not get FTB Quests GUI! [28Apr2025 19:58:50.284] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting xaero/hud/minimap/compass/render/CardinalDirection [28Apr2025 19:59:24.781] [Render thread/INFO] [xaero.map.WorldMap/]: Finalizing world map session... [28Apr2025 19:59:24.782] [Thread-42/INFO] [xaero.map.WorldMap/]: World map force-cleaned! [28Apr2025 19:59:24.803] [Render thread/INFO] [xaero.map.WorldMap/]: World map session finalized. [28Apr2025 19:59:24.803] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Xaero hud session finalized. [28Apr2025 19:59:24.805] [Render thread/INFO] [fr.rakambda.fallingtree.common.network.PacketUtils/]: Disconnected from server, resetting proxy config values [28Apr2025 19:59:24.807] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.client.event.ClientPlayerNetworkEvent$LoggingOut [28Apr2025 19:59:24.807] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from ENABLED to DISABLED [28Apr2025 19:59:24.808] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting tocraft/walkers/api/platform/ApiLevel [28Apr2025 19:59:24.810] [Render thread/INFO] [inventoryhud/]: Curios disabled [28Apr2025 19:59:24.810] [Render thread/INFO] [Framework/]: Unloading synced configs from server [28Apr2025 19:59:24.811] [Render thread/INFO] [Framework/]: Sending config unload event for backpacked.server.toml [28Apr2025 19:59:24.848] [Render thread/INFO] [voicechat/]: [voicechat] Clearing audio channels [28Apr2025 19:59:25.986] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener [28Apr2025 19:59:25.988] [Render thread/INFO] [ChunkBuilder/]: Stopping worker threads [28Apr2025 19:59:26.000] [Render thread/INFO] [Entity Texture Features/]: [ETF]: emissive suffixes loaded: {_e}. [28Apr2025 19:59:26.002] [Render thread/INFO] [de.keksuccino.fancymenu.customization.layer.ScreenCustomizationLayerHandler/]: [FANCYMENU] ScreenCustomizationLayer registered: disconnected_screen [28Apr2025 19:59:26.024] [Render thread/INFO] [HammerLib/]: Reset 0 configs to their client-side state. [28Apr2025 19:59:30.962] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:30.962] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.122] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.122] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.122] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.234] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.234] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:31.235] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:33.225] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:33.226] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:33.226] [Render thread/WARN] [com.sunekaer.sdrp.discord.RPClient/]: Attempted to add context to update queue, operation failed due to a full list, something is likely wrong here or the discord client isn't present [28Apr2025 19:59:57.041] [Render thread/INFO] [de.keksuccino.fancymenu.customization.layer.ScreenCustomizationLayerHandler/]: [FANCYMENU] ScreenCustomizationLayer registered: edit_server_screen [28Apr2025 19:59:57.049] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting com/mojang/realmsclient/client/Ping$Region [28Apr2025 19:59:57.050] [Render thread/INFO] [com.teampotato.redirector.Redirector/]: Redirecting com/mojang/realmsclient/util/LevelType [28Apr2025 20:00:02.674] [Render thread/INFO] [fr.rakambda.fallingtree.common.network.PacketUtils/]: Disconnected from server, resetting proxy config values [28Apr2025 20:00:02.675] [Render thread/INFO] [inventoryhud/]: Curios disabled [28Apr2025 20:00:02.691] [Render thread/INFO] [Entity Texture Features/]: [ETF]: emissive suffixes loaded: {_e}. [28Apr2025 20:00:02.693] [Render thread/INFO] [net.minecraft.client.gui.screens.ConnectScreen/]: Connecting to serveurdeladiesman217.bh-games.com, 25565 [28Apr2025 20:00:07.511] [Render thread/INFO] [org.sinytra.connector.mod.compat.RegistryUtil/]: Connector found 9 items to retain in registry minecraft:particle_type [28Apr2025 20:00:08.567] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for netherchested [28Apr2025 20:00:08.569] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for puzzlesapi [28Apr2025 20:00:08.571] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for leavesbegone [28Apr2025 20:00:08.572] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for illagerinvasion [28Apr2025 20:00:08.576] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for easyanvils [28Apr2025 20:00:08.577] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for barteringstation [28Apr2025 20:00:08.583] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for magnumtorch [28Apr2025 20:00:08.587] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for enchantinginfuser [28Apr2025 20:00:08.588] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for tradingpost [28Apr2025 20:00:08.589] [Netty Client IO #14/INFO] [Puzzles Lib/]: Reloading server config for easymagic [28Apr2025 20:00:08.966] [Render thread/INFO] [Framework/]: Loading synced config from server: backpacked:server [28Apr2025 20:00:09.210] [Netty Client IO #14/INFO] [net.minecraftforge.network.NetworkHooks/]: Connected to a modded server. [28Apr2025 20:00:09.210] [Netty Client IO #14/INFO] [snownee.kiwi.Kiwi/]: Canceling Microsoft telemetry [28Apr2025 20:00:09.307] [Render thread/INFO] [xaero.map.WorldMap/]: New world map session initialized! [28Apr2025 20:00:09.310] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: New Xaero hud session initialized! [28Apr2025 20:00:09.359] [Render thread/INFO] [Oculus/]: Reloading pipeline on dimension change: NamespacedId{namespace='minecraft', name='overworld'} => NamespacedId{namespace='minecraft', name='overworld'} [28Apr2025 20:00:09.359] [Render thread/INFO] [Oculus/]: Destroying pipeline NamespacedId{namespace='minecraft', name='overworld'} [28Apr2025 20:00:09.359] [Render thread/INFO] [Oculus/]: Creating pipeline for dimension NamespacedId{namespace='minecraft', name='overworld'} [28Apr2025 20:00:09.375] [Render thread/INFO] [ChunkBuilder/]: Started 10 worker threads [28Apr2025 20:00:09.392] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.client.event.ClientPlayerNetworkEvent$LoggingIn [28Apr2025 20:00:09.392] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from DISABLED to ENABLED [28Apr2025 20:00:09.403] [Render thread/INFO] [voicechat/]: [voicechat] Sending secret request to the server [28Apr2025 20:00:09.433] [Render thread/INFO] [Sound Physics - General/]: Initializing sound physics for voice chat audio [28Apr2025 20:00:09.433] [Render thread/INFO] [Sound Physics - General/]: Initializing Sound Physics [28Apr2025 20:00:09.433] [Render thread/INFO] [Sound Physics - General/]: EFX Extension recognized [28Apr2025 20:00:09.433] [Render thread/INFO] [Sound Physics - General/]: Max auxiliary sends: 2 [28Apr2025 20:00:09.434] [Render thread/INFO] [Sound Physics - General/]: Aux slot 1 created [28Apr2025 20:00:09.434] [Render thread/INFO] [Sound Physics - General/]: Aux slot 2 created [28Apr2025 20:00:09.434] [Render thread/INFO] [Sound Physics - General/]: Aux slot 3 created [28Apr2025 20:00:09.434] [Render thread/INFO] [Sound Physics - General/]: Aux slot 4 created [28Apr2025 20:00:09.435] [Render thread/INFO] [Sound Physics - General/]: EFX ready [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:snowy_mountains' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:snowy_tundra' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:wooded_mountains' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:snowy_taiga_mountains' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:gravelly_mountains' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:wooded_hills' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:mountain_edge' [28Apr2025 20:00:09.444] [Render thread/WARN] [Continuity/]: Unknown biome 'minecraft:mountains' [28Apr2025 20:00:09.444] [Render thread/INFO] [org.betterx.worlds.together.util.Logger/]: [bclib] Auto-Sync was disabled on the client. [28Apr2025 20:00:09.475] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved ToolHandleTypeManager from the server [28Apr2025 20:00:09.476] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved SnowcapOvenFreezingManager from the server [28Apr2025 20:00:09.476] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved HorizoniteForgeFuelManager from the server [28Apr2025 20:00:09.476] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved AlchemyRecipeManager from the server [28Apr2025 20:00:09.476] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved JournalEntryManager from the server [28Apr2025 20:00:09.477] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved JournalSectionManager from the server [28Apr2025 20:00:09.477] [Render thread/INFO] [ModdingLegacy/blue_skies/]: Recieved JournalRequirementManager from the server [28Apr2025 20:00:09.480] [Render thread/INFO] [Supplementaries/]: Synced Flute Songs [28Apr2025 20:00:09.480] [Render thread/INFO] [Supplementaries/]: Synced Captured Mobs settings [28Apr2025 20:00:09.480] [Render thread/INFO] [Supplementaries/]: Synced Globe data [28Apr2025 20:00:09.480] [Render thread/INFO] [Supplementaries/]: Synced Hourglass data [28Apr2025 20:00:09.480] [Render thread/INFO] [placebo/]: Starting sync for enchanting_stats [28Apr2025 20:00:09.481] [Render thread/INFO] [Apotheosis : Enchantment/]: Registered 39 enchanting_stats. [28Apr2025 20:00:09.481] [Render thread/INFO] [placebo/]: Starting sync for rarities [28Apr2025 20:00:09.482] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 9 rarities. [28Apr2025 20:00:09.482] [Render thread/INFO] [placebo/]: Starting sync for affixes [28Apr2025 20:00:09.490] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 179 affixes. [28Apr2025 20:00:09.491] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:charmRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:braceletRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:scrollRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:an_focusRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:necklaceRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:ringRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:spellstoneRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:talismanRequired: 3; Provided: 2 [28Apr2025 20:00:09.492] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:uncommon for category curios:beltRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:charmRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:braceletRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:scrollRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:an_focusRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:necklaceRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:ringRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:spellstoneRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:talismanRequired: 3; Provided: 2 [28Apr2025 20:00:09.493] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:rare for category curios:beltRequired: 3; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:charmRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:braceletRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:scrollRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:an_focusRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:necklaceRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:ringRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:spellstoneRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:talismanRequired: 4; Provided: 2 [28Apr2025 20:00:09.494] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:epic for category curios:beltRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:charmRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:braceletRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:scrollRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:an_focusRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:necklaceRequired: 4; Provided: 2 [28Apr2025 20:00:09.497] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:ringRequired: 4; Provided: 2 [28Apr2025 20:00:09.498] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:spellstoneRequired: 4; Provided: 2 [28Apr2025 20:00:09.498] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:talismanRequired: 4; Provided: 2 [28Apr2025 20:00:09.498] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:mythic for category curios:beltRequired: 4; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category helmetRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category chestplateRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category leggingsRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category bootsRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category shieldRequired: 5; Provided: 4 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:charmRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:braceletRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:scrollRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:an_focusRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:necklaceRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:ringRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:spellstoneRequired: 5; Provided: 2 [28Apr2025 20:00:09.500] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:talismanRequired: 5; Provided: 2 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:beltRequired: 5; Provided: 2 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:backRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:feetRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:headRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:bodyRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category curios:handsRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category bowRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category crossbowRequired: 5; Provided: 4 [28Apr2025 20:00:09.501] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheotic_additions:esoteric for category heavy_weaponRequired: 5; Provided: 3 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category shieldRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:charmRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:braceletRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:scrollRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:an_focusRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:necklaceRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:ringRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:spellstoneRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:talismanRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:beltRequired: 5; Provided: 2 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:backRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:feetRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:headRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:bodyRequired: 5; Provided: 4 [28Apr2025 20:00:09.502] [Render thread/WARN] [Apotheosis : Adventure/]: Insufficient number of affixes to satisfy the loot rules (ignoring backup rules) of rarity apotheosis:ancient for category curios:handsRequired: 5; Provided: 4 [28Apr2025 20:00:09.503] [Render thread/INFO] [placebo/]: Starting sync for gems [28Apr2025 20:00:09.523] [Render thread/INFO] [Apotheosis : Adventure/]: Registered 57 gems. [28Apr2025 20:00:09.687] [Render thread/INFO] [inventoryhud/]: Curios has been initialized with 20 slot(s) after 1 tries [28Apr2025 20:00:10.042] [Netty Client IO #14/WARN] [net.minecraftforge.network.filters.VanillaPacketSplitter/]: forge:split received out of order - inbound buffer not empty when receiving first [28Apr2025 20:01:57.187] [Render thread/INFO] [xaero.map.WorldMap/]: Finalizing world map session... [28Apr2025 20:01:57.187] [Thread-42/INFO] [xaero.map.WorldMap/]: World map force-cleaned! [28Apr2025 20:01:57.208] [Render thread/INFO] [xaero.map.WorldMap/]: World map session finalized. [28Apr2025 20:01:57.208] [Render thread/INFO] [xaero.hud.minimap.MinimapLogs/]: Xaero hud session finalized. [28Apr2025 20:01:57.209] [Render thread/INFO] [fr.rakambda.fallingtree.common.network.PacketUtils/]: Disconnected from server, resetting proxy config values [28Apr2025 20:01:57.211] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver received class net.minecraftforge.client.event.ClientPlayerNetworkEvent$LoggingOut [28Apr2025 20:01:57.211] [Render thread/INFO] [mezz.jei.forge.startup.StartEventObserver/]: JEI StartEventObserver transitioning state from ENABLED to DISABLED [28Apr2025 20:01:57.212] [Render thread/INFO] [inventoryhud/]: Curios disabled [28Apr2025 20:01:57.212] [Render thread/INFO] [Framework/]: Unloading synced configs from server [28Apr2025 20:01:57.212] [Render thread/INFO] [Framework/]: Sending config unload event for backpacked.server.toml [28Apr2025 20:01:57.228] [Render thread/INFO] [voicechat/]: [voicechat] Clearing audio channels [28Apr2025 20:01:58.187] [Render thread/INFO] [ChunkBuilder/]: Stopping worker threads [28Apr2025 20:01:58.195] [Render thread/INFO] [Entity Texture Features/]: [ETF]: emissive suffixes loaded: {_e}. [28Apr2025 20:01:58.196] [Render thread/INFO] [HammerLib/]: Reset 0 configs to their client-side state. [28Apr2025 20:02:03.657] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! [28Apr2025 20:02:03.973] [Render thread/INFO] [fr.rakambda.fallingtree.common.network.PacketUtils/]: Disconnected from server, resetting proxy config values [28Apr2025 20:02:03.976] [Render thread/INFO] [inventoryhud/]: Curios disabled [28Apr2025 20:02:03.984] [Render thread/INFO] [Entity Texture Features/]: [ETF]: emissive suffixes loaded: {_e}.    
    • mouseclicked event handler again. https://paste.ee/p/p5C057U7
    • I don't think so You also can work with adding mods groups - so add 5 to 10 mods and remember these - if the game crash, check these mods   You can also add crash-reports here with sites like https://mclo.gs/ You will find these in the crash-report folder - if there is no crash-report, use the latest.log from the logs folder
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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