Jump to content

[1.17.1] Player capabilities are invalidated on death before they can be copied


Recommended Posts

Posted

When a player dies, and I attempt to copy my custom capabilities data from the original player object to the new player object in the PlayerEvent.Clone event, the getOriginal().getCapability method is not giving me the capability. Upon further inspection in the Debugger, the capability is marked as invalid. Specifically, event.original.capabilities.caps[0].mycapabilityLazyOptional.isValid = false. This is unique to 1.17.1. In 1.16.5, with the same code isValid = true, and the data is copied as expected.

All other functionality seems to be working fine in 1.17.1. Data is being saved when a player leaves and rejoins, and can be found in their player data file NBT. It can be queried by other methods and classes while the player is alive. It is only on death that the capability data of the original player object can not be retrieved.

Do we need to take a different approach in 1.17.1 or is something not working as expected?

Posted

Thanks! I think I'm not fully understanding how to implement this, though. Calling reviveCaps() on the original player object does not validate the capabilities. It looks like I need to call reviveCaps() on the provider, but I'm not sure how to do that in this context.

Posted

Yes this is intentional.
The system we had before is no longer valid for the way Mojang designed the code in 1.17.
Modders now have to explicitly revive and then invalidate their entities as designed in my commit.

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

Posted

That doesn't seem to work unless I'm doing it incorrectly:

    @SubscribeEvent
    public void onPlayerDeath(PlayerEvent.Clone event)
    {
        if (event.getEntity() instanceof Player playerEntity) {

            event.getOriginal().reviveCaps();
            event.getOriginal().getCapability(CapabilityNutritionalBalancePlayer.HEALTHY_DIET_PLAYER_CAPABILITY).ifPresent(originalInutritionalbalancePlayer -> {

                playerEntity.getCapability(CapabilityNutritionalBalancePlayer.HEALTHY_DIET_PLAYER_CAPABILITY).ifPresent(newInutritionalbalancePlayer -> {


                  . . . .

                });

            });
            event.getOriginal().invalidateCaps();
        }

    }

After running event.getOriginal().reviveCaps(), the caps are still invalid, so the lambda code is never executed.

Similarly for dimension changes:

    @SubscribeEvent
    public void onDimensionChange (PlayerEvent.PlayerChangedDimensionEvent event){
        event.getEntity().reviveCaps();
    }

The caps are still invalid after executing this.

Am I doing something wrong?

Posted

Then your provider is not returning a valid cap. Use your IDE's debugging tools to figure out why your code is not returning the value you think it is.

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

Posted

My provider is returning a valid cap in every other circumstance though. Just not during cloning or dimension changes. Data is saved on leave and rejoin. GUI elements that query the caps are working as expected. Other events that are taking actions based on values within the caps are working.

In the debugger, I can see all the data in my cap in the 2 above scenarios. It is exactly what it's supposed to be, but
event.entity.capabilities.caps[0].nutritionalBalanceLazyOptional.isValid = false
and it remains so after calling reviveCaps().

Other than that, the debugger is showing that all the other data is exactly what it's supposed to be. What would cause isValid to be false?

Posted

It might help to add that when I check the player object at any other point, such as when opening the mod's GUI, nutritionalBalanceLazyOptional.isValid = true. So, I'm guessing it's being invalidated by the death and dimension change, and reviveCaps() is not changing that. Based on my understanding of the commit you referenced above, reviveCaps() is supposed to change that to true. Right?

  • 2 weeks later...
Posted

Can someone confirm that Player.reviveCaps() does, indeed, restore capabilities attached to the player? This does not appear to be happening in my case. I have thoroughly debugged my code (otherwise I would not have opened this thread), and the only issue appears to be that LazyOptional.isValid becomes false on death and dimension change, and this is not changed to true when calling reviveCaps().

In short, reviveCaps is not doing what I think it's supposed to do. So, either it's not working correctly, or I am misunderstanding how it's supposed to work.

  • 4 weeks later...
Posted

As far as I know, no solution has been found. I might need to open an issue on the MinecraftForge GitHub.

I have a couple questions for you just to make sure we're both dealing with the same issue:

Are your capabilities working when the player leaves and rejoins?
Have you also tried using reviveCaps() with no success?
Is your code posted publicly or can you share an excerpt of your PlayerEvent.Clone event?

  • 3 weeks later...
Posted

The reviveCaps() worked for me. I'm using forge 37.0.67.

My Clone Event:

public static void onDeath(PlayerEvent.Clone event) {
    if (event.isWasDeath()) {
        event.getOriginal().reviveCaps();
        event.getOriginal().getCapability(ModCapabilityImpl.MOD_CAPABILITY).ifPresent(oldStore -> {
            event.getEntity().getCapability(ModCapabilityImpl.MOD_CAPABILITY).ifPresent(newStore -> {
               newStore.copyForRespawn((ModCapabilityImpl) oldStore);
            });
        });
        event.getOriginal().invalidateCaps();
    }
}

In my IModCapability:

void copyForRespawn(ModCapabilityImpl oldStore);

In my ModCapabilityImpl:

@Override
public void copyForRespawn(ModCapabilityImpl oldStore) {
	this.value = oldStore.value;
}

Hope this helps!

  • Thanks 2
Posted
  On 10/6/2021 at 9:20 PM, DaqEm said:

The reviveCaps() worked for me. I'm using forge 37.0.67.

Expand  

Interesting. Thanks for sharing that. I haven't tested it since 37.0.30. I ended up changing over to SaveData. It's much simpler to work with, gives me a lot more control, and I don't have to worry as much about it breaking every time Minecraft updates. The only drawback is that the data will persist even if player data files are deleted. They would have to delete the custom data file instead. I don't think that's a big issue, especially given that the tradeoff is that the data also persist through death, dimension changes or whatever without having to play any dirty tricks.

  • 1 month later...
Posted
  On 9/21/2021 at 1:17 PM, Danny and Son said:

As far as I know, no solution has been found. I might need to open an issue on the MinecraftForge GitHub.

I have a couple questions for you just to make sure we're both dealing with the same issue:

Are your capabilities working when the player leaves and rejoins?
Have you also tried using reviveCaps() with no success?
Is your code posted publicly or can you share an excerpt of your PlayerEvent.Clone event?

Expand  

The information is saved if I add listeners in AttachCapabilitiesEvent:

event.addCapability(key, provider);
event.addListener(provider.capOptional::invalidate);

However, I get NullPointerException when going from dimension to dimension at this line in EntityJoinWorldEvent.

player.getCapability(MistCaps.CAPABILITY_MIST).orElseThrow(() -> new NullPointerException("Player has no mist capability"));

If I do not add listeners, then everything works fine when changing the dimension, but the information is not saved when I restart the game.

Of course I have tried using reviveCaps(). No result.

Sorry, I don't speak English very well...

Posted (edited)

But how can I save information when restarting the game?

I use this example:

https://github.com/VazkiiMods/Botania/blob/0c1138252901ea646f6f97f9427f62ccd258e9d3/src/main/java/vazkii/botania/common/capability/SimpleCapProvider.java#L42

public class SimpleCapProvider<C extends INBTSerializable<CompoundTag>> implements ICapabilityProvider, INBTSerializable<CompoundTag> {

	private final C instance;
	private final LazyOptional<C> capOptional;
	private final Capability<C> capa;
	
	public SimpleCapProvider(Capability<C> capa, NonNullSupplier<C> instance) {
		this.capa = capa;
		this.instance = instance.get();
		this.capOptional = LazyOptional.of(instance);
	}

	@Nonnull
	@Override
	public <T> LazyOptional<T> getCapability(@Nonnull Capability<T> cap, @Nullable Direction side) {
		return capa.orEmpty(cap, capOptional);
	}

	@Override
	public CompoundTag serializeNBT() {
		return this.instance.serializeNBT();
	}

	@Override
	public void deserializeNBT(CompoundTag nbt) {
		this.instance.deserializeNBT(nbt);
	}

	public static <C extends INBTSerializable<CompoundTag>> void attach(AttachCapabilitiesEvent<?> event, ResourceLocation key, Capability<C> cap, NonNullSupplier<C> capInstance) {
		SimpleCapProvider<C> provider = new SimpleCapProvider<>(cap, capInstance);
		event.addCapability(key, provider);
		//event.addListener(provider.capOptional::invalidate); //TODO Capa invalidate
	}
}

And this is my capa registration

public class MistCaps {

	@CapabilityInject(IMistCapaHandler.class)
	public static Capability<IMistCapaHandler> CAPABILITY_MIST;

	@CapabilityInject(ISkillCapaHandler.class)
	public static Capability<ISkillCapaHandler> CAPABILITY_SKILL;

	@CapabilityInject(IFoodHandler.class)
	public static Capability<IFoodHandler> CAPABILITY_FOOD;

	private static final List<CapaEntry<? extends INBTSerializable<CompoundTag>>> capaList = Lists.newArrayList();

	public static void init(RegisterCapabilitiesEvent event) {
		register(event, "player_capa", IMistCapaHandler.class, () -> CAPABILITY_MIST, MistCapaHandler::new);
		register(event, "skill_capa", ISkillCapaHandler.class, () -> CAPABILITY_SKILL, SkillCapaHandler::new);
		register(event, "food_capa", IFoodHandler.class, () -> CAPABILITY_FOOD, FoodCapaHandler::new);
		Mist.LOGGER.info("Misty caps has been registered!");
	}

	//////////////////////////////////////////////////////// MAGIC ////////////////////////////////////////////////////////

	private static <C extends INBTSerializable<CompoundTag>> void register(RegisterCapabilitiesEvent event, String name, Class<C> clazz, NonNullSupplier<Capability<C>> capa, NonNullSupplier<C> instance) {
		event.register(clazz);
		capaList.add(new CapaEntry<C>(Mist.resLoc(name), capa, instance));
	}

	@SubscribeEvent
	public void attachCapabilitiesPlayer(AttachCapabilitiesEvent<Entity> event) {
		if (event.getObject() instanceof Player) capaList.forEach(entry -> attach(event, entry));
	}

	@SubscribeEvent
	public void cloneCapabilitiesEvent(PlayerEvent.Clone event) {
		capaList.forEach(entry -> clone(event, entry));
	}

	private static <C extends INBTSerializable<CompoundTag>> void attach(AttachCapabilitiesEvent<?> event, CapaEntry<C> entry) {
		SimpleCapProvider.attach(event, entry.res, entry.capa.get(), entry.instance);
		if (event.getCapabilities().get(entry.res) == null) {
			Mist.LOGGER.error("Player didn't attach [" + entry.capa.get().getName() + "] capa");
		} else Mist.LOGGER.info("Player has attached [" + entry.capa.get().getName() + "] capa");
	}

	private static <C extends INBTSerializable<CompoundTag>> void clone(PlayerEvent.Clone event, CapaEntry<C> entry) {
		try {
			//event.getOriginal().reviveCaps();
			C original = event.getOriginal().getCapability(entry.capa.get()).orElseThrow(NullPointerException::new);
			CompoundTag nbt = original.serializeNBT();
			C clone = event.getPlayer().getCapability(entry.capa.get()).orElseThrow(NullPointerException::new);
			clone.deserializeNBT(nbt);
			//event.getOriginal().invalidateCaps();
		} catch (Exception e) {
			Mist.LOGGER.error("Could not clone capability [" + entry.capa.get().getName() + "] when player [" + event.getOriginal().getName() + "] changing dimensions");
		}
	}

	private static class CapaEntry<C extends INBTSerializable<CompoundTag>> {

		private final ResourceLocation res;
		private final NonNullSupplier<C> instance;
		private final NonNullSupplier<Capability<C>> capa;
		
		public CapaEntry(ResourceLocation res, NonNullSupplier<Capability<C>> capa, NonNullSupplier<C> instance) {
			this.res = res;
			this.instance = instance;
			this.capa = capa;
		}
	}
}

 

Edited by Liahim

Sorry, I don't speak English very well...

Posted (edited)
  On 11/17/2021 at 8:12 PM, Luis_ST said:

you still save infos, in your SimpleCapProvider via the implementation of INBTSerializable (#serializeNBT and #deserializeNBT)

Expand  

But capa didn't save during restarting the game.

  On 11/17/2021 at 8:24 PM, Danny and Son said:

Is your init function being called? It doesn't look like your subscribing to RegisterCapabilitiesEvent.

Expand  

All events are subscribed in my main class. As I wrote in this message 

All methods work fine and information is saved when I use event.addListener(provider.capOptional::invalidate); 

But I am getting NullPointerException when going from dimension to dimension when trying to get a cap on the EntityJoinWorldEvent.

Edited by Liahim

Sorry, I don't speak English very well...

Posted
  On 11/17/2021 at 6:24 PM, Liahim said:
		register(event, "player_capa", IMistCapaHandler.class, () -> CAPABILITY_MIST, MistCapaHandler::new);
		register(event, "skill_capa", ISkillCapaHandler.class, () -> CAPABILITY_SKILL, SkillCapaHandler::new);
		register(event, "food_capa", IFoodHandler.class, () -> CAPABILITY_FOOD, FoodCapaHandler::new);
Expand  

show one of these CapaHandlers (the implementation not the interface)

Posted
public class MistCapaHandler extends ItemStackHandler implements IMistCapaHandler {

	private Player player;
	private int pollution;
	private int toxic;

	public MistCapaHandler() {}

	// ...

	@Override
	public CompoundTag serializeNBT() {
		CompoundTag nbt = super.serializeNBT();
		nbt.putInt("Pollution", this.pollution);
		nbt.putInt("Toxic", this.toxic);
		return nbt;
	}

	@Override
	public void deserializeNBT(CompoundTag nbt) {
		super.deserializeNBT(nbt);
		this.pollution = nbt.getInt("Pollution");
		this.toxic = nbt.getInt("Toxic");
	}
 
    // ...
}

 

Sorry, I don't speak English very well...

Posted

I fixed it!
The point was that I worked with different instances of the cap in this place:

public SimpleCapProvider(Capability<C> capa, NonNullSupplier<C> instance) {
	this.capa = capa;
	this.instance = instance.get();
	this.capOptional = LazyOptional.of(instance); // <-----------
}

But this is correct:

public SimpleCapProvider(Capability<C> capa, NonNullSupplier<C> instance) {
	this.capa = capa;
	this.instance = instance.get();
	this.capOptional = LazyOptional.of(() -> this.instance); // <-----------
}

Sorry, I don't speak English very well...

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

    • 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
    • Thank you so much for the help, it works! o((>ω< ))o Is there any way around this, though? It's a little bit tedious having to slowly download mods one by one, and waiting on them to download to download another one lol.
    • Never mind, I figured it out. I already have "allow content management" enabled though.
  • Topics

×
×
  • Create New...

Important Information

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