Search the Community
Showing results for tags '1.19.2'.
-
I have been wasting several days of my life trying to get this dumb code to work, but it just won't work the way I want it to no matter how I do it. I am trying to make a system where the player gets certain attribute modifiers based off a data-driven system if they have certain items equipped. Here's the class: (No this has nothing to do with the vanilla statistics system you can view in the pause menu.) package everyblu.greateradv.common.events; import com.google.common.collect.ArrayListMultimap; import com.google.common.collect.Multimap; import everyblu.greateradv.GreaterAdventuresMod; import everyblu.greateradv.common.entities.mobs.NetherPaladin; import everyblu.greateradv.common.init.InitEntityTypes; import everyblu.greateradv.common.systems.statistics.Statistics; import everyblu.greateradv.common.systems.statistics.StatisticsManager; import everyblu.greateradv.common.utils.StatisticsAttributeUtils; import net.minecraft.world.entity.ai.attributes.Attribute; import net.minecraft.world.entity.ai.attributes.AttributeModifier; import net.minecraft.world.entity.ai.attributes.Attributes; import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.ItemStack; import net.minecraftforge.event.TickEvent; import net.minecraftforge.event.entity.EntityAttributeCreationEvent; import net.minecraftforge.event.entity.player.PlayerEvent; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.fml.common.Mod; public class CommonEvents { @Mod.EventBusSubscriber(modid = GreaterAdventuresMod.MOD_ID, bus = Mod.EventBusSubscriber.Bus.FORGE) public static class ForgeEvents { @SubscribeEvent public static void playerPopulateStatisticsAttributes(PlayerEvent.PlayerRespawnEvent event) { if (event.isEndConquered()) {return;} // Pretty sure the player keeps their stuff after conquering the end, so skip this event if that happens. event.getEntity().getAttribute(Attributes.MAX_HEALTH).addTransientModifier(StatisticsAttributeUtils.getStatisticsModifierForAttribute(Attributes.MAX_HEALTH, 0)); } @SubscribeEvent public static void itemStatisticsEquipmentHandler(TickEvent.PlayerTickEvent event) { Player player = event.player; if (event.phase == TickEvent.Phase.START) { float totalMaxHealthBonus = 0; float totalKnockbackResistanceBonus = 0; float totalArmorBonus = 0; float totalArmorToughnessBonus = 0; float totalAttackDamageBonus = 0; for (ItemStack stack : player.getAllSlots()) { if (stack.isEmpty()) {continue;} Statistics itemStatistics = StatisticsManager.Registry.getItemStatsManagerInstance().getStatisticsForItem(stack.getItem()); if (itemStatistics == null) {continue;} if (itemStatistics.maxHealthStat() != null) {totalMaxHealthBonus += itemStatistics.maxHealthStat().getValue();} if (itemStatistics.knockbackResistanceStat() != null) {totalKnockbackResistanceBonus += itemStatistics.knockbackResistanceStat().getValue();} if (itemStatistics.armorStat() != null) {totalArmorBonus += itemStatistics.armorStat().getValue();} if (itemStatistics.armorToughnessStat() != null) {totalArmorToughnessBonus += itemStatistics.armorToughnessStat().getValue();} if (itemStatistics.attackDamageStat() != null) {totalAttackDamageBonus += itemStatistics.attackDamageStat().getValue();} } Multimap<Attribute,AttributeModifier> oldModifiers = ArrayListMultimap.create(); oldModifiers.put(Attributes.MAX_HEALTH, player.getAttribute(Attributes.MAX_HEALTH).getModifier(StatisticsAttributeUtils.MAX_HEALTH_UUID)); Multimap<Attribute, AttributeModifier> newModifiers = ArrayListMultimap.create(); newModifiers.put(Attributes.MAX_HEALTH, StatisticsAttributeUtils.getStatisticsModifierForAttribute(Attributes.MAX_HEALTH, totalMaxHealthBonus)); player.getAttributes().removeAttributeModifiers(newModifiers); player.getAttributes().addTransientAttributeModifiers(newModifiers); } } } @Mod.EventBusSubscriber(modid = GreaterAdventuresMod.MOD_ID, bus = Mod.EventBusSubscriber.Bus.MOD) public static class ModEvents { @SubscribeEvent public static void initEntityAttributes(EntityAttributeCreationEvent event) { event.put(InitEntityTypes.NETHER_PALADIN.get(), NetherPaladin.createAttributes().build()); } } } StatisticsAttributeUtils: package everyblu.greateradv.common.utils; import net.minecraft.world.entity.ai.attributes.Attribute; import net.minecraft.world.entity.ai.attributes.AttributeModifier; import net.minecraft.world.entity.ai.attributes.Attributes; import java.util.HashMap; import java.util.Map; import java.util.UUID; public class StatisticsAttributeUtils { public static final UUID MAX_HEALTH_UUID = UUID.fromString("e67a8b8e-5e17-439b-84fc-89b33aaabfbf"); public static final UUID KNOCKBACK_RESISTANCE_UUID = UUID.fromString("c53f398b-1e6f-47e2-9a37-7b85edc02161"); public static final UUID ARMOR_UUID = UUID.fromString("9ef4377c-48b2-43df-ab1d-276abbc2331a"); public static final UUID ARMOR_TOUGHNESS_UUID = UUID.fromString("96f6e24e-227e-48f2-aafc-8e60554d9d97"); public static final UUID ATTACK_DAMAGE_UUID = UUID.fromString("02075396-74b1-486d-99be-4dfe5d20d6d9"); private static final Map<Attribute, UUID> ATTRIBUTE_TO_UUID = new HashMap<>(); static { ATTRIBUTE_TO_UUID.put(Attributes.MAX_HEALTH, MAX_HEALTH_UUID); ATTRIBUTE_TO_UUID.put(Attributes.KNOCKBACK_RESISTANCE, KNOCKBACK_RESISTANCE_UUID); ATTRIBUTE_TO_UUID.put(Attributes.ARMOR, ARMOR_UUID); ATTRIBUTE_TO_UUID.put(Attributes.ARMOR_TOUGHNESS, ARMOR_TOUGHNESS_UUID); ATTRIBUTE_TO_UUID.put(Attributes.ATTACK_DAMAGE, ATTACK_DAMAGE_UUID); } public static AttributeModifier getStatisticsModifierForAttribute(Attribute attribute, float amount) { UUID uuid = ATTRIBUTE_TO_UUID.get(attribute); return new AttributeModifier(uuid, "itemStatistics " + attribute + "Modifier", amount, AttributeModifier.Operation.ADDITION); } } Let me know if you need to see more code. Any help is highly appreciated.
-
Hi, I have a Forge 1.19.2 modpack, but I am experiencing a problem. When I hover the cursor over an object such as an axe or sword, I see two lines of information. The first line shows the item's damage and attack speed in the form of a number, while in the second line I again see the damage in the form of a number but the attack speed expressed in words (such as "fast" or "slow") and durability with an anvil icon next to it. Could you help me identify which mods are responsible for this information? Here is the list of mods: 19-infinitypickaxe_1.9.3.jar adaptive_performance_tweaks_core_1.19.2-10.2.0.jar adaptive_performance_tweaks_items_1.19.2-10.0.0.jar adaptive_performance_tweaks_mods_1.19.2-10.0.0.jar adaptive_performance_tweaks_player_1.19.2-10.0.0.jar adaptive_performance_tweaks_spawn_1.19.2-10.2.0.jar advancednetherite-1.14.7-1.19.2.jar AdvancementPlaques-1.19.2-1.4.7.jar aether-1.19.2-1.3.1-forge.jar AI-Improvements-1.19.2-0.5.2.jar Alex's Mobs Music Mod.jar alexsdelight-1.4.1.jar alexsmobs-1.21.1.jar alltheores-2.0.2-1.19.2-43.1.3.jar AmbientEnvironment-forge-1.19.2-8.0+3.jar AmbientSounds_FORGE_v5.2.13_mc1.19.2.jar AngelRing2-1.19.2-2.1.8.jar antighost-1.19.1-forge42.0.1-1.1.3.jar antique_pickaxe_V0.9.1.jar AnvilNeverTooExpensive-1.19-1.1.jar appleskin-forge-mc1.19-2.4.2.jar Aquaculture-1.19.2-2.4.8.jar Aquamirae Mod EXTRA Music.jar aquamirae-6.API15.jar arcane_abilities-0.1.9-1.19.2.jar archaeology-api-1.19.2-1.0.0.jar architectury-6.6.92-forge.jar ArmorSoundTweak-6.0.0-forge.jar ars_creo-1.19.2-3.2.1.jar ars_elemental-1.19.2-0.5.9.4.jar ars_nouveau-1.19.2-3.23.0.jar artifacts-1.19.2-5.0.5.jar Astral_1.6.3_1.19.2.jar AttributeFix-Forge-1.19.2-17.2.8.jar AutoLeveling-1.19.2-1.19b.jar AutoRegLib-1.8.2-55.jar Awakened Bosses 1.0.0 - 1.19.2.jar awesomedungeon-forge-1.19.2-3.2.0.jar awesomedungeonend-forge-1.19.2-3.1.1.jar awesomedungeonnether-forge-1.19.2-3.1.1.jar awesomedungeonocean-forge-1.19.2-3.3.0.jar azurelib-forge-1.19.2-1.0.41.jar BadMobs-1.19.2-16.1.3.jar BadOptimizations-2.1.0.jar balm-forge-1.19.2-4.6.0.jar bbs-1.19.2-1.1.0-forge.jar Better Cave Dweller-1.19.2.jar BetterAdvancements-1.19.2-0.2.2.142.jar betterchunkloading-1.19.2-2.5.jar betterfpsdist-1.19.2-4.1.jar BetterThirdPerson-Forge-1.19-1.9.0.jar BetterTridents-v4.0.2-1.19.2-Forge.jar blueprint-1.19.2-6.2.0.jar BOMD-Forge-1.19.2-1.0.6.jar Bookshelf-Forge-1.19.2-16.3.20.jar born_in_chaos_[Forge]1.19.2_1.10.1.jar Bossominium-U-18-1.19.2.jar BowInfinityFix-1.19.x-forge-2.5.1.jar brutalbosses-1.19.2-6.8.jar bygonenether-1.3.2-1.19.2.jar caelus-forge-1.19.2-3.0.0.6.jar canary-mc1.19.2-0.3.3.jar cant_sleep_clowns_will_eat_me-1.19.2-1.1.0.0.jar Cave Dweller Reimagined.jar celestisynth-1.19.2-1.1.5.jar chat_heads-0.10.32-forge-1.19.2.jar chunksending-1.19.2-2.8.jar ciscos_armoury_4.7.jar cisco_mod_7.5.jar citadel-2.1.4-1.19.jar cleargpucache-1.0.1.jar cloth-config-8.3.115-forge.jar Clumps-forge-1.19.2-9.0.0+14.jar collective-1.19.2-7.40.jar configured-2.1.1-1.19.2.jar connectivity-1.19.2-4.6.jar CorgiLib-forge-1.19.2-1.0.0.34.jar coroutil-forge-1.19.2-1.3.6.jar corpse-forge-1.19.2-1.0.12.jar corpse_stalker-1.19.2-By FlamcO4.jar CosmeticArmorReworked-1.19.2-v1a.jar Craftable Horse Armour Saddle-1.19-1.9.jar crafting-on-a-stick-1.19.2-1.1.2.jar create-1.19.2-0.5.1.f.jar CreativeCore_FORGE_v2.9.4_mc1.19.2.jar CTM-1.19.2-1.1.6+8.jar Cucumber-1.19.2-6.0.10.jar CullLessLeaves-Reforged-1.0.5.jar cupboard-1.19.2-2.6.jar curios-forge-1.19.2-5.1.6.1.jar Dangers in the Darkness_1.0.33_Forge_1.19.2.jar DarkerDepths-1.19.2-1.0.0.jar DarkPaintings-Forge-1.19.2-13.1.5.jar Deep Dark Regrowth 1.2.5.0.jar deeperdarker-forge-1.19.2-1.2.2.jar Delightful-1.19.2-3.4.1.jar despawn_tweaker-1.19.2-1.0.0.jar deuf-1.19.2-1.3.jar dimdungeons-179-forge-1.19.0.jar dimensionalsycnfixes-1.19.2-0.0.1.jar doespotatotick-1.19.2-4.0.2.jar dragonfight-1.19.2-4.4.jar dragonseeker-1.2.0-1.19.2.jar dreadsteel-1.19.2-1.1.6.jar DripSounds-1.19-0.3.0.jar DungeonsArise-1.19.2-2.1.54-release.jar DungeonsAriseSevenSeas-1.19.2-1.0.2-forge.jar dungeons_enhanced-1.19.2-4.1.jar durabilitytooltip-1.1.5-forge-mc1.19.jar dynamiclights-1.19.2.2.jar dynamiclightsreforged-1.19.2_v1.4.0.jar EasyAnvils-v4.0.11-1.19.2-Forge.jar EasyMagic-v4.3.3-1.19.2-Forge.jar elytraslot-forge-6.1.1+1.19.2.jar embeddium-0.3.12+mc1.19.2.jar embeddiumplus-1.19.2-v1.2.5.jar EnchantingInfuser-v4.2.2-1.19.2-Forge.jar.disabled enchantmenttransfer-0.0.6-1.19.2.jar.disabled endermanoverhaul-forge-1.19.2-0.0.1.jar endersdelight-1.19-1.2.2.jar EndlessBiomes 1.4s - 1.19.2 (Server-friendly).jar endsdelight-1.19.2-1.2.1.jar entityculling-forge-1.6.1-mc1.19.2.jar Entity_Collision_FPS_Fix-forge-1.19-2.0.0.0.jar EquipmentCompare-1.19.2-forge-1.3.2.jar expandability-7.0.0.jar ExperienceBugFix-1.19-1.41.2.3.jar explorify-forge-1.19-1.3.0.jar FallingTree-1.19.2-3.10.1.jar FarmersDelight-1.19.2-1.2.4.jar farsight-1.19.2-3.6.jar fastasyncworldsave-1.19.2-1.2.jar FastLeafDecay-30.jar Fastload-Reforged-mc1.19.2-3.4.0.jar ferritecore-5.0.3-forge.jar fixedanvilrepaircost-1.19.2-3.3.jar FixMySpawnR-forge-1.19.2-1.1.2.jar flickerfix-1.19.1-3.1.0.jar ftb-library-forge-1902.4.1-build.236.jar ftb-quests-forge-1902.5.8-build.345.jar ftb-teams-forge-1902.2.14-build.123.jar fusion-1.1.1-forge-mc1.19.2.jar Galosphere-1.19.2-1.3.0-Forge.jar geckolib-fabric-1.16.5-3.0.42.jar geckolib-forge-1.19-3.1.40.jar gpumemleakfix-1.19.2-1.6.jar guardvillagers-1.19.2-1.5.9.jar HammerLib-1.19.2-19.3.76.jar Healing+Bed+1.19.2.jar Highlighter-1.19.1-1.1.4.jar HorseExpert-v4.0.0-1.19.2-Forge.jar hourglass-1.19.1-1.2.1.1.jar humancompanions-1.19.2-1.7.4.jar iceandfire-1.19.2-2.1.13-beta-3.jar Iceberg-1.19.2-forge-1.1.4.jar idas_forge-1.7.7+1.19.2.jar ImmediatelyFast-Forge-1.2.11+1.19.2.jar Immunity Enchantments 1.0.0 - 1.19.2.jar.disabled infernalmobs-1.19.2.4.jar integrated_api_forge-1.2.8+1.19.2.jar integrated_stronghold_forge-1.0.2+1.19.2.jar ironchest-1.19.2-14.2.7.jar ironchests-3.1.3-forge.jar ironfurnaces-1.19.2-3.6.5.jar irons_spellbooks-1.19.2-3.1.2.jar iron_ender_chests-1.19.2-1.0.2.jar item-filters-forge-1902.2.9-build.51.jar ItemProductionLib-1.19.2-1.0.2a-all.jar iterpg-0.5.0-1.19.2.jar Jade-1.19.1-forge-8.9.1.jar JadeAddons-1.19.2-forge-3.6.0.jar jeed-1.19.2-2.1.4.jar jei-1.19.2-forge-11.6.0.1019.jar journeymap-1.19.2-5.9.8-forge.jar JustEnoughResources-1.19.2-1.2.3.243.jar konkrete_forge_1.8.0_MC_1.19-1.19.2.jar kotlinforforge-3.12.0-all.jar KryptonReforged-0.2.1.jar lazydfu-1.19-1.0.2.jar libraryferret-forge-1.19.2-4.0.0.jar libreexpfix-0.2.5+1.18b12-BETA-forge.jar lightspeed-1.19.2-1.0.5.jar limitedchunks-1.19.2-3.9.jar list.txt lootr-forge-1.19-0.4.27.71.jar L_Enders_Cataclysm-1.90 tongue fixed-1.19.2.jar maenchants-1.19.2-6.0.0.jar.disabled majrusz-library-forge-1.19.2-7.0.5-backport.1.jar majruszs-enchantments-forge-1.19.2-1.10.7-backport.1.jar.disabled matc-1.3.1.jar MaxHealthFix-Forge-1.19.2-8.0.2.jar Medieval Decoration Forge v.1.0 1.19.jar memoryleakfix-forge-1.17+-1.0.0.jar memorysettings-1.19.2-5.4.jar merenc-forge-1.20.x-v3.2.jar.disabled Mo'Enchantments-1.19.3-1.9.jar.disabled mobtimizations-forge-1.19.2-1.0.0.jar modernfix-forge-5.15.0+mc1.19.2.jar MonsterPlus-Forge1.19.2-v1.1.6.1.jar moonlight-1.19.2-2.3.6-forge.jar More Villager Trades 1.0.0 - 1.19.2.jar MoreBows-1.0.12+1.19.2.forge.jar morebowsandarrows-2.2.1-1.19.2_forge.jar MoreEnchantments_MC_1.19.2_Vers.1.4.3.jar.disabled morevillagers-forge-1.19-4.0.3.jar MouseTweaks-forge-mc1.19-2.23.jar mowziesmobs-1.6.3.jar MutantMonsters-v4.0.6-1.19.2-Forge.jar mutantmore-1.19.2-early-access-1.0.7.jar MyServerIsCompatible-1.19-1.0.jar MysticalAdaptations-1.19.2-1.0.jar MysticalAgradditions-1.19.2-6.0.3.jar MysticalAgriculture-1.19.2-6.0.14.jar MysticalCustomization-1.19.2-4.0.1.jar Nameless Trinkets-1.19.2-1.7.6.jar nanhealthfixer-1.19.2-0.0.1.jar NekosEnchantedBooks-1.19-1.8.0.jar.disabled neruina-1.3.0-forge+1.18.2-1.20.1.jar NetherChested-v4.0.4-1.19.2-Forge.jar netherdepthsupgrade-3.1.4-1.19.2.jar netherportalfix-forge-1.19-10.0.1.jar NethersDelight-1.19-3.1.jar NEWEST_SPAWN_GOATMAN - 1.19.2 by Flamc04.jar NoFog-1.3.2_1.19.2-forge.jar NoSeeNoTick-2.0.0-1.19.2.jar notenoughanimations-forge-1.7.1-mc1.19.2.jar notenoughcrashes-5.0.0+1.19.2-forge.jar nounusedchunks-1.3.jar obscure_api-15.jar observable-3.3.1.jar octolib-1.19.2-0.3.jar Oh_The_Biomes_You'll_Go-forge-1.19.2-2.0.1.6.jar opoverhaul-1.2.0_forge.jar origins-accessbilities-1.19.2-1.1.1.jar origins-classes-forge-1.2.1.jar origins-forge-1.19.2-1.7.1.4-all.jar origins-plus-plus-2.2-forge.jar PacketFixer-forge-1.19.2-1.2.8.jar PassiveMobs-forge-1.19.2-1.3.1.jar Patchouli-1.19.2-77.jar Pehkui-3.8.0+1.19.2-forge.jar PickUpNotifier-v4.2.4-1.19.2-Forge.jar Ping-Wheel-1.8.0-forge-1.19.2.jar Placebo-1.19.2-7.4.0.jar player-animation-lib-forge-1.0.2.jar potiondescriptions-1.19.2-1.8-forge.jar potionsmaster-0.6.0-1.19.2-43.1.1.jar Prism-1.19.1-1.0.2.jar puffish_skills-0.10.0-1.19.2-forge.jar PuzzlesLib-v4.4.3-1.19.2-Forge.jar Quark-3.4-418.jar radon-0.8.2.jar rare-ice-0.5.1.jar redirector-5.0.0.jar relics-1.19.2-0.6.2.4.jar resourcefulconfig-forge-1.19.2-1.0.20.jar resourcefullib-forge-1.19.2-1.1.24.jar RingOfAttraction-Forge-1.19.2-1.5.4.jar RingOfBlink-Forge-1.19.2-1.5.4.jar RingOfEnderchest-Forge-1.19.2-1.5.5.jar RingOfGrowth-Forge-1.19.2-1.5.4.jar RingOfMiner-Forge-1.19.2-1.5.4.jar RingOfRepair-Forge-1.19.2-1.5.4.jar RingOfReturn-Forge-1.19.2-1.4.4.jar RingOfTeleport-Forge-1.19.2-1.5.4.jar RingOfUnseen-Forge-1.19.2-1.3.4.jar RingsOfAscension-1.19-1.0.1.jar rubidium_extras-1.19.2_v1.4.3.jar saturn-mc1.19.2-0.1.4.jar ScalingHealth-1.19.2-7.0.1+7.jar serializationisbad-1.5.jar servercore-forge-1.3.5+1.19.2.jar shadowizardlib-1.19.2-1.0.8.jar ShieldExpansion-1.19.2-1.1.7a.jar ShinyHorses-1.19-1.2.jar.disabled silent-lib-1.19.2-7.0.3.jar simplyswords-forge-1.47.0-1.19.2.jar skinlayers3d-forge-1.6.2-mc1.19.2.jar SkyVillages-1.0.3-1.19.2-1.20.x-forge-release.jar smallships-forge-1.19.2-2.0.0-b1.1.jar SmartBrainLib-forge-1.19.2-1.9.jar smoothboot(reloaded)-mc1.19.2-0.0.4.jar smoothchunk-1.19.2-3.5.jar sons-of-sins-1.19.2-2.1.6.jar sound-physics-remastered-forge-1.19.2-1.3.1.jar spartanshields-1.19.2-3.0.1.jar stalwart-dungeons-1.19.2-1.2.8.jar strictly_origins_v7_1.19.2.jar structure_gel-1.19.2-2.7.3.jar SuggestionProviderFix-1.19-1.0.0.jar supermartijn642configlib-1.1.8-forge-mc1.19.jar supplementaries-1.19.2-2.4.20.jar swingthroughgrass-1.19.2-1.10.0.jar TerraBlender-forge-1.19.2-2.0.1.136.jar terrariapickaxe-3.0-1fc4.noarch.fpm.jar textrues_embeddium_options-0.1.1+mc1.19.2.jar The Scythe Mod v2.0.8-1.19.2.jar the-conjurer-1.19.2-1.1.5.jar TheOneWhoWatches-V1.3.0-1.19.2.jar thestarvedstalker.jar The_Undergarden-1.19.2-0.8.3.jar timecontrol-1.19.2-1.1.3.1.jar tlc_forge-1.0.2-R-1.19.2.jar toofast-1.19-0.2.2.4.jar ToolStats-Forge-1.19.2-12.1.6.jar tooltipscroller-1.19.2-1.0.0.jar Towns-and-Towers-v.1.10-_FORGE-1.19.2_.jar trashslot-forge-1.19.2-12.1.0.jar TravelersBackpack-1.19.2-8.2.38.jar TravelersTitles-1.19.2-Forge-3.1.2.jar Tumbleweed-forge-1.19.2-0.5.3.jar twilightforest-1.19.2-4.2.1518-universal.jar ultris-v5.6.7f.jar UndeadUnleashed-1.1.1-1.19.2.jar Unique Enchantments Apex-1.19.2-3.0.1.jar.disabled Unique Enchantments Base-1.19.2-3.0.2.1.jar.disabled Unique Enchantments Battle-1.19.2-3.0.2.jar.disabled Unique Enchantments Utils-1.19.2-3.0.2.1.jar.disabled Unique Enchantments-1.19.2-4.0.2.1.jar.disabled UnusualEnd1.19.2_V1.4.3.jar upgradedcore-1.19.2-4.1.0.1-release.jar upgradednetherite-1.19.2-5.1.0.9-release.jar upgradednetherite_creative-1.19.2-4.1.0.1-release.jar upgradednetherite_items-1.19.2-4.1.0.2-release.jar upgradednetherite_ultimate-1.19.2-4.1.0.4-release.jar upgradedtools-1.19.2-2.1.0.2-release.jar upgrade_aquatic-1.19.2-5.1.0.jar vanillaplustools-1.19-1.1.jar villagernames-1.19.2-7.3.jar VillagersPlus_1.2_(FORGE)_for_1.19.2.jar VisualWorkbench-v4.2.4-1.19.2-Forge.jar weakerspiderwebs-1.19.2-3.4.jar whisperwoods-1.19-2.1.1-forge.jar xlpackets-1.18.2-2.1.jar xtraarrows-3.0.6-forge-mc1.19.2.jar YungsApi-1.19.2-Forge-3.8.10.jar YungsBetterDesertTemples-1.19.2-Forge-2.2.2.jar YungsBetterDungeons-1.19.2-Forge-3.2.2.jar YungsBetterEndIsland-1.19.2-Forge-1.0.jar YungsBetterJungleTemples-1.19.2-Forge-1.0.1.jar YungsBetterMineshafts-1.19.2-Forge-3.2.1.jar YungsBetterNetherFortresses-1.19.2-Forge-1.0.6.jar YungsBetterOceanMonuments-1.19.2-Forge-2.1.1.jar YungsBetterStrongholds-1.19.2-Forge-3.2.0.jar zume-0.17.0.jar [1.19.2] Armor Status HUD-1.5.1.jar [1.19.2] BobLib-0.3.2.jar Pls help.
-
I am trying to make a LivingEntity that requests for a random item from an ArrayList when it spawns. It is working but every time I load into the world (Exit the world then join it again) it requests for a different item that it did before. Ex. It asks for an Egg, then I rejoin the world and it now asks for a Block of Dirt. I tried using EntityDataAccessor and I cannot figure out a way to use NBT data to save the item and then load it. Can someone point me towards the right direction on how to fix the issue?
-
My friend gets this https://pastebin.com/K6X3fr9d when he starts Minecraft Forge. If he uses vanilla Minecraft it works fine. We already tried reinstalling Java, updating drivers and reinstalling Minecraft .
-
I am trying to run a server i have downloaded both the client and server using the forge installer and when i go to launch the forge-1.19.2-43.3.9-universal.jar it wont open or do anything
-
1.19.2 modded server crash: exception ticking world
Mikelius posted a topic in Support & Bug Reports
Hello everyone, So I am having an issue with the modded server I am running with forge 43.3.0. I recently wanted to update the mods I am using in my server and everything seemed to work fine, but every time I launch the server, it boots fine but after a moment it crashes. I have tried looking in the crash report to find obvious causes, but I don't get it ahah. Here is the link for the crash report: https://pastebin.com/wVtNq4PB I hope someone could help me with this! Thanks a lot and have a nice day! -
Hi guys, I'm having a problem with my self-made modpack 1.19.2 Forge 43.3.0, it is made up of 251 mods. When I kill a mob and then the loot get dropped the server crashes instantly crashesgiving the error "this.LootTable id is null", Pls help me fixing this error. Here there is the mod list of my modpack https://pastebin.com/MCwvVAiq
-
Hi my game was working fine earlier but now all of a sudden it keeps crashing whenever I launch the game. I think it started when I tried to use the MineColonies Mod and I tried to build something but it wouldn't load properly, then it all went down hill from there. Crash Report: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-10.0.8.jar:10.0.8+10.0.8+main.0ef7e830] {} at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.8.jar:?] {} at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.8.jar:?] {} at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.8.jar:?] {} at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.4.jar:?] {} at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.4.jar:?] {} at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.4.jar:?] {} at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.4.jar:?] {} at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.4.jar:?] {} at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {} at net.minecraft.client.gui.Gui.<init>(Gui.java:147) ~[client-1.19.2-20220805.130853-srg.jar%23385!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,pl:mixin:APP:quark.mixins.json:client.GuiMixin,pl:mixin:A} at net.minecraftforge.client.gui.overlay.ForgeGui.<init>(ForgeGui.java:69) ~[forge-1.19.2-43.2.14-universal.jar%23390!/:?] {re:mixin,re:classloading,pl:mixin:APP:quark.mixins.json:client.ForgeGuiMixin,pl:mixin:A} at net.minecraft.client.Minecraft.<init>(Minecraft.java:527) ~[client-1.19.2-20220805.130853-srg.jar%23385!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,xf:fml:xaerominimap:xaero_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,xf:fml:xaerominimap:xaero_minecraftclient,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:tcdcommons.client.mixins.json:MixinMinecraftClient,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:quark.mixins.json:client.MinecraftMixin,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.m_239872_(Main.java:176) ~[client-1.19.2-20220805.130853-srg.jar%23385!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:51) ~[client-1.19.2-20220805.130853-srg.jar%23385!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:27) ~[fmlloader-1.19.2-43.2.14.jar%23101!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {} Caused by: org.spongepowered.asm.mixin.throwables.MixinApplyError: Mixin [colorfulhearts-common.mixins.json:PlayerTabOverlayMixin] from phase [DEFAULT] in config [colorfulhearts-common.mixins.json] FAILED during APPLY at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinError(MixinProcessor.java:636) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinApplyError(MixinProcessor.java:588) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:379) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} ... 31 more Caused by: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: InjectionPoint(Shift)[@At("INVOKE")] on net/minecraft/client/gui/components/PlayerTabOverlay::renderTablistScore with priority 1000 cannot inject into net/minecraft/client/gui/components/PlayerTabOverlay::m_94530_(Lnet/minecraft/world/scores/Objective;ILjava/lang/String;IILnet/minecraft/client/multiplayer/PlayerInfo;Lcom/mojang/blaze3d/vertex/PoseStack;)V merged by terrails.healthoverlay.mixin.PlayerTabOverlayMixin with priority 1000 [PREINJECT Applicator Phase -> colorfulhearts-common.mixins.json:PlayerTabOverlayMixin -> Prepare Injections -> -> handler$zij000$renderTablistScore(Lnet/minecraft/world/scores/Objective;ILjava/lang/String;IILnet/minecraft/client/multiplayer/PlayerInfo;Lcom/mojang/blaze3d/vertex/PoseStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V -> Prepare] at org.spongepowered.asm.mixin.injection.code.Injector.findTargetNodes(Injector.java:305) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.injection.code.Injector.find(Injector.java:240) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.prepare(InjectionInfo.java:421) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinTargetContext.prepareInjections(MixinTargetContext.java:1319) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.prepareInjections(MixinApplicatorStandard.java:1042) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:393) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:325) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} ... 31 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Stacktrace: at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-10.0.8.jar:10.0.8+10.0.8+main.0ef7e830] {} at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.8.jar:?] {} at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.8.jar:?] {} at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.8.jar:?] {} at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.4.jar:?] {} at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.4.jar:?] {} at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.4.jar:?] {} at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.4.jar:?] {} at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.4.jar:?] {} at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?] {} at net.minecraft.client.gui.Gui.<init>(Gui.java:147) ~[client-1.19.2-20220805.130853-srg.jar%23385!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,pl:mixin:APP:quark.mixins.json:client.GuiMixin,pl:mixin:A} at net.minecraftforge.client.gui.overlay.ForgeGui.<init>(ForgeGui.java:69) ~[forge-1.19.2-43.2.14-universal.jar%23390!/:?] {re:mixin,re:classloading,pl:mixin:APP:quark.mixins.json:client.ForgeGuiMixin,pl:mixin:A} at net.minecraft.client.Minecraft.<init>(Minecraft.java:527) ~[client-1.19.2-20220805.130853-srg.jar%23385!/:?] {re:mixin,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,xf:fml:xaerominimap:xaero_minecraftclient,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick,xf:fml:xaeroworldmap:xaero_wm_minecraft_runtick_render_call,xf:fml:xaeroworldmap:xaero_wm_minecraftclient,xf:fml:xaerominimap:xaero_minecraftclient,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:tcdcommons.client.mixins.json:MixinMinecraftClient,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:quark.mixins.json:client.MinecraftMixin,pl:mixin:APP:create.mixins.json:client.WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A} -- Initialization -- Details: Modules: ADVAPI32.dll:Advanced Windows 32 Base API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation AMSIExt.dll:McAfee Cloud AV ThirdParty Ext:24.3.169 38319eb2 pleated sausage:McAfee, LLC COMCTL32.dll:User Experience Controls Library:6.10 (WinBuild.160101.0800):Microsoft Corporation CRYPT32.dll:Crypto API32:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation CRYPTBASE.dll:Base cryptographic API DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation CRYPTSP.dll:Cryptographic Service Provider API:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation CoreMessaging.dll:Microsoft CoreMessaging Dll:10.0.22621.3085 (WinBuild.160101.0800):Microsoft Corporation CoreUIComponents.dll:Microsoft Core UI Components Dll:10.0.22621.2506:Microsoft Corporation DBGHELP.DLL:Windows Image Helper:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation DEVOBJ.dll:Device Information Set DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation DNSAPI.dll:DNS Client API DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation GDI32.dll:GDI Client DLL:10.0.22621.3085 (WinBuild.160101.0800):Microsoft Corporation GLU32.dll:OpenGL Utility Library DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation IMM32.DLL:Multi-User Windows IMM32 API Client DLL:10.0.22621.2792 (WinBuild.160101.0800):Microsoft Corporation IPHLPAPI.DLL:IP Helper API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation KERNEL32.DLL:Windows NT BASE API Client DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation KERNELBASE.dll:Windows NT BASE API Client DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation MMDevApi.dll:MMDevice API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation MSASN1.dll:ASN.1 Runtime APIs:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation MSCTF.dll:MSCTF Server DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation MpOav.dll:IOfficeAntiVirus Module:4.18.24020.7 (f5b7a53876c03330b0e7c1a6020590269cbbc2b6):Microsoft Corporation NSI.dll:NSI User-mode interface DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation NTASN1.dll:Microsoft ASN.1 API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation OLEAUT32.dll:OLEAUT32.DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation Ole32.dll:Microsoft OLE for Windows:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation Oleacc.dll:Active Accessibility Core Component:7.2.22621.1 (WinBuild.160101.0800):Microsoft Corporation OpenAL.dll:Main implementation library:1.21.1: POWRPROF.dll:Power Profile Helper DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation PSAPI.DLL:Process Status Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation Pdh.dll:Windows Performance Data Helper DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation RPCRT4.dll:Remote Procedure Call Runtime:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation SHCORE.dll:SHCORE:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation SHELL32.dll:Windows Shell Common Dll:10.0.22621.2792 (WinBuild.160101.0800):Microsoft Corporation UMPDC.dll:User Mode Power Dependency Coordinator:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation USER32.dll:Multi-User Windows USER API Client DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation USERENV.dll:Userenv:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation VCRUNTIME140.dll:Microsoft® C Runtime Library:14.29.30139.0 built by: vcwrkspc:Microsoft Corporation VERSION.dll:Version Checking and File Installation Libraries:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation WINHTTP.dll:Windows HTTP Services:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation WINMM.dll:MCI API DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation WINTRUST.dll:Microsoft Trust Verification APIs:10.0.22621.3085 (WinBuild.160101.0800):Microsoft Corporation WS2_32.dll:Windows Socket 2.0 32-Bit DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation WSOCK32.dll:Windows Socket 32-Bit DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation amsi.dll:Anti-Malware Scan Interface:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation apphelp.dll:Application Compatibility Client Library:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation awt.dll:OpenJDK Platform binary:17.0.8.0:Microsoft bcrypt.dll:Windows Cryptographic Primitives Library:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation bcryptPrimitives.dll:Windows Cryptographic Primitives Library:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation cfgmgr32.dll:Configuration Manager DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation clbcatq.dll:COM+ Configuration Catalog:2001.12.10941.16384 (WinBuild.160101.0800):Microsoft Corporation combase.dll:Microsoft COM for Windows:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation dbgcore.DLL:Windows Core Debugging Helpers:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation dhcpcsvc.DLL:DHCP Client Service:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation dhcpcsvc6.DLL:DHCPv6 Client:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation dinput8.dll:Microsoft DirectInput:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation directxdatabasehelper.dll:DirectXDatabaseHelper:10.0.22621.3235 (WinBuild.160101.0800):Microsoft Corporation dwmapi.dll:Microsoft Desktop Window Manager API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation dxcore.dll:DXCore:10.0.22621.3085 (WinBuild.160101.0800):Microsoft Corporation dxgi.dll:DirectX Graphics Infrastructure:10.0.22621.3235 (WinBuild.160101.0800):Microsoft Corporation fwpuclnt.dll:FWP/IPsec User-Mode API:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation gdi32full.dll:GDI Client DLL:10.0.22621.3085 (WinBuild.160101.0800):Microsoft Corporation glfw.dll:GLFW 3.4.0 DLL:3.4.0:GLFW icm32.dll:Microsoft Color Management Module (CMM):10.0.22621.3085 (WinBuild.160101.0800):Microsoft Corporation igc64.dll:Intel Graphics Shader Compiler for Intel(R) Graphics Accelerator:31.0.101.4502:Intel Corporation igdgmm64.dll:User Mode Driver for Intel(R) Graphics Technology:31.0.101.4502:Intel Corporation igdml64.dll:Metrics Library for Intel(R) Graphics Technology:31.0.101.4502:Intel Corporation igxelpicd64.dll:OpenGL(R) Driver for Intel(R) Graphics Accelerator:31.0.101.4502:Intel Corporation inputhost.dll:InputHost:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation java.dll:OpenJDK Platform binary:17.0.8.0:Microsoft javaw.exe:OpenJDK Platform binary:17.0.8.0:Microsoft jemalloc.dll jimage.dll:OpenJDK Platform binary:17.0.8.0:Microsoft jli.dll:OpenJDK Platform binary:17.0.8.0:Microsoft jna6327625466943565518.dll:JNA native library:6.1.2:Java(TM) Native Access (JNA) jsvml.dll:OpenJDK Platform binary:17.0.8.0:Microsoft jvm.dll:OpenJDK 64-Bit server VM:17.0.8.0:Microsoft kernel.appcore.dll:AppModel API Host:10.0.22621.2715 (WinBuild.160101.0800):Microsoft Corporation lwjgl.dll lwjgl_opengl.dll lwjgl_stb.dll management.dll:OpenJDK Platform binary:17.0.8.0:Microsoft management_ext.dll:OpenJDK Platform binary:17.0.8.0:Microsoft mscms.dll:Microsoft Color Matching System DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation msvcp140.dll:Microsoft® C Runtime Library:14.29.30139.0 built by: vcwrkspc:Microsoft Corporation msvcp_win.dll:Microsoft® C Runtime Library:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation msvcrt.dll:Windows NT CRT DLL:7.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation mswsock.dll:Microsoft Windows Sockets 2.0 Service Provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation napinsp.dll:E-mail Naming Shim Provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation ncrypt.dll:Windows NCrypt Router:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation net.dll:OpenJDK Platform binary:17.0.8.0:Microsoft nio.dll:OpenJDK Platform binary:17.0.8.0:Microsoft nlansp_c.dll:NLA Namespace Service Provider DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation ntdll.dll:NT Layer DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation opengl32.dll:OpenGL Client DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation perfos.dll:Windows System Performance Objects DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation pfclient.dll:SysMain Client:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation pnrpnsp.dll:PNRP Name Space Provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation profapi.dll:User Profile Basic API:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation rasadhlp.dll:Remote Access AutoDial Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation rsaenh.dll:Microsoft Enhanced Cryptographic Provider:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation sechost.dll:Host for SCM/SDDL/LSA Lookup APIs:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation shlwapi.dll:Shell Light-weight Utility Library:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation sunmscapi.dll:OpenJDK Platform binary:17.0.8.0:Microsoft textinputframework.dll:"TextInputFramework.DYNLINK":10.0.22621.3235 (WinBuild.160101.0800):Microsoft Corporation ucrtbase.dll:Microsoft® C Runtime Library:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation uxtheme.dll:Microsoft UxTheme Library:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation vcruntime140_1.dll:Microsoft® C Runtime Library:14.29.30139.0 built by: vcwrkspc:Microsoft Corporation verify.dll:OpenJDK Platform binary:17.0.8.0:Microsoft win32u.dll:Win32u:10.0.22621.3085 (WinBuild.160101.0800):Microsoft Corporation windows.storage.dll:Microsoft WinRT Storage API:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation winrnr.dll:LDAP RnR Provider DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation wintypes.dll:Windows Base Types DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation wshbth.dll:Windows Sockets Helper DLL:10.0.22621.2506 (WinBuild.160101.0800):Microsoft Corporation xinput1_4.dll:Microsoft Common Controller API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation zip.dll:OpenJDK Platform binary:17.0.8.0:Microsoft Stacktrace: at net.minecraft.client.main.Main.m_239872_(Main.java:176) ~[client-1.19.2-20220805.130853-srg.jar%23385!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:51) ~[client-1.19.2-20220805.130853-srg.jar%23385!/:?] {re:classloading,re:mixin,pl:runtimedistcleaner:A,pl:mixin:A,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:27) ~[fmlloader-1.19.2-43.2.14.jar%23101!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2388!/:?] {} at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {} -- System Details -- Details: Minecraft Version: 1.19.2 Minecraft Version ID: 1.19.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 17.0.8, Microsoft Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft Memory: 2225193216 bytes (2122 MiB) / 3556769792 bytes (3392 MiB) up to 8589934592 bytes (8192 MiB) CPUs: 8 Processor Vendor: GenuineIntel Processor Name: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz Identifier: Intel64 Family 6 Model 140 Stepping 1 Microarchitecture: Tiger Lake Frequency (GHz): 2.42 Number of physical packages: 1 Number of physical CPUs: 4 Number of logical CPUs: 8 Graphics card #0 name: Intel(R) Iris(R) Xe Graphics Graphics card #0 vendor: Intel Corporation (0x8086) Graphics card #0 VRAM (MB): 1024.00 Graphics card #0 deviceId: 0x9a49 Graphics card #0 versionInfo: DriverVersion=31.0.101.4502 Memory slot #0 capacity (MB): 8192.00 Memory slot #0 clockSpeed (GHz): 3.20 Memory slot #0 type: DDR4 Memory slot #1 capacity (MB): 4096.00 Memory slot #1 clockSpeed (GHz): 3.20 Memory slot #1 type: DDR4 Virtual memory max (MB): 24316.62 Virtual memory used (MB): 11915.43 Swap memory total (MB): 12288.00 Swap memory used (MB): 45.29 JVM Flags: 8 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx8G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M Launched Version: forge-43.2.14 Backend library: LWJGL version 3.3.1 build 7 Backend API: Intel(R) Iris(R) Xe Graphics GL version 3.2.0 - Build 31.0.101.4502, Intel Window size: <not initialized> GL Caps: Using framebuffer using OpenGL 3.2 GL debug messages: Using VBOs: Yes Is Modded: Definitely; Client brand changed to 'forge' Type: Client (map_client.txt) CPU: 8x 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz OptiFine Version: OptiFine_1.19.2_HD_U_I2 OptiFine Build: 20230623-171717 Render Distance Chunks: 8 Mipmaps: 4 Anisotropic Filtering: 1 Antialiasing: 0 Multitexture: false Shaders: BSL_v8.2.zip OpenGlVersion: 3.2.0 - Build 31.0.101.4502 OpenGlRenderer: Intel(R) Iris(R) Xe Graphics OpenGlVendor: Intel CpuCount: 8 ModLauncher: 10.0.8+10.0.8+main.0ef7e830 ModLauncher launch target: forgeclient ModLauncher naming: srg ModLauncher services: mixin-0.8.5.jar mixin PLUGINSERVICE eventbus-6.0.3.jar eventbus PLUGINSERVICE fmlloader-1.19.2-43.2.14.jar slf4jfixer PLUGINSERVICE fmlloader-1.19.2-43.2.14.jar object_holder_definalize PLUGINSERVICE fmlloader-1.19.2-43.2.14.jar runtime_enum_extender PLUGINSERVICE fmlloader-1.19.2-43.2.14.jar capability_token_subclass PLUGINSERVICE accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE fmlloader-1.19.2-43.2.14.jar runtimedistcleaner PLUGINSERVICE modlauncher-10.0.8.jar mixin TRANSFORMATIONSERVICE modlauncher-10.0.8.jar OptiFine TRANSFORMATIONSERVICE modlauncher-10.0.8.jar fml TRANSFORMATIONSERVICE FML Language Providers: [email protected] javafml@null [email protected] lowcodefml@null Mod List: YungsBetterDungeons-1.19.2-Forge-3.2.2.jar |YUNG's Better Dungeons |betterdungeons |1.19.2-Forge-3.2.2 |COMMON_SET|Manifest: NOSIGNATURE bettercrafts-1.2.0.jar |bettercrafts |bettercrafts |1.2.0 |COMMON_SET|Manifest: NOSIGNATURE beautify-1.4.3.jar |Beautify |beautify |1.4.3 |COMMON_SET|Manifest: NOSIGNATURE towntalk-1.19.2-1.0.1.jar |TownTalk |towntalk |1.0.1 |COMMON_SET|Manifest: NOSIGNATURE HealthOverlay-1.19.2-7.2.1.jar |Health Overlay |healthoverlay |7.2.1 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterOceanMonuments-1.19.2-Forge-2.1.1.jar |YUNG's Better Ocean Monuments |betteroceanmonuments |1.19.2-Forge-2.1.1 |COMMON_SET|Manifest: NOSIGNATURE connectivity-1.19.2-4.6.jar |Connectivity Mod |connectivity |1.19.2-4.6 |COMMON_SET|Manifest: NOSIGNATURE mcw-windows-2.2.1-mc1.19.2forge.jar |Macaw's Windows |mcwwindows |2.2.1 |COMMON_SET|Manifest: NOSIGNATURE Strawgolem-forge-1.19.2-2.0.0-beta.4.jar |Straw Golem |strawgolem |2.0.0-beta.4 |COMMON_SET|Manifest: NOSIGNATURE mcwfurnituresbop-1.19.2-1.3.jar |Macaw's Furnitures - BOP |mcwfurnituresbop |1.19.2-1.3 |COMMON_SET|Manifest: NOSIGNATURE XaerosWorldMap_1.38.1_Forge_1.19.1.jar |Xaero's World Map |xaeroworldmap |1.38.1 |COMMON_SET|Manifest: NOSIGNATURE CTM-1.19.2-1.1.6+8.jar |ConnectedTexturesMod |ctm |1.19.2-1.1.6+8 |COMMON_SET|Manifest: NOSIGNATURE cookingforblockheads-forge-1.19.2-13.3.4.jar |CookingForBlockheads |cookingforblockheads |13.3.4 |COMMON_SET|Manifest: NOSIGNATURE Controlling-forge-1.19.2-10.0+7.jar |Controlling |controlling |10.0+7 |COMMON_SET|Manifest: NOSIGNATURE citadel-2.1.4-1.19.jar |Citadel |citadel |2.1.4 |COMMON_SET|Manifest: NOSIGNATURE alexsmobs-1.21.1.jar |Alex's Mobs |alexsmobs |1.21.1 |COMMON_SET|Manifest: NOSIGNATURE YungsApi-1.19.2-Forge-3.8.10.jar |YUNG's API |yungsapi |1.19.2-Forge-3.8.10 |COMMON_SET|Manifest: NOSIGNATURE mixinextras-forge-0.2.0-beta.9.jar |MixinExtras |mixinextras |0.2.0-beta.9 |COMMON_SET|Manifest: NOSIGNATURE mosaic_carpentry-1.2-1.19.2.jar |Mosaic Carpentry |mosaic_carpentry |1.2-1.19.2 |COMMON_SET|Manifest: NOSIGNATURE Bookshelf-Forge-1.19.2-16.3.20.jar |Bookshelf |bookshelf |16.3.20 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 mcw-doors-1.1.0forge-mc1.19.2.jar |Macaw's Doors |mcwdoors |1.1.0 |COMMON_SET|Manifest: NOSIGNATURE balm-forge-1.19.2-4.6.0.jar |Balm |balm |4.6.0 |COMMON_SET|Manifest: NOSIGNATURE JustEnoughResources-1.19.2-1.2.3.243.jar |Just Enough Resources |jeresources |1.2.3.243 |COMMON_SET|Manifest: NOSIGNATURE cloth-config-8.3.115-forge.jar |Cloth Config v8 API |cloth_config |8.3.115 |COMMON_SET|Manifest: NOSIGNATURE Craftable_Elytra[REWORKED][2.0]1.19.2.jar |craftable_elytra_remastered |craftable_elytra_remastered |2.0 |COMMON_SET|Manifest: NOSIGNATURE chipped-forge-1.19.2-2.1.5.jar |Chipped |chipped |2.1.5 |COMMON_SET|Manifest: NOSIGNATURE FarmersDelight-1.19.2-1.2.4.jar |Farmer's Delight |farmersdelight |1.19.2-1.2.4 |COMMON_SET|Manifest: NOSIGNATURE torchmaster-19.2.93.jar |Torchmaster |torchmaster |19.2.93 |COMMON_SET|Manifest: NOSIGNATURE handcrafted-forge-1.19.2-2.0.6.jar |Handcrafted |handcrafted |2.0.6 |COMMON_SET|Manifest: NOSIGNATURE colorfulhearts-forge-1.19.2-1.0.0.jar |Colorful Hearts |colorfulhearts |1.0.0 |COMMON_SET|Manifest: NOSIGNATURE supermartijn642corelib-1.1.17-forge-mc1.19.2.jar |SuperMartijn642's Core Lib |supermartijn642corelib |1.1.17 |COMMON_SET|Manifest: NOSIGNATURE YungsBridges-1.19.2-Forge-3.1.0.jar |YUNG's Bridges |yungsbridges |1.19.2-Forge-3.1.0 |COMMON_SET|Manifest: NOSIGNATURE resourcefulconfig-forge-1.19.2-1.0.20.jar |Resourcefulconfig |resourcefulconfig |1.0.20 |COMMON_SET|Manifest: NOSIGNATURE pamhc2foodextended-1.19.2-1.0.0.jar |Pam's HarvestCraft 2 - Food Ex|pamhc2foodextended |1.0.0 |COMMON_SET|Manifest: NOSIGNATURE curios-forge-1.19.2-5.1.6.1.jar |Curios API |curios |1.19.2-5.1.6.1 |COMMON_SET|Manifest: NOSIGNATURE blockui-1.19.2-1.0.140-BETA.jar |UI Library Mod |blockui |1.19.2-1.0.140-BETA |COMMON_SET|Manifest: NOSIGNATURE right-click-harvest-3.2.3+1.19.2-forge.jar |Right Click Harvest |rightclickharvest |3.2.3+1.19.2-forge |COMMON_SET|Manifest: NOSIGNATURE collective-1.19.2-7.40.jar |Collective |collective |7.40 |COMMON_SET|Manifest: NOSIGNATURE levelhearts-1.19.2-2.4.0.jar |LevelHearts |levelhearts |2.4.0 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterStrongholds-1.19.2-Forge-3.2.0.jar |YUNG's Better Strongholds |betterstrongholds |1.19.2-Forge-3.2.0 |COMMON_SET|Manifest: NOSIGNATURE expandedstorage-8.3.4+1.19.2-forge.jar |Expanded Storage |expandedstorage |8.3.4 |COMMON_SET|Manifest: NOSIGNATURE resourcefullib-forge-1.19.2-1.1.24.jar |Resourceful Lib |resourcefullib |1.1.24 |COMMON_SET|Manifest: NOSIGNATURE worldedit-mod-7.2.12.jar |WorldEdit |worldedit |7.2.12+6240-87f4ae1 |COMMON_SET|Manifest: NOSIGNATURE constructionwand-1.19.2-2.10.jar |Construction Wand |constructionwand |1.19.2-2.10 |COMMON_SET|Manifest: NOSIGNATURE cfm-7.0.0-pre35-1.19.2.jar |MrCrayfish's Furniture Mod |cfm |7.0.0-pre35 |COMMON_SET|Manifest: NOSIGNATURE architectury-6.6.92-forge.jar |Architectury |architectury |6.6.92 |COMMON_SET|Manifest: NOSIGNATURE mcw-furniture-3.2.2-mc1.19.2forge.jar |Macaw's Furniture |mcwfurnitures |3.2.2 |COMMON_SET|Manifest: NOSIGNATURE cupboard-1.19.2-2.6.jar |Cupboard utilities |cupboard |1.19.2-2.6 |COMMON_SET|Manifest: NOSIGNATURE Adorn-3.9.1+1.19.2-forge.jar |Adorn |adorn |3.9.1+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE FastLeafDecay-30.jar |FastLeafDecay |fastleafdecay |30 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterMineshafts-1.19.2-Forge-3.2.1.jar |YUNG's Better Mineshafts |bettermineshafts |1.19.2-Forge-3.2.1 |COMMON_SET|Manifest: NOSIGNATURE sixstairs-1.19.2-10-forge.jar |SixStairs |sixstairs |1.19.2-10-forge |COMMON_SET|Manifest: NOSIGNATURE mcw-lights-1.0.6-mc1.19.2forge.jar |Macaw's Lights and Lamps |mcwlights |1.0.6 |COMMON_SET|Manifest: NOSIGNATURE frozen_delight_1.3.2_forge_1.19.2.jar |Frozen Delight (by NoCube) |frozen_delight |1.3.2 |COMMON_SET|Manifest: NOSIGNATURE elytraslot-forge-6.1.1+1.19.2.jar |Elytra Slot |elytraslot |6.1.1+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE Festive_Delight_1.3_Forge_1.19.2.jar |Festive Delight |festive_delight |1.3.0 |COMMON_SET|Manifest: NOSIGNATURE Cucumber-1.19.2-6.0.10.jar |Cucumber Library |cucumber |6.0.10 |COMMON_SET|Manifest: NOSIGNATURE pamhc2trees-1.19.2-1.0.1.jar |Pam's HarvestCraft 2 - Trees |pamhc2trees |1.0.1 |COMMON_SET|Manifest: NOSIGNATURE culturaldelights-1.19.2-0.15.5.jar |Cultural Delights |culturaldelights |0.15.5 |COMMON_SET|Manifest: NOSIGNATURE treeharvester-1.19.2-8.7.jar |Tree Harvester |treeharvester |8.7 |COMMON_SET|Manifest: NOSIGNATURE xlpackets-1.18.2-2.1.jar |XL Packets |xlpackets |1.18.2-2.1 |COMMON_SET|Manifest: NOSIGNATURE jei-1.19.2-forge-11.6.0.1019.jar |Just Enough Items |jei |11.6.0.1019 |COMMON_SET|Manifest: NOSIGNATURE libraryferret-forge-1.19.2-4.0.0.jar |Library ferret |libraryferret |4.0.0 |COMMON_SET|Manifest: NOSIGNATURE caelus-forge-1.19.2-3.0.0.6.jar |Caelus API |caelus |1.19.2-3.0.0.6 |COMMON_SET|Manifest: NOSIGNATURE furnitureexpanded-1.19.2-1.1.jar |Furniture Expanded |furnitureexpanded |1.19-1.1 |COMMON_SET|Manifest: NOSIGNATURE Clumps-forge-1.19.2-9.0.0+14.jar |Clumps |clumps |9.0.0+14 |COMMON_SET|Manifest: NOSIGNATURE comforts-forge-6.0.7+1.19.2.jar |Comforts |comforts |6.0.7+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE TravelersBackpack-1.19.2-8.2.38.jar |Traveler's Backpack |travelersbackpack |8.2.38 |COMMON_SET|Manifest: NOSIGNATURE NaturesCompass-1.19.2-1.10.0-forge.jar |Nature's Compass |naturescompass |1.19.2-1.10.0-forge |COMMON_SET|Manifest: NOSIGNATURE Decorative Blocks-forge-1.19.2-3.0.0.jar |Decorative Blocks |decorative_blocks |3.0.0 |COMMON_SET|Manifest: NOSIGNATURE YungsBetterDesertTemples-1.19.2-Forge-2.2.2.jar |YUNG's Better Desert Temples |betterdeserttemples |1.19.2-Forge-2.2.2 |COMMON_SET|Manifest: NOSIGNATURE fusion-1.1.1-forge-mc1.19.2.jar |Fusion |fusion |1.1.1 |COMMON_SET|Manifest: NOSIGNATURE skinlayers3d-forge-1.6.2-mc1.19.2.jar |3d-Skin-Layers |skinlayers3d |1.6.2 |COMMON_SET|Manifest: NOSIGNATURE frozenup-1.19.2-2.1.2-forge.jar |Frozen Up |frozenup |2.1.2-forge |COMMON_SET|Manifest: NOSIGNATURE forge-1.19.2-43.2.14-universal.jar |Forge |forge |43.2.14 |COMMON_SET|Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90 client-1.19.2-20220805.130853-srg.jar |Minecraft |minecraft |1.19.2 |COMMON_SET|Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f EnchantmentDescriptions-Forge-1.19.2-13.0.14.jar |EnchantmentDescriptions |enchdesc |13.0.14 |COMMON_SET|Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5 TerraBlender-forge-1.19.2-2.0.1.136.jar |TerraBlender |terrablender |2.0.1.136 |COMMON_SET|Manifest: NOSIGNATURE BiomesOPlenty-1.19.2-17.1.1.162.jar |Biomes O' Plenty |biomesoplenty |17.1.1.162 |COMMON_SET|Manifest: NOSIGNATURE moonlight-1.19.2-2.3.6-forge.jar |Moonlight Library |moonlight |1.19.2-2.3.6 |COMMON_SET|Manifest: NOSIGNATURE MouseTweaks-forge-mc1.19-2.23.jar |Mouse Tweaks |mousetweaks |2.23 |COMMON_SET|Manifest: NOSIGNATURE mysterious_mountain_lib-1.2.3-1.19.2.jar |Mysterious Mountain Lib |mysterious_mountain_lib |1.2.3-1.19.2 |COMMON_SET|Manifest: NOSIGNATURE Jade-1.19.1-forge-8.9.1.jar |Jade |jade |8.9.1 |COMMON_SET|Manifest: NOSIGNATURE pamhc2crops-1.19.2-1.0.2.jar |Pam's HarvestCraft 2 - Crops |pamhc2crops |1.0.2 |COMMON_SET|Manifest: NOSIGNATURE spectrelib-forge-0.12.8+1.19.2.jar |SpectreLib |spectrelib |0.12.8+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE domum_ornamentum-1.19-1.0.146-BETA-universal.jar |Domum Ornamentum |domum_ornamentum |1.19-1.0.146-BETA |COMMON_SET|Manifest: NOSIGNATURE kffmod-3.12.0.jar |Kotlin For Forge |kotlinforforge |3.12.0 |COMMON_SET|Manifest: NOSIGNATURE easy_villagers-1.19.2-1.0.17.jar |Easy Villagers |easy_villagers |1.19.2-1.0.17 |COMMON_SET|Manifest: NOSIGNATURE betterstats-2.2.2+1.19.2.jar |Better Statistics Screen |betterstats |2.2.2+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE tcdcommons-2.2+1.19.2.jar |TCD Commons API |tcdcommons |2.2+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE FarmersRespite-1.19-2.0.jar |Farmer's Respite |farmersrespite |1.19-2.0 |COMMON_SET|Manifest: NOSIGNATURE flywheel-forge-1.19.2-0.6.10-20.jar |Flywheel |flywheel |0.6.10-20 |COMMON_SET|Manifest: NOSIGNATURE create-1.19.2-0.5.1.f.jar |Create |create |0.5.1.f |COMMON_SET|Manifest: NOSIGNATURE ecologics-forge-1.19.2-2.1.11.jar |Ecologics |ecologics |2.1.11 |COMMON_SET|Manifest: NOSIGNATURE EasyEmerald-Forge-1.19.2-1.4.18.jar |Easy Emerald |easy_emerald |1.4.18 |COMMON_SET|Manifest: NOSIGNATURE Xaeros_Minimap_24.0.3_Forge_1.19.1.jar |Xaero's Minimap |xaerominimap |24.0.3 |COMMON_SET|Manifest: NOSIGNATURE pamhc2foodcore-1.19.2-1.0.1.jar |Pam's HarvestCraft 2 - Food Co|pamhc2foodcore |1.0.1 |COMMON_SET|Manifest: NOSIGNATURE Croptopia-1.19.2-FORGE-2.2.2.jar |Croptopia |croptopia |2.2.2 |COMMON_SET|Manifest: NOSIGNATURE polymorph-forge-0.46.6+1.19.2.jar |Polymorph |polymorph |0.46.6+1.19.2 |COMMON_SET|Manifest: NOSIGNATURE AutoRegLib-1.8.2-55.jar |AutoRegLib |autoreglib |1.8.2-55 |COMMON_SET|Manifest: NOSIGNATURE entityculling-forge-1.6.1-mc1.19.2.jar |EntityCulling |entityculling |1.6.1 |COMMON_SET|Manifest: NOSIGNATURE invhud.forge.1.19-3.4.7.jar |Inventory HUD+(Forge edition) |inventoryhud |3.4.7 |COMMON_SET|Manifest: NOSIGNATURE coloredbricks-1.19-5.0.jar |Colored Bricks Mod |coloredbricks |1.19-5.0 |COMMON_SET|Manifest: NOSIGNATURE structurize-1.19.2-1.0.689-RELEASE.jar |Structurize |structurize |1.19.2-1.0.689-RELEA|COMMON_SET|Manifest: NOSIGNATURE multipiston-1.19.2-1.2.25-ALPHA.jar |Multi-Piston |multipiston |1.19.2-1.2.25-ALPHA |COMMON_SET|Manifest: NOSIGNATURE minecolonies-1.19.2-1.1.465-RELEASE.jar |MineColonies |minecolonies |1.19.2-1.1.465-RELEA|COMMON_SET|Manifest: NOSIGNATURE appleskin-forge-mc1.19-2.4.2.jar |AppleSkin |appleskin |2.4.2+mc1.19 |COMMON_SET|Manifest: NOSIGNATURE alexsdelight-1.4.1.jar |Alex's Delight |alexsdelight |1.4.1 |COMMON_SET|Manifest: NOSIGNATURE lootr-forge-1.19-0.4.27.71.jar |Lootr |lootr |0.4.26.69 |COMMON_SET|Manifest: NOSIGNATURE Quark-3.4-418.jar |Quark |quark |3.4-418 |COMMON_SET|Manifest: NOSIGNATURE supplementaries-1.19.2-2.4.20.jar |Supplementaries |supplementaries |1.19.2-2.4.20 |COMMON_SET|Manifest: NOSIGNATURE connectedglass-1.1.11-forge-mc1.19.jar |Connected Glass |connectedglass |1.1.11 |COMMON_SET|Manifest: NOSIGNATURE fastfooddelight-1.19-1.2.3.jar |https://github.com/akaneoMT/Fa|fastfooddelight |1.19-1.2.3 |COMMON_SET|Manifest: NOSIGNATURE ItalianDelight-1.19.2 1.5-MAR_FIX.jar |Italian Delight |italian_delight |1.2 |COMMON_SET|Manifest: NOSIGNATURE PuzzlesLib-v4.4.3-1.19.2-Forge.jar |Puzzles Lib |puzzleslib |4.4.3 |COMMON_SET|Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a Oh_The_Biomes_You'll_Go-forge-1.19.2-2.0.1.6.jar |Oh The Biomes You'll Go |byg |2.0.1.6 |COMMON_SET|Manifest: NOSIGNATURE geckolib-forge-1.19-3.1.40.jar |GeckoLib |geckolib3 |3.1.40 |COMMON_SET|Manifest: NOSIGNATURE CorgiLib-forge-1.19.2-1.0.0.34.jar |CorgiLib |corgilib |1.0.0.34 |COMMON_SET|Manifest: NOSIGNATURE creeperoverhaul-2.0.9-forge.jar |Creeper Overhaul |creeperoverhaul |2.0.9 |COMMON_SET|Manifest: NOSIGNATURE Aquaculture-1.19.2-2.4.8.jar |Aquaculture 2 |aquaculture |1.19.2-2.4.8 |COMMON_SET|Manifest: NOSIGNATURE Crash Report UUID: e908f9d5-a114-48e1-877a-e8040c284861 FML: 43.2 Forge: net.minecraftforge:43.2.14 Flywheel Backend: Uninitialized
-
Im trying to run Novas Solarpunk Superpack, and every time i try to launch it, i get this message The game crashed whilst rendering overlay Error: java.lang.OutOfMemoryError: Java heap space Can someone help out?
-
So im doing my first mod for my friends server and he uses create on the server. I want to implement the mod to rhe create mod style u have to mix "The void" fluid(my mod is void tools and armor) at super-heated state but i dont know how to add the recipe. sorry if i wrote something wrong this is my first post
-
The game crashed whilst initializing game Error: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered Exit code: -1 Game crashes as soon as it's booted up. Probably caused by updated mods, as a couple of days ago it was fine. Full report: https://pastebin.com/uWzHJbk5
-
When I used the dimension holder on the portal dock (Sneak + Rmb) the game freezes says saving world then closes mc, have tried multiple times same result (Error Code 1) Latest & Debug is as follows : https://paste.ee/p/JP4FX
-
Im trying to launch a mc sv with a lot of mods to play with my friends, I think that the error is that I have installed some client sided mod, but i can't find out which mod is it, please help me Server log: pastebin.com/raw/7abr4zrw
-
I need some help in terms of reading crash report. I can not figure out what to do. Minecraft accidentally stopped working with error " -mod- Failed to load corectly" Here is crash report: [User dumped the crash report directly into the post, triggering the anti-spam]
-
Hello everyone, I'm making this post to seek help for my modded block, It's a special block called FrozenBlock supposed to take the place of an old block, then after a set amount of ticks, it's supposed to revert its Block State, Entity, data... to the old block like this : The problem I have is that the system breaks when handling multi blocks (I tried some fix but none of them worked) : The bug I have identified is that the function "setOldBlockFields" in the item's "setFrozenBlock" function gets called once for the 1st block of multiblock getting frozen (as it should), but gets called a second time BEFORE creating the first FrozenBlock with the data of the 1st block, hence giving the same data to the two FrozenBlock : Old Block Fields set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=head] BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@73681674 BlockEntityData : id:"minecraft:bed",x:3,y:-60,z:-6} Old Block Fields set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} Frozen Block Entity set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockPos{x=3, y=-60, z=-6} BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} Frozen Block Entity set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockPos{x=2, y=-60, z=-6} BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} here is the code inside my custom "freeze" item : @Override public @NotNull InteractionResult useOn(@NotNull UseOnContext pContext) { if (!pContext.getLevel().isClientSide() && pContext.getHand() == InteractionHand.MAIN_HAND) { BlockPos blockPos = pContext.getClickedPos(); BlockPos secondBlockPos = getMultiblockPos(blockPos, pContext.getLevel().getBlockState(blockPos)); if (secondBlockPos != null) { createFrozenBlock(pContext, secondBlockPos); } createFrozenBlock(pContext, blockPos); return InteractionResult.SUCCESS; } return super.useOn(pContext); } public static void createFrozenBlock(UseOnContext pContext, BlockPos blockPos) { BlockState oldState = pContext.getLevel().getBlockState(blockPos); BlockEntity oldBlockEntity = oldState.hasBlockEntity() ? pContext.getLevel().getBlockEntity(blockPos) : null; CompoundTag oldBlockEntityData = oldState.hasBlockEntity() ? oldBlockEntity.serializeNBT() : null; if (oldBlockEntity != null) { pContext.getLevel().removeBlockEntity(blockPos); } BlockState FrozenBlock = setFrozenBlock(oldState, oldBlockEntity, oldBlockEntityData); pContext.getLevel().setBlockAndUpdate(blockPos, FrozenBlock); } public static BlockState setFrozenBlock(BlockState blockState, @Nullable BlockEntity blockEntity, @Nullable CompoundTag blockEntityData) { BlockState FrozenBlock = BlockRegister.FROZEN_BLOCK.get().defaultBlockState(); ((FrozenBlock) FrozenBlock.getBlock()).setOldBlockFields(blockState, blockEntity, blockEntityData); return FrozenBlock; }
-
The server does not start with mods. forge kernel, version 1.19.2. Here's the log: https://drive.google.com/file/d/1iost6poFQCky0yTN_MMGifja--3di3cI/view?usp=sharing
-
1.19.2 Need helps with mods and org.spongepowered.mixins
Thezia posted a topic in Support & Bug Reports
[Error: 2024-03-27 11:53:03.8425951: localization.cpp(110)] No translation found for "Unable to download the launcher update. Launching previous version..." [Error: 2024-03-27 11:53:03.8426378: localization.cpp(110)] No translation found for "Unable to update the launcher." [Error: 2024-03-27 11:53:03.8426454: localization.cpp(110)] No translation found for "Unable to download the bootstrap update. Launching previous version..." [Error: 2024-03-27 11:53:03.8426538: localization.cpp(110)] No translation found for "Unable to update the bootstrap." [Error: 2024-03-27 11:53:03.8426693: localization.cpp(110)] No translation found for "Failed to initialize GDK, please make sure Xbox App and Gaming Services are up to date and running." [Info: 2024-03-27 11:53:03.8451922: NetQueue.cpp(32)] NetQueue: Setting up. [Info: 2024-03-27 11:53:03.8466109: NetQueue.cpp(414)] NetQueue: worker thread started. [Info: 2024-03-27 11:53:03.8469620: mainWindows.cpp(117)] Running launcher bootstrap (version 1.9.2) [Info: 2024-03-27 11:53:03.8494496: NetQueue.cpp(32)] NetQueue: Setting up. [Info: 2024-03-27 11:53:03.8495946: NetQueue.cpp(414)] NetQueue: worker thread started. [Error: 2024-03-27 11:53:03.8499478: localization.cpp(110)] No translation found for "Unable to download the launcher update. Launching previous version..." [Error: 2024-03-27 11:53:03.8499671: localization.cpp(110)] No translation found for "Unable to update the launcher." [Error: 2024-03-27 11:53:03.8499780: localization.cpp(110)] No translation found for "Unable to download the bootstrap update. Launching previous version..." [Error: 2024-03-27 11:53:03.8499879: localization.cpp(110)] No translation found for "Unable to update the bootstrap." [Error: 2024-03-27 11:53:03.8500043: localization.cpp(110)] No translation found for "Failed to initialize GDK, please make sure Xbox App and Gaming Services are up to date and running." [Info: 2024-03-27 11:53:03.8500203: Common.cpp(35)] Native Launcher Version: 1.9.2 [Info: 2024-03-27 11:53:03.8500389: Common.cpp(36)] Operating System: Windows 10 Enterprise [Info: 2024-03-27 11:53:03.8500831: Common.cpp(37)] Application Data directory: C:\...\.minecraft [Info: 2024-03-27 11:53:03.8501550: Common.cpp(38)] Executable Path: /:\...\MinecraftLauncher.exe [Info: 2024-03-27 11:53:03.8501764: Common.cpp(39)] App Directory dir: C:\...\Minecraft Launcher [Info: 2024-03-27 11:53:03.8501971: Common.cpp(40)] Game data directory: C:\...\.minecraft [Info: 2024-03-27 11:53:03.8502156: Common.cpp(41)] Launcher dir: C:\...\game [Info: 2024-03-27 11:53:03.8502352: Common.cpp(42)] Update dir: C:\...\update_files [Info: 2024-03-27 11:53:03.8502535: Common.cpp(43)] TmpDir dir: [Info: 2024-03-27 11:53:03.8502670: Common.cpp(44)] StagingDir dir: C:\...\staging [Warning: 2024-03-27 11:53:03.8513538: UpdateChecking.cpp(324)] Unable to find 'channel' key in settings. [Info: 2024-03-27 11:53:03.8513806: UpdateChecking.cpp(352)] Failed to read update preferences from C:\...\launcher_profiles.json [Info: 2024-03-27 11:53:03.8514063: UpdateChecking.cpp(357)] Using update preferences at path: C:\...\launcher_settings.json [Info: 2024-03-27 11:53:03.8519117: KeyMakerCache.cpp(220)] Initializing KeyMaker response cache for prod... [Info: 2024-03-27 11:53:03.8519312: KeyMakerCache.cpp(226)] KeyMaker response cache initialized. [Info: 2024-03-27 11:53:03.8538511: Auth.cpp(258)] Token in STS has expired, removing from storage [Info: 2024-03-27 11:53:03.8545536: Auth.cpp(319)] STS Token successfully removed [Info: 2024-03-27 11:53:03.8547180: NetQueue.cpp(213)] NetQueue: Starting net action https://redstone-launcher.mojang.com/release/v2/products/launcher/8c27cef2cad375cacbb4a98169dae13a58fb7c09/win32.json [Info: 2024-03-27 11:53:03.9511532: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: redstone-launcher.mojang.com [Info: 2024-03-27 11:53:03.9511922: NetQueue.cpp(102)] NetQueue: Action finished: https://redstone-launcher.mojang.com/release/v2/products/launcher/8c27cef2cad375cacbb4a98169dae13a58fb7c09/win32.json [Info: 2024-03-27 11:53:03.9512725: NetQueue.cpp(133)] Action finalized: https://redstone-launcher.mojang.com/release/v2/products/launcher/8c27cef2cad375cacbb4a98169dae13a58fb7c09/win32.json [Info: 2024-03-27 11:53:03.9515076: AzureUpdateTools.cpp(279)] Version of bootstrap is current, no action is necessary. [Info: 2024-03-27 11:53:03.9515348: AzureUpdateTools.cpp(299)] bootstrap is current [Info: 2024-03-27 11:53:03.9518285: AzureUpdateTools.cpp(279)] Version of core is current, no action is necessary. [Info: 2024-03-27 11:53:03.9518539: AzureUpdateTools.cpp(299)] core is current [Info: 2024-03-27 11:53:03.9518773: StartLibrary.cpp(62)] Starting C:\...\launcher.dll [Info: 2024-03-27 11:53:04.0247211: StartLibrary.cpp(111)] Running launcher! [Info: 2024-03-27 11:53:04.0247505: StartLibrary.cpp(113)] Logging is open, passing it to Launcher Core. [Info: 2024-03-27 11:53:04.0357009: LauncherMain.cpp(112)] Initiated models [Info: 2024-03-27 11:53:04.0454641: LauncherMain.cpp(283)] Initiated app arguments [Info: 2024-03-27 11:53:04.0454924: LauncherMain.cpp(341)] Initiated directories [Info: 2024-03-27 11:53:04.0471092: LauncherMain.cpp(366)] Initialized network [Info: 2024-03-27 11:53:04.0474138: NetQueue.cpp(32)] NetQueue: Setting up. [Info: 2024-03-27 11:53:04.0483702: NetQueue.cpp(414)] NetQueue: worker thread started. [Info: 2024-03-27 11:53:04.0487013: LauncherMain.cpp(389)] Initialized Sentry [Info: 2024-03-27 11:53:04.0487346: LauncherMain.cpp(397)] workDir: %USERPROFILE%\AppData\Roaming\.minecraft [Info: 2024-03-27 11:53:04.0487644: LauncherMain.cpp(407)] appDir: C:\...\Minecraft Launcher [Info: 2024-03-27 11:53:04.0496960: LauncherMain.cpp(433)] Launcher core version: 2.20.2 (e5d783a752d46bb746a274238680f9326661ef6b) [Info: 2024-03-27 11:53:04.0497194: LauncherMain.cpp(434)] Main process: true [Info: 2024-03-27 11:53:04.0497653: NetQueue.cpp(32)] NetQueue: Setting up. [Info: 2024-03-27 11:53:04.0499023: NetQueue.cpp(414)] NetQueue: worker thread started. [Info: 2024-03-27 11:53:04.0535777: NetQueue.cpp(213)] NetQueue: Starting net action https://www.xboxab.com/ab [Info: 2024-03-27 11:53:04.0563746: LauncherController.cpp(665)] Constructing launcher controller with workDir: %USERPROFILE%\AppData\Roaming\.minecraft, isActive: 1 [Info: 2024-03-27 11:53:04.0629846: NetQueue.cpp(32)] NetQueue: Setting up. [Info: 2024-03-27 11:53:04.0634743: NetQueue.cpp(414)] NetQueue: worker thread started. [Info: 2024-03-27 11:53:04.0696412: XalStorage.cpp(521)] Parsing content from MSA File [Info: 2024-03-27 11:53:04.0702299: XalContext.cpp(517)] ClockSkew is -1891966301 (-189 seconds) [Info: 2024-03-27 11:53:04.0702495: XalContext.cpp(524)] Unusually large ClockSkew! [Info: 2024-03-27 11:53:04.0711685: Xal.lib(0)] XAL: Initializing Xal 2021.11.20220411.002, Win32 platform [Info: 2024-03-27 11:53:04.0712040: Xal.lib(0)] XAL: Init args: [Info: 2024-03-27 11:53:04.0712243: Xal.lib(0)] XAL: sandbox: [Info: 2024-03-27 11:53:04.0712417: Xal.lib(0)] XAL: disableDiagnosticTelemetry: false [Info: 2024-03-27 11:53:04.0714810: Xal.lib(0)] XAL: correlationVector: (null) [Info: 2024-03-27 11:53:04.0714950: Xal.lib(0)] XAL: flags: 91000000 [Info: 2024-03-27 11:53:04.0715070: Xal.lib(0)] XAL: thirdPartyConsent (0) [Info: 2024-03-27 11:53:04.0715191: Xal.lib(0)] XAL: redirectUri: [Warning: 2024-03-27 11:53:04.0715569: Xal.lib(0)] XAL: Expected REG_SZ type for SOFTWARE\Microsoft\XboxLive\Sandbox, found 0 instead [Info: 2024-03-27 11:53:04.0752605: Xal.lib(0)] XAL: Diagnostic telemetry disabled: false [Info: 2024-03-27 11:53:04.0774297: Xal.lib(0)] XAL: [op 53326304] Operation UploadTelemetryEventsWithDelay is starting [Info: 2024-03-27 11:53:04.0774597: Xal.lib(0)] XAL_TELEMETRY: AppActivation Version="2021.11.20220411.002" [Info: 2024-03-27 11:53:04.0775350: Xal.lib(0)] XAL: [op 53326416] Operation InitializeComponents is starting [Info: 2024-03-27 11:53:04.0775515: Xal.lib(0)] XAL: [op 53326416] with CV 's7uWKQ0ltxUQNmPM.0.0' [Info: 2024-03-27 11:53:04.0779134: Xal.lib(0)] XAL: [op 53011760] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:04.0779525: Xal.lib(0)] XAL: [op 53011760] with CV 's7uWKQ0ltxUQNmPM.0.0' [Info: 2024-03-27 11:53:04.0782585: Xal.lib(0)] XAL: [op 53327984] Operation LoadClockSkew is starting [Info: 2024-03-27 11:53:04.0782719: Xal.lib(0)] XAL: [op 53327984] with CV 's7uWKQ0ltxUQNmPM.0.0' [Info: 2024-03-27 11:53:04.0782887: Xal.lib(0)] XAL: [op 53166992] Client operation StorageReadPlatformOperation starting (promise 53326752) [Error: 2024-03-27 11:53:04.0824745: PersistentReflectedStruct.h(57)] Data version 3 is greater than current version 0 but we don't support downgrading. [Warning: 2024-03-27 11:53:04.0825028: PreferencesManager.cpp(589)] Unable to load profile settings. [Info: 2024-03-27 11:53:04.0827213: PreferencesManager.cpp(135)] Removed %USERPROFILE%\AppData\Roaming\.minecraft\launcher_profiles_microsoft_store.json [Info: 2024-03-27 11:53:04.0848635: GameVersionManager.cpp(289)] Reading local cache of the Mojang versions manifest (version_manifest_v2.json)... [Info: 2024-03-27 11:53:04.0904210: GameVersionManager.cpp(330)] Looking for installed versions in %USERPROFILE%\AppData\Roaming\.minecraft\versions [Info: 2024-03-27 11:53:04.0917603: GameVersionManager.cpp(371)] Parsing version 1.19.2 [Warning: 2024-03-27 11:53:04.0928883: JreManifestManager.cpp(276)] Attempting to get the jre component manifest before the manifest was loaded [Info: 2024-03-27 11:53:04.0939148: GameVersionManager.cpp(371)] Parsing version 1.19.2-forge-43.3.0 [Warning: 2024-03-27 11:53:04.0941548: GameVersionManager.cpp(385)] 1.19.2-forge-43.3.0.json._comment_: Unknown key [Info: 2024-03-27 11:53:04.0949483: GameVersionManager.cpp(371)] Parsing version 1.19.2-forge-43.3.9 [Warning: 2024-03-27 11:53:04.0952581: GameVersionManager.cpp(385)] 1.19.2-forge-43.3.9.json._comment_: Unknown key [Info: 2024-03-27 11:53:04.0960633: GameVersionManager.cpp(371)] Parsing version 1.20.4 [Warning: 2024-03-27 11:53:04.0971386: JreManifestManager.cpp(276)] Attempting to get the jre component manifest before the manifest was loaded [Info: 2024-03-27 11:53:04.0978013: GameVersionManager.cpp(371)] Parsing version 24w12a [Warning: 2024-03-27 11:53:04.0987755: JreManifestManager.cpp(276)] Attempting to get the jre component manifest before the manifest was loaded [Info: 2024-03-27 11:53:04.1074346: NetQueue.cpp(213)] NetQueue: Starting net action https://launchermeta.mojang.com/v1/products/java-runtime/2ec0cc96c44e5a76b9c8b7c39df7210883d12871/all.json [Info: 2024-03-27 11:53:04.1752365: Xal.lib(0)] XAL: [op 53166992] Client operation StorageReadPlatformOperation calling platform handler [Info: 2024-03-27 11:53:04.1753400: Xal.lib(0)] XAL: [op 53166992] Added operation as handle 032B43FC with type 5955869C [Info: 2024-03-27 11:53:04.1753703: XalStorage.cpp(317)] [op 032B43FC] Xal Read callback - Started [Info: 2024-03-27 11:53:04.1754409: XalStorage.cpp(417)] [op 032B43FC] Xal Read callback - Failed [Info: 2024-03-27 11:53:04.1759939: Xal.lib(0)] XAL: [op 53166992] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Failure' (1) [Info: 2024-03-27 11:53:04.1760306: Xal.lib(0)] XAL: [op 53166992] Cleared operation handle 032B43FC [Info: 2024-03-27 11:53:04.1760540: Xal.lib(0)] XAL: [op 53166992] Client operation StorageReadPlatformOperation failed with result 0x89235107: Client operation failed [Info: 2024-03-27 11:53:04.2888765: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchermeta.mojang.com [Info: 2024-03-27 11:53:04.2889338: NetQueue.cpp(102)] NetQueue: Action finished: https://launchermeta.mojang.com/v1/products/java-runtime/2ec0cc96c44e5a76b9c8b7c39df7210883d12871/all.json [Info: 2024-03-27 11:53:04.2889482: NetQueue.cpp(133)] Action finalized: https://launchermeta.mojang.com/v1/products/java-runtime/2ec0cc96c44e5a76b9c8b7c39df7210883d12871/all.json [Info: 2024-03-27 11:53:04.2890426: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.5.91, Host: www.xboxab.com [Info: 2024-03-27 11:53:04.2890621: NetQueue.cpp(102)] NetQueue: Action finished: https://www.xboxab.com/ab [Error: 2024-03-27 11:53:04.2891831: TreatmentTagFetcher.cpp(112)] https://www.xboxab.com/ab.AssignmentContext: Unknown key [Error: 2024-03-27 11:53:04.2892095: TreatmentTagFetcher.cpp(112)] https://www.xboxab.com/ab.Configs: Unknown key [Error: 2024-03-27 11:53:04.2892321: TreatmentTagFetcher.cpp(112)] https://www.xboxab.com/ab.FlightingVersion: Unknown key [Error: 2024-03-27 11:53:04.2892579: TreatmentTagFetcher.cpp(112)] https://www.xboxab.com/ab.Flights: Unknown key [Error: 2024-03-27 11:53:04.2892781: TreatmentTagFetcher.cpp(112)] https://www.xboxab.com/ab.ImpressionId: Unknown key [Error: 2024-03-27 11:53:04.2892998: TreatmentTagFetcher.cpp(112)] https://www.xboxab.com/ab.ParameterGroups: Unknown key [Info: 2024-03-27 11:53:04.2897374: NetQueue.cpp(133)] Action finalized: https://www.xboxab.com/ab [Info: 2024-03-27 11:53:04.2902293: NetQueue.cpp(213)] NetQueue: Starting net action https://launchermeta.mojang.com/mc/game/version_manifest_v2.json [Info: 2024-03-27 11:53:04.2986121: Xal.lib(0)] XAL: [op 53166992] Client operation StorageReadPlatformOperation continuing (promise 53326752) [Warning: 2024-03-27 11:53:04.2986805: Xal.lib(0)] XAL: Clock skew failed to be read: 0x89235107 "Client operation failed" [Warning: 2024-03-27 11:53:04.2987034: Xal.lib(0)] XAL: [op 53327984] Operation LoadClockSkew failed with result: 0x89235107 - Client operation failed [Info: 2024-03-27 11:53:04.2989484: Xal.lib(0)] XAL: [op 53303352] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:04.2989728: Xal.lib(0)] XAL: [op 53303352] with CV 's7uWKQ0ltxUQNmPM.0.0' [Info: 2024-03-27 11:53:04.2989991: Xal.lib(0)] XAL: [op 53167872] Client operation StorageReadPlatformOperation starting (promise 53327088) [Info: 2024-03-27 11:53:04.2990241: Xal.lib(0)] XAL: [op 53166992] Client operation StorageReadPlatformOperation destroyed [Info: 2024-03-27 11:53:04.2990517: Xal.lib(0)] XAL: [op 53167872] Client operation StorageReadPlatformOperation calling platform handler [Info: 2024-03-27 11:53:04.2990649: Xal.lib(0)] XAL: [op 53167872] Added operation as handle 032B476C with type 5955869C [Info: 2024-03-27 11:53:04.2990755: XalStorage.cpp(317)] [op 032B476C] Xal Read callback - Started [Info: 2024-03-27 11:53:04.2991000: XalStorage.cpp(429)] [op 032B476C] Xal Read callback - Succeeded [Info: 2024-03-27 11:53:04.2992874: Xal.lib(0)] XAL: [op 53167872] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:04.2993133: Xal.lib(0)] XAL: [op 53167872] Cleared operation handle 032B476C [Info: 2024-03-27 11:53:04.2993278: Xal.lib(0)] XAL: [op 53167872] Client operation StorageReadPlatformOperation succeeded [Info: 2024-03-27 11:53:04.3197369: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchermeta.mojang.com [Info: 2024-03-27 11:53:04.3197948: NetQueue.cpp(102)] NetQueue: Action finished: https://launchermeta.mojang.com/mc/game/version_manifest_v2.json [Info: 2024-03-27 11:53:04.3198143: NetQueue.cpp(133)] Action finalized: https://launchermeta.mojang.com/mc/game/version_manifest_v2.json [Info: 2024-03-27 11:53:04.3198728: GameVersionManager.cpp(454)] Got available versions manifest from https://launchermeta.mojang.com/mc/game/version_manifest_v2.json [Warning: 2024-03-27 11:53:04.3739475: XalApi.cpp(135)] Failed to register user callback: -2147024846 [Info: 2024-03-27 11:53:04.3742433: CoreFileUtils.cpp(16)] File %USERPROFILE%\AppData\Roaming\.minecraft\launcher_custom_skins.json doesn't exist. Not loading. [Info: 2024-03-27 11:53:04.3742738: SkinManager.cpp(431)] Unable to load skins file. Checking for old file version... [Info: 2024-03-27 11:53:04.3743146: SkinManager.cpp(440)] Failed to read deprecated skins file: %USERPROFILE%\AppData\Roaming\.minecraft\launcher_skins.json Errno such file or directory [Info: 2024-03-27 11:53:04.3743308: ProductInstance.cpp(134)] Allow remote update check, time is due [dungeons-retail-Piston] [Info: 2024-03-27 11:53:04.3745922: NetQueue.cpp(213)] NetQueue: Starting net action https://piston-meta.mojang.com/v1/products/dungeons/f4c685912beb55eb2d5c9e0713fe1195164bba27/windows-x64.json [Info: 2024-03-27 11:53:04.3782539: CefUI.cpp(123)] Web cache is compatible with current CEF version. [Info: 2024-03-27 11:53:04.3782921: CefUI.cpp(145)] Web cache path: %USERPROFILE%\AppData\Roaming\.minecraft\webcache2 [Info: 2024-03-27 11:53:04.3928629: LauncherApp.cpp(92)] Disable hardware acceleration. [Info: 2024-03-27 11:53:04.4266545: Xal.lib(0)] XAL: [op 53167872] Client operation StorageReadPlatformOperation continuing (promise 53327088) [Info: 2024-03-27 11:53:04.4271877: Xal.lib(0)] XAL: [op 53165760] Client operation StorageReadPlatformOperation starting (promise 53328768) [Info: 2024-03-27 11:53:04.4272329: Xal.lib(0)] XAL: [op 53167872] Client operation StorageReadPlatformOperation destroyed [Info: 2024-03-27 11:53:04.4272723: Xal.lib(0)] XAL: [op 53165760] Client operation StorageReadPlatformOperation calling platform handler [Info: 2024-03-27 11:53:04.4272987: Xal.lib(0)] XAL: [op 53165760] Added operation as handle 032B3F2C with type 5955869C [Info: 2024-03-27 11:53:04.4273226: XalStorage.cpp(317)] [op 032B3F2C] Xal Read callback - Started [Info: 2024-03-27 11:53:04.4379052: XalStorage.cpp(429)] [op 032B3F2C] Xal Read callback - Succeeded [Info: 2024-03-27 11:53:04.4380460: Xal.lib(0)] XAL: [op 53165760] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:04.4380690: Xal.lib(0)] XAL: [op 53165760] Cleared operation handle 032B3F2C [Info: 2024-03-27 11:53:04.4380937: Xal.lib(0)] XAL: [op 53165760] Client operation StorageReadPlatformOperation succeeded [Info: 2024-03-27 11:53:04.4630513: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: piston-meta.mojang.com [Info: 2024-03-27 11:53:04.4630903: NetQueue.cpp(102)] NetQueue: Action finished: https://piston-meta.mojang.com/v1/products/dungeons/f4c685912beb55eb2d5c9e0713fe1195164bba27/windows-x64.json [Info: 2024-03-27 11:53:04.4631048: NetQueue.cpp(133)] Action finalized: https://piston-meta.mojang.com/v1/products/dungeons/f4c685912beb55eb2d5c9e0713fe1195164bba27/windows-x64.json [Info: 2024-03-27 11:53:04.4632293: NetQueue.cpp(213)] NetQueue: Starting net action https://piston-meta.mojang.com/v1/packages/be87f824e3d0be9ad76131d649d14c2878d39fa7/manifest.json [Info: 2024-03-27 11:53:04.4846446: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: piston-meta.mojang.com [Info: 2024-03-27 11:53:04.4846847: NetQueue.cpp(102)] NetQueue: Action finished: https://piston-meta.mojang.com/v1/packages/be87f824e3d0be9ad76131d649d14c2878d39fa7/manifest.json [Info: 2024-03-27 11:53:04.4846988: NetQueue.cpp(133)] Action finalized: https://piston-meta.mojang.com/v1/packages/be87f824e3d0be9ad76131d649d14c2878d39fa7/manifest.json [Info: 2024-03-27 11:53:04.4878424: ProductInstance.cpp(159)] Committed remote update check [dungeons-retail-Piston] [Info: 2024-03-27 11:53:04.5545982: LauncherAppBrowser.cpp(82)] Will launch a Chromium subprocess with command line string: "<APPDIR>\Minecraft Launcher\MinecraftLauncher.exe" --type=gpu-process --no-sandbox --log-severity=info --lang=en-US --user-data-dir="%USERPROFILE%\AppData\Local\CEF\User Data" --launcherui --workdir="<WORKDIR>\.minecraft" /prefetch:2 [Info: 2024-03-27 11:53:04.5640700: Xal.lib(0)] XAL: [op 53165760] Client operation StorageReadPlatformOperation continuing (promise 53328768) [Info: 2024-03-27 11:53:04.5646243: Xal.lib(0)] XAL: [op 69344832] Client operation StorageReadPlatformOperation starting (promise 69236448) [Info: 2024-03-27 11:53:04.5646634: Xal.lib(0)] XAL: [op 53165760] Client operation StorageReadPlatformOperation destroyed [Info: 2024-03-27 11:53:04.5647093: Xal.lib(0)] XAL: [op 69344832] Client operation StorageReadPlatformOperation calling platform handler [Info: 2024-03-27 11:53:04.5647413: Xal.lib(0)] XAL: [op 69344832] Added operation as handle 04221EAC with type 5955869C [Info: 2024-03-27 11:53:04.5647672: XalStorage.cpp(317)] [op 04221EAC] Xal Read callback - Started [Info: 2024-03-27 11:53:04.5652655: XalStorage.cpp(429)] [op 04221EAC] Xal Read callback - Succeeded [Info: 2024-03-27 11:53:04.5654069: Xal.lib(0)] XAL: [op 69344832] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:04.5654306: Xal.lib(0)] XAL: [op 69344832] Cleared operation handle 04221EAC [Info: 2024-03-27 11:53:04.5655001: Xal.lib(0)] XAL: [op 69344832] Client operation StorageReadPlatformOperation succeeded [Info: 2024-03-27 11:53:04.6881978: LauncherAppBrowser.cpp(63)] Work dir is %USERPROFILE%\AppData\Roaming\.minecraft [Info: 2024-03-27 11:53:04.6894650: main_context.cpp(132)] CEF initialized successfully. [Info: 2024-03-27 11:53:04.6895048: main_context.cpp(134)] CEF version: 99.2.14+g3f796b8+chromium-99.0.4844.84 [Info: 2024-03-27 11:53:04.6902655: UserIdentity.cpp(172)] Starting auto sign in [Info: 2024-03-27 11:53:04.6921585: Xal.lib(0)] XAL: [op 69344832] Client operation StorageReadPlatformOperation continuing (promise 69236448) [Info: 2024-03-27 11:53:04.6922537: Xal.lib(0)] XAL: [op 53303352] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:04.6925425: Xal.lib(0)] XAL: [op 69841584] Operation NsalDb_LoadDefaultNsal is starting [Info: 2024-03-27 11:53:04.6925766: Xal.lib(0)] XAL: [op 69841584] with CV 's7uWKQ0ltxUQNmPM.0.0' [Info: 2024-03-27 11:53:04.6927786: Xal.lib(0)] XAL: [op 69344832] Client operation StorageReadPlatformOperation destroyed [Info: 2024-03-27 11:53:04.6928719: NetQueue.cpp(213)] NetQueue: Starting net action title.mgt.xboxlive.com [Info: 2024-03-27 11:53:04.7081029: ProductInstance.cpp(138)] Do not allow remote update check, time is not due, [dungeons-retail-Piston] [Info: 2024-03-27 11:53:04.7249022: root_window_manager.cpp(57)] Main window has been opened: 042CB660 [Info: 2024-03-27 11:53:04.7386067: LauncherAppBrowser.cpp(82)] Will launch a Chromium subprocess with command line string: "<APPDIR>\Minecraft Launcher\MinecraftLauncher.exe" --type=utility --utility-sub-type=storage.mojom.StorageService --lang=en-US --service-sandbox-type=utility --no-sandbox --log-severity=info --lang=en-US --user-data-dir="%USERPROFILE%\AppData\Local\CEF\User Data" --launcherui --workdir="<WORKDIR>\.minecraft" /prefetch:8 [Info: 2024-03-27 11:53:04.7449904: LauncherAppBrowser.cpp(82)] Will launch a Chromium subprocess with command line string: "<APPDIR>\Minecraft Launcher\MinecraftLauncher.exe" --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=none --no-sandbox --log-severity=info --lang=en-US --user-data-dir="%USERPROFILE%\AppData\Local\CEF\User Data" --launcherui --workdir="<WORKDIR>\.minecraft" /prefetch:8 [Info: 2024-03-27 11:53:04.8337769: LauncherAppBrowser.cpp(82)] Will launch a Chromium subprocess with command line string: "<APPDIR>\Minecraft Launcher\MinecraftLauncher.exe" --type=renderer --log-severity=info --user-data-dir="%USERPROFILE%\AppData\Local\CEF\User Data" --launcherui --workdir="<WORKDIR>\.minecraft" [Info: 2024-03-27 11:53:04.8343668: LauncherAppBrowser.cpp(82)] Will launch a Chromium subprocess with command line string: "<APPDIR>\Minecraft Launcher\MinecraftLauncher.exe" --type=renderer --log-severity=info --user-data-dir="%USERPROFILE%\AppData\Local\CEF\User Data" --launcherui --workdir="<WORKDIR>\.minecraft" [Info: 2024-03-27 11:53:04.9288809: ProductInstance.cpp(114)] Allow remote update check, no entry found [java-retail-Piston] [Info: 2024-03-27 11:53:04.8903339: LauncherMain.cpp(112)] Initiated models [Info: 2024-03-27 11:53:04.8908250: LauncherController.cpp(665)] Constructing launcher controller with workDir: C:\...\.minecraft, isActive: 0 [Info: 2024-03-27 11:53:04.9021210: LauncherAppRenderer.cpp(177)] Javascript bridge extended in OnWebKitInitialized. [Info: 2024-03-27 11:53:05.1497074: ProductInstance.cpp(114)] Allow remote update check, no entry found [java-retail-Piston] [Info: 2024-03-27 11:53:05.2587486: LauncherAppRenderer.cpp(325)] OnContextCreated: main frame. Url=https://mojang/launcher/index.html browser id=1 [Info: 2024-03-27 11:53:05.2587993: LauncherAppRenderer.cpp(337)] OnContextCreated: Create JS bindings in main browser. [Info: 2024-03-27 11:53:05.3316768: LauncherAppRenderer.cpp(524)] Javascript bridge extended in OnContextCreated. [Info: 2024-03-27 11:53:05.4695114: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 40.65.111.94, Host: title.mgt.xboxlive.com [Info: 2024-03-27 11:53:05.4695712: NetQueue.cpp(102)] NetQueue: Action finished: title.mgt.xboxlive.com [Info: 2024-03-27 11:53:05.4696592: NetQueue.cpp(133)] Action finalized: title.mgt.xboxlive.com [Info: 2024-03-27 11:53:05.5540347: ControllerInterface.cpp(106)] Running method getStore [Info: 2024-03-27 11:53:05.5545335: ControllerInterface.cpp(106)] Running method getStore [Info: 2024-03-27 11:53:05.5574193: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:05.5578848: client_handler.cpp(430)] Handling PostLegacyTelemetryEvent message [Info: 2024-03-27 11:53:05.5581140: ControllerInterface.cpp(106)] Running method telemetryEventUiAction [Info: 2024-03-27 11:53:05.5590042: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:05.5659711: Xal.lib(0)] XAL: [op 69841584] Operation NsalDb_LoadDefaultNsal succeeded. [Info: 2024-03-27 11:53:05.5663335: Xal.lib(0)] XAL: [op 69102360] Operation GetDtoken is starting [Info: 2024-03-27 11:53:05.5663573: Xal.lib(0)] XAL: [op 69102360] with CV 's7uWKQ0ltxUQNmPM.0.1' [Info: 2024-03-27 11:53:05.5665985: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000045B133E5B8) [Info: 2024-03-27 11:53:05.5666228: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:53:05.5660000Z, systemNow:2024-03-27T11:53:05.5660000Z} [Info: 2024-03-27 11:53:05.5666431: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000045B133E5B8) [Info: 2024-03-27 11:53:05.5666580: Xal.lib(0)] XAL: [op 69102360] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:05.5667239: Xal.lib(0)] XAL: [op 53011760] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:05.5667834: Xal.lib(0)] XAL: [op 53326416] Operation InitializeComponents succeeded. [Info: 2024-03-27 11:53:05.5668406: Xal.lib(0)] XAL: [op 67182328] Operation TryAddFirstUserSilently is starting [Info: 2024-03-27 11:53:05.5668544: Xal.lib(0)] XAL: [op 67182328] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:05.5670294: Xal.lib(0)] XAL: [op 68720720] Operation GetDefaultUser is starting [Info: 2024-03-27 11:53:05.5670451: Xal.lib(0)] XAL: [op 68720720] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:05.5671020: Xal.lib(0)] XAL: [op 53012552] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:05.5671159: Xal.lib(0)] XAL: [op 53012552] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:05.5671724: Xal.lib(0)] XAL: [op 69844720] Operation LoadClockSkew is starting [Info: 2024-03-27 11:53:05.5671880: Xal.lib(0)] XAL: [op 69844720] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:05.5672049: Xal.lib(0)] XAL: [op 69340432] Client operation StorageReadPlatformOperation starting (promise 69842816) [Info: 2024-03-27 11:53:05.5672247: Xal.lib(0)] XAL: [op 69340432] Client operation StorageReadPlatformOperation calling platform handler [Info: 2024-03-27 11:53:05.5672394: Xal.lib(0)] XAL: [op 69340432] Added operation as handle 04220D7C with type 5955869C [Info: 2024-03-27 11:53:05.5672518: XalStorage.cpp(317)] [op 04220D7C] Xal Read callback - Started [Info: 2024-03-27 11:53:05.5672719: XalStorage.cpp(417)] [op 04220D7C] Xal Read callback - Failed [Info: 2024-03-27 11:53:05.5673711: Xal.lib(0)] XAL: [op 69340432] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Failure' (1) [Info: 2024-03-27 11:53:05.5673880: Xal.lib(0)] XAL: [op 69340432] Cleared operation handle 04220D7C [Info: 2024-03-27 11:53:05.5674037: Xal.lib(0)] XAL: [op 69340432] Client operation StorageReadPlatformOperation failed with result 0x89235107: Client operation failed [Info: 2024-03-27 11:53:05.5979780: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:53:05.6012105: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:05.6013983: ControllerInterface.cpp(106)] Running method checkForUpdates [Info: 2024-03-27 11:53:05.6021764: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:05.6025019: client_handler.cpp(430)] Handling PostLegacyTelemetryEvent message [Info: 2024-03-27 11:53:05.6027042: ControllerInterface.cpp(106)] Running method telemetryEventUiAction [Info: 2024-03-27 11:53:05.6031088: KeyMakerCache.cpp(220)] Initializing KeyMaker response cache for prod... [Info: 2024-03-27 11:53:05.6031411: KeyMakerCache.cpp(226)] KeyMaker response cache initialized. [Info: 2024-03-27 11:53:05.6032142: LauncherController.cpp(1111)] Checking KeyMaker for updates... [Info: 2024-03-27 11:53:05.6032320: KeyMakerCache.cpp(220)] Initializing KeyMaker response cache for prod... [Info: 2024-03-27 11:53:05.6032471: KeyMakerCache.cpp(222)] KeyMaker response cache already initialized. [Info: 2024-03-27 11:53:05.6036265: MSIPatchInstaller.cpp(370)] Sending telemetry product id: {6A960B34-5197-49DE-AC60-1177DFE24976}, MSI version: 2.0.0.0 , default location: 1 [Info: 2024-03-27 11:53:05.6037433: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:05.6042106: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:05.6046418: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:05.6054080: ControllerInterface.cpp(106)] Running method setStore [Warning: 2024-03-27 11:53:05.6104752: app.5c3b513f.bundle.js(2)] OnConsoleMessage: Skipping acting on uninitialized treatment tags [Info: 2024-03-27 11:53:05.6123171: ControllerInterface.cpp(106)] Running method getAccountData [Info: 2024-03-27 11:53:05.6753531: ControllerInterface.cpp(106)] Running method gamecoreLauncherInstallState [Info: 2024-03-27 11:53:05.6791620: GamecoreClientApi_win32.cpp(148)] Did not find matching amuid [Info: 2024-03-27 11:53:05.6792035: LauncherController.cpp(1582)] Microsoft Store Launcher is NotInstalled [Info: 2024-03-27 11:53:05.6793304: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:53:05.6794038: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:53:05.6794508: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:53:05.6906583: Xal.lib(0)] XAL: [op 69340432] Client operation StorageReadPlatformOperation continuing (promise 69842816) [Warning: 2024-03-27 11:53:05.6907075: Xal.lib(0)] XAL: Clock skew failed to be read: 0x89235107 "Client operation failed" [Warning: 2024-03-27 11:53:05.6907322: Xal.lib(0)] XAL: [op 69844720] Operation LoadClockSkew failed with result: 0x89235107 - Client operation failed [Info: 2024-03-27 11:53:05.6909196: Xal.lib(0)] XAL: [op 70035488] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:05.6909543: Xal.lib(0)] XAL: [op 70035488] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:05.6909766: Xal.lib(0)] XAL: [op 70035488] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:05.6910733: Xal.lib(0)] XAL: [op 53012552] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:05.6912414: Xal.lib(0)] XAL: [op 70046584] Operation LoadDefaultUser is starting [Info: 2024-03-27 11:53:05.6912662: Xal.lib(0)] XAL: [op 70046584] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:05.6912991: Xal.lib(0)] XAL: [op 69338496] Client operation StorageReadPlatformOperation starting (promise 53329328) [Info: 2024-03-27 11:53:05.6913737: Xal.lib(0)] XAL: [op 69340432] Client operation StorageReadPlatformOperation destroyed [Info: 2024-03-27 11:53:05.6914128: Xal.lib(0)] XAL: [op 69338496] Client operation StorageReadPlatformOperation calling platform handler [Info: 2024-03-27 11:53:05.6914364: Xal.lib(0)] XAL: [op 69338496] Added operation as handle 042205EC with type 5955869C [Info: 2024-03-27 11:53:05.6914557: XalStorage.cpp(317)] [op 042205EC] Xal Read callback - Started [Info: 2024-03-27 11:53:05.6918871: XalStorage.cpp(429)] [op 042205EC] Xal Read callback - Succeeded [Info: 2024-03-27 11:53:05.6920317: Xal.lib(0)] XAL: [op 69338496] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:05.6920545: Xal.lib(0)] XAL: [op 69338496] Cleared operation handle 042205EC [Info: 2024-03-27 11:53:05.6920693: Xal.lib(0)] XAL: [op 69338496] Client operation StorageReadPlatformOperation succeeded [Info: 2024-03-27 11:53:05.7007765: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/promotionalCalendars.json [Info: 2024-03-27 11:53:05.7066465: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/launcherPatchNotes_v2.json [Info: 2024-03-27 11:53:05.7066909: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/alertMessaging.json [Info: 2024-03-27 11:53:05.7067084: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/games.json [Info: 2024-03-27 11:53:05.8136391: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:05.8136910: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/alertMessaging.json [Info: 2024-03-27 11:53:05.8137214: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/alertMessaging.json [Info: 2024-03-27 11:53:05.8159294: ControllerInterface.cpp(106)] Running method reportLatency [Info: 2024-03-27 11:53:05.8156592: Xal.lib(0)] XAL: [op 69338496] Client operation StorageReadPlatformOperation continuing (promise 53329328) [Info: 2024-03-27 11:53:05.8161177: Xal.lib(0)] XAL: [op 69342016] Client operation StorageReadPlatformOperation starting (promise 69845168) [Info: 2024-03-27 11:53:05.8161497: Xal.lib(0)] XAL: [op 69338496] Client operation StorageReadPlatformOperation destroyed [Info: 2024-03-27 11:53:05.8161846: Xal.lib(0)] XAL: [op 69342016] Client operation StorageReadPlatformOperation calling platform handler [Info: 2024-03-27 11:53:05.8162082: Xal.lib(0)] XAL: [op 69342016] Added operation as handle 042213AC with type 5955869C [Info: 2024-03-27 11:53:05.8162277: XalStorage.cpp(317)] [op 042213AC] Xal Read callback - Started [Info: 2024-03-27 11:53:05.8171707: XalStorage.cpp(429)] [op 042213AC] Xal Read callback - Succeeded [Info: 2024-03-27 11:53:05.8173176: Xal.lib(0)] XAL: [op 69342016] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:05.8173408: Xal.lib(0)] XAL: [op 69342016] Cleared operation handle 042213AC [Info: 2024-03-27 11:53:05.8173571: Xal.lib(0)] XAL: [op 69342016] Client operation StorageReadPlatformOperation succeeded [Info: 2024-03-27 11:53:05.8179434: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:05.8179765: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/games.json [Info: 2024-03-27 11:53:05.8180058: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/games.json [Info: 2024-03-27 11:53:05.8263067: ControllerInterface.cpp(106)] Running method reportLatency [Info: 2024-03-27 11:53:05.8399626: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:05.8400211: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/launcherPatchNotes_v2.json [Info: 2024-03-27 11:53:05.8400694: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/launcherPatchNotes_v2.json [Info: 2024-03-27 11:53:05.8401133: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/images/6UixrnNk4x0TP4XWaoo2kyTrailsAndTalesKeyartHero.jpeg [Info: 2024-03-27 11:53:05.8401388: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/images/2beS7kExnC1ruqkKRmgpC1MCLiveBackGround.jpeg [Info: 2024-03-27 11:53:05.8432511: ControllerInterface.cpp(106)] Running method reportLatency [Info: 2024-03-27 11:53:05.8531793: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:05.8532343: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/promotionalCalendars.json [Info: 2024-03-27 11:53:05.8532640: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/promotionalCalendars.json [Info: 2024-03-27 11:53:05.9055418: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:05.9055887: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/images/2beS7kExnC1ruqkKRmgpC1MCLiveBackGround.jpeg [Info: 2024-03-27 11:53:05.9056395: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/images/2beS7kExnC1ruqkKRmgpC1MCLiveBackGround.jpeg [Info: 2024-03-27 11:53:05.9399385: Xal.lib(0)] XAL: [op 69342016] Client operation StorageReadPlatformOperation continuing (promise 69845168) [Info: 2024-03-27 11:53:05.9400276: Xal.lib(0)] XAL: [op 70046584] Operation LoadDefaultUser succeeded. [Info: 2024-03-27 11:53:05.9401650: Xal.lib(0)] XAL: [op 67050480] Operation LoadTokensForUser is starting [Info: 2024-03-27 11:53:05.9401830: Xal.lib(0)] XAL: [op 67050480] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:05.9402054: Xal.lib(0)] XAL: [op 69339376] Client operation StorageReadPlatformOperation starting (promise 53329328) [Info: 2024-03-27 11:53:05.9402261: Xal.lib(0)] XAL: [op 69342016] Client operation StorageReadPlatformOperation destroyed [Info: 2024-03-27 11:53:05.9402510: Xal.lib(0)] XAL: [op 69339376] Client operation StorageReadPlatformOperation calling platform handler [Info: 2024-03-27 11:53:05.9402676: Xal.lib(0)] XAL: [op 69339376] Added operation as handle 0422095C with type 5955869C [Info: 2024-03-27 11:53:05.9402797: XalStorage.cpp(317)] [op 0422095C] Xal Read callback - Started [Info: 2024-03-27 11:53:05.9423496: XalStorage.cpp(429)] [op 0422095C] Xal Read callback - Succeeded [Info: 2024-03-27 11:53:05.9426341: Xal.lib(0)] XAL: [op 69339376] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:05.9426674: Xal.lib(0)] XAL: [op 69339376] Cleared operation handle 0422095C [Info: 2024-03-27 11:53:05.9426841: Xal.lib(0)] XAL: [op 69339376] Client operation StorageReadPlatformOperation succeeded [Info: 2024-03-27 11:53:05.9636820: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:05.9637404: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/images/6UixrnNk4x0TP4XWaoo2kyTrailsAndTalesKeyartHero.jpeg [Info: 2024-03-27 11:53:05.9638787: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/images/6UixrnNk4x0TP4XWaoo2kyTrailsAndTalesKeyartHero.jpeg [Info: 2024-03-27 11:53:06.0648504: Xal.lib(0)] XAL: [op 69339376] Client operation StorageReadPlatformOperation continuing (promise 53329328) [Info: 2024-03-27 11:53:06.0650489: Xal.lib(0)] XAL: [op 67050480] Operation LoadTokensForUser succeeded. [Info: 2024-03-27 11:53:06.0652751: Xal.lib(0)] XAL: [op 179795840] Operation GetXtoken is starting [Info: 2024-03-27 11:53:06.0653197: Xal.lib(0)] XAL: [op 179795840] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:06.0654153: Xal.lib(0)] XAL: [op 53018888] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:06.0654432: Xal.lib(0)] XAL: [op 53018888] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:06.0655356: Xal.lib(0)] XAL: [op 53326416] Operation LoadClockSkew is starting [Info: 2024-03-27 11:53:06.0655605: Xal.lib(0)] XAL: [op 53326416] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:06.0655879: Xal.lib(0)] XAL: [op 69339728] Client operation StorageReadPlatformOperation starting (promise 69841584) [Info: 2024-03-27 11:53:06.0656208: Xal.lib(0)] XAL: [op 69339376] Client operation StorageReadPlatformOperation destroyed [Info: 2024-03-27 11:53:06.0656576: Xal.lib(0)] XAL: [op 69339728] Client operation StorageReadPlatformOperation calling platform handler [Info: 2024-03-27 11:53:06.0656818: Xal.lib(0)] XAL: [op 69339728] Added operation as handle 04220ABC with type 5955869C [Info: 2024-03-27 11:53:06.0657008: XalStorage.cpp(317)] [op 04220ABC] Xal Read callback - Started [Info: 2024-03-27 11:53:06.0657437: XalStorage.cpp(417)] [op 04220ABC] Xal Read callback - Failed [Info: 2024-03-27 11:53:06.0659174: Xal.lib(0)] XAL: [op 69339728] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Failure' (1) [Info: 2024-03-27 11:53:06.0659488: Xal.lib(0)] XAL: [op 69339728] Cleared operation handle 04220ABC [Info: 2024-03-27 11:53:06.0659737: Xal.lib(0)] XAL: [op 69339728] Client operation StorageReadPlatformOperation failed with result 0x89235107: Client operation failed [Info: 2024-03-27 11:53:06.1892211: Xal.lib(0)] XAL: [op 69339728] Client operation StorageReadPlatformOperation continuing (promise 69841584) [Warning: 2024-03-27 11:53:06.1892941: Xal.lib(0)] XAL: Clock skew failed to be read: 0x89235107 "Client operation failed" [Warning: 2024-03-27 11:53:06.1893227: Xal.lib(0)] XAL: [op 53326416] Operation LoadClockSkew failed with result: 0x89235107 - Client operation failed [Info: 2024-03-27 11:53:06.1895381: Xal.lib(0)] XAL: [op 70034368] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:06.1895649: Xal.lib(0)] XAL: [op 70034368] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:06.1895891: Xal.lib(0)] XAL: [op 70034368] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:06.1897468: Xal.lib(0)] XAL: [op 69098160] Operation GetDtoken is starting [Info: 2024-03-27 11:53:06.1897810: Xal.lib(0)] XAL: [op 69098160] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:06.1898187: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000045D6597CCC) [Info: 2024-03-27 11:53:06.1898442: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:53:06.1890000Z, systemNow:2024-03-27T11:53:06.1890000Z} [Info: 2024-03-27 11:53:06.1898642: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000045D6597CCC) [Info: 2024-03-27 11:53:06.1898853: Xal.lib(0)] XAL: [op 69098160] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:06.1899635: Xal.lib(0)] XAL: [op 53018888] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:06.1900758: Xal.lib(0)] XAL: [op 69101960] Operation GetDtoken is starting [Info: 2024-03-27 11:53:06.1900922: Xal.lib(0)] XAL: [op 69101960] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:06.1901082: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000045D65DEAC8) [Info: 2024-03-27 11:53:06.1901301: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:53:06.1890000Z, systemNow:2024-03-27T11:53:06.1890000Z} [Info: 2024-03-27 11:53:06.1901499: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000045D65DEAC8) [Info: 2024-03-27 11:53:06.1901697: Xal.lib(0)] XAL: [op 69101960] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:06.1902888: Xal.lib(0)] XAL: [op 70192984] Operation GetMsaTicket is starting [Info: 2024-03-27 11:53:06.1903067: Xal.lib(0)] XAL: [op 70192984] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:06.1903671: Xal.lib(0)] XAL: [op 53011760] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:06.1903842: Xal.lib(0)] XAL: [op 53011760] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:06.1904450: Xal.lib(0)] XAL: [op 53329328] Operation LoadClockSkew is starting [Info: 2024-03-27 11:53:06.1904618: Xal.lib(0)] XAL: [op 53329328] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:06.1904828: Xal.lib(0)] XAL: [op 69341312] Client operation StorageReadPlatformOperation starting (promise 179075728) [Info: 2024-03-27 11:53:06.1905076: Xal.lib(0)] XAL: [op 69339728] Client operation StorageReadPlatformOperation destroyed [Info: 2024-03-27 11:53:06.1905349: Xal.lib(0)] XAL: [op 69341312] Client operation StorageReadPlatformOperation calling platform handler [Info: 2024-03-27 11:53:06.1905529: Xal.lib(0)] XAL: [op 69341312] Added operation as handle 042210EC with type 5955869C [Info: 2024-03-27 11:53:06.1905672: XalStorage.cpp(317)] [op 042210EC] Xal Read callback - Started [Info: 2024-03-27 11:53:06.1905957: XalStorage.cpp(417)] [op 042210EC] Xal Read callback - Failed [Info: 2024-03-27 11:53:06.1907416: Xal.lib(0)] XAL: [op 69341312] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Failure' (1) [Info: 2024-03-27 11:53:06.1907698: Xal.lib(0)] XAL: [op 69341312] Cleared operation handle 042210EC [Info: 2024-03-27 11:53:06.1908007: Xal.lib(0)] XAL: [op 69341312] Client operation StorageReadPlatformOperation failed with result 0x89235107: Client operation failed [Info: 2024-03-27 11:53:06.3136694: Xal.lib(0)] XAL: [op 69341312] Client operation StorageReadPlatformOperation continuing (promise 179075728) [Warning: 2024-03-27 11:53:06.3137382: Xal.lib(0)] XAL: Clock skew failed to be read: 0x89235107 "Client operation failed" [Warning: 2024-03-27 11:53:06.3137667: Xal.lib(0)] XAL: [op 53329328] Operation LoadClockSkew failed with result: 0x89235107 - Client operation failed [Info: 2024-03-27 11:53:06.3139813: Xal.lib(0)] XAL: [op 70036888] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:06.3140087: Xal.lib(0)] XAL: [op 70036888] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:06.3140323: Xal.lib(0)] XAL: [op 70036888] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:06.3142247: Xal.lib(0)] XAL: [op 69103760] Operation GetDtoken is starting [Info: 2024-03-27 11:53:06.3142529: Xal.lib(0)] XAL: [op 69103760] with CV 's7uWKQ0ltxUQNmPM.5.0' [Info: 2024-03-27 11:53:06.3142789: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000045DDC48C90) [Info: 2024-03-27 11:53:06.3143760: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:53:06.3130000Z, systemNow:2024-03-27T11:53:06.3130000Z} [Info: 2024-03-27 11:53:06.3144071: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000045DDC48C90) [Info: 2024-03-27 11:53:06.3144318: Xal.lib(0)] XAL: [op 69103760] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:06.3145056: Xal.lib(0)] XAL: [op 53011760] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:06.3145785: Xal.lib(0)] XAL: >>> Xal::Auth::MsaTicketSet::GetTicket (00000045DDC92DB8) [Info: 2024-03-27 11:53:06.3146030: Xal.lib(0)] XAL: Found requested token in cache: [firstScope:service::user.auth.xboxlive.com::MBI_SSL]:{expiry:2024-03-26T10:18:10.0410000Z, now:2024-03-27T11:53:06.3140000Z, systemNow:2024-03-27T11:53:06.3140000Z} [Info: 2024-03-27 11:53:06.3146223: Xal.lib(0)] XAL: Ticket found but is expired. [Info: 2024-03-27 11:53:06.3146409: Xal.lib(0)] XAL: <<< Xal::Auth::MsaTicketSet::GetTicket (00000045DDC92DB8) [Info: 2024-03-27 11:53:06.3147552: Xal.lib(0)] XAL: [op 69341312] Client operation StorageReadPlatformOperation destroyed [Info: 2024-03-27 11:53:06.3148169: NetQueue.cpp(213)] NetQueue: Starting net action login.live.com [Info: 2024-03-27 11:53:07.0377943: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 40.126.16.163, Host: login.live.com [Info: 2024-03-27 11:53:07.0378330: NetQueue.cpp(102)] NetQueue: Action finished: login.live.com [Info: 2024-03-27 11:53:07.0379038: NetQueue.cpp(133)] Action finalized: login.live.com [Warning: 2024-03-27 11:53:07.0622726: Xal.lib(0)] XAL: Received a different CV on service response. original:'s7uWKQ0ltxUQNmPM.5.0' received:'' [Info: 2024-03-27 11:53:07.0623840: Xal.lib(0)] XAL: [op 69901968] Operation WriteTicketSet is starting [Info: 2024-03-27 11:53:07.0624023: Xal.lib(0)] XAL: [op 69901968] with CV 's7uWKQ0ltxUQNmPM.5.1' [Info: 2024-03-27 11:53:07.0624292: Xal.lib(0)] XAL: [op 69342016] Client operation StorageWritePlatformOperation starting (promise 53444568) [Info: 2024-03-27 11:53:07.0624622: Xal.lib(0)] XAL: [op 69342016] Client operation StorageWritePlatformOperation calling platform handler [Info: 2024-03-27 11:53:07.0624805: Xal.lib(0)] XAL: [op 69342016] Added operation as handle 042213AC with type 59558694 [Info: 2024-03-27 11:53:07.0624967: XalStorage.cpp(235)] [op 042213AC] Xal Write callback - Started [Info: 2024-03-27 11:53:07.0750302: Xal.lib(0)] XAL: [op 69342016] Client operation StorageWritePlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:07.0750674: Xal.lib(0)] XAL: [op 69342016] Cleared operation handle 042213AC [Info: 2024-03-27 11:53:07.0750835: Xal.lib(0)] XAL: [op 69342016] Client operation StorageWritePlatformOperation succeeded [Info: 2024-03-27 11:53:07.0751471: XalStorage.cpp(299)] [op 042213AC] Xal Write callback - Succeeded [Info: 2024-03-27 11:53:07.2027052: Xal.lib(0)] XAL: [op 69342016] Client operation StorageWritePlatformOperation continuing (promise 53444568) [Info: 2024-03-27 11:53:07.2027799: Xal.lib(0)] XAL: [op 69339904] Client operation StorageWritePlatformOperation starting (promise 53445336) [Info: 2024-03-27 11:53:07.2028094: Xal.lib(0)] XAL: [op 69342016] Client operation StorageWritePlatformOperation destroyed [Info: 2024-03-27 11:53:07.2028422: Xal.lib(0)] XAL: [op 69339904] Client operation StorageWritePlatformOperation calling platform handler [Info: 2024-03-27 11:53:07.2028630: Xal.lib(0)] XAL: [op 69339904] Added operation as handle 04220B6C with type 59558694 [Info: 2024-03-27 11:53:07.2028807: XalStorage.cpp(235)] [op 04220B6C] Xal Write callback - Started [Info: 2024-03-27 11:53:07.2276407: Xal.lib(0)] XAL: [op 69339904] Client operation StorageWritePlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:07.2276785: Xal.lib(0)] XAL: [op 69339904] Cleared operation handle 04220B6C [Info: 2024-03-27 11:53:07.2276950: Xal.lib(0)] XAL: [op 69339904] Client operation StorageWritePlatformOperation succeeded [Info: 2024-03-27 11:53:07.2277582: XalStorage.cpp(299)] [op 04220B6C] Xal Write callback - Succeeded [Info: 2024-03-27 11:53:07.3584668: Xal.lib(0)] XAL: [op 69339904] Client operation StorageWritePlatformOperation continuing (promise 53445336) [Info: 2024-03-27 11:53:07.3585746: Xal.lib(0)] XAL: [op 69341664] Client operation StorageWritePlatformOperation starting (promise 53444088) [Info: 2024-03-27 11:53:07.3586104: Xal.lib(0)] XAL: [op 69339904] Client operation StorageWritePlatformOperation destroyed [Info: 2024-03-27 11:53:07.3586496: Xal.lib(0)] XAL: [op 69341664] Client operation StorageWritePlatformOperation calling platform handler [Info: 2024-03-27 11:53:07.3586789: Xal.lib(0)] XAL: [op 69341664] Added operation as handle 0422124C with type 59558694 [Info: 2024-03-27 11:53:07.3587029: XalStorage.cpp(235)] [op 0422124C] Xal Write callback - Started [Info: 2024-03-27 11:53:07.3809176: Xal.lib(0)] XAL: [op 69341664] Client operation StorageWritePlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:07.3809551: Xal.lib(0)] XAL: [op 69341664] Cleared operation handle 0422124C [Info: 2024-03-27 11:53:07.3809722: Xal.lib(0)] XAL: [op 69341664] Client operation StorageWritePlatformOperation succeeded [Info: 2024-03-27 11:53:07.3810376: XalStorage.cpp(299)] [op 0422124C] Xal Write callback - Succeeded [Info: 2024-03-27 11:53:07.5113069: Xal.lib(0)] XAL: [op 69341664] Client operation StorageWritePlatformOperation continuing (promise 53444088) [Info: 2024-03-27 11:53:07.5113681: Xal.lib(0)] XAL: [op 69901968] Operation WriteTicketSet succeeded. [Info: 2024-03-27 11:53:07.5114839: Xal.lib(0)] XAL: [op 70192984] Operation GetMsaTicket succeeded. [Info: 2024-03-27 11:53:07.5115940: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004625222944) [Info: 2024-03-27 11:53:07.5116292: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Utoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-03-29T14:08:26.5550000Z, now:2024-03-27T11:53:07.5110000Z, systemNow:2024-03-27T11:53:07.5110000Z} [Info: 2024-03-27 11:53:07.5116567: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004625222944) [Info: 2024-03-27 11:53:07.5116757: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004625236CB4) [Info: 2024-03-27 11:53:07.5117031: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Ttoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-08T14:08:26.5530000Z, now:2024-03-27T11:53:07.5110000Z, systemNow:2024-03-27T11:53:07.5110000Z} [Info: 2024-03-27 11:53:07.5117266: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004625236CB4) [Info: 2024-03-27 11:53:07.5118163: Xal.lib(0)] XAL: [op 67050480] Refresh Xtoken running with user: true. [Info: 2024-03-27 11:53:07.5118503: Xal.lib(0)] XAL: [op 67050480] Operation RefreshXtoken is starting [Info: 2024-03-27 11:53:07.5118758: Xal.lib(0)] XAL: [op 67050480] with CV 's7uWKQ0ltxUQNmPM.5.1' [Info: 2024-03-27 11:53:07.5119068: Xal.lib(0)] XAL: [op 67050480] RefreshXtoken token fetch started. [Info: 2024-03-27 11:53:07.5125262: Xal.lib(0)] XAL: [op 69341664] Client operation StorageWritePlatformOperation destroyed [Info: 2024-03-27 11:53:07.5126054: NetQueue.cpp(213)] NetQueue: Starting net action xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:08.5652061: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 52.156.147.113, Host: xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:08.5652532: NetQueue.cpp(102)] NetQueue: Action finished: xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:08.5653047: NetQueue.cpp(133)] Action finalized: xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:08.6490054: Xal.lib(0)] XAL: Clock skew updated. Server time: 2024-03-27T11:49:55.2170000Z - System time: 2024-03-27T11:53:08.6480000Z = skew (seconds) -193 [Info: 2024-03-27 11:53:08.6491376: Xal.lib(0)] XAL: [op 68866400] Operation SaveClockSkew is starting [Info: 2024-03-27 11:53:08.6491654: Xal.lib(0)] XAL: [op 68866400] with CV 's7uWKQ0ltxUQNmPM.5.2' [Info: 2024-03-27 11:53:08.6491920: Xal.lib(0)] XAL: [op 69338496] Client operation StorageWritePlatformOperation starting (promise 53445816) [Info: 2024-03-27 11:53:08.6492430: Xal.lib(0)] XAL: [op 69338496] Client operation StorageWritePlatformOperation calling platform handler [Info: 2024-03-27 11:53:08.6492779: Xal.lib(0)] XAL: [op 69338496] Added operation as handle 042205EC with type 59558694 [Info: 2024-03-27 11:53:08.6493117: XalStorage.cpp(235)] [op 042205EC] Xal Write callback - Started [Info: 2024-03-27 11:53:08.6495928: Xal.lib(0)] XAL: [op 69338496] Client operation StorageWritePlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:08.6496208: Xal.lib(0)] XAL: [op 69338496] Cleared operation handle 042205EC [Info: 2024-03-27 11:53:08.6496382: Xal.lib(0)] XAL: [op 69338496] Client operation StorageWritePlatformOperation succeeded [Info: 2024-03-27 11:53:08.6497022: XalStorage.cpp(311)] [op 042205EC] Xal Write callback - Succeeded [Info: 2024-03-27 11:53:08.7756831: Xal.lib(0)] XAL: [op 69338496] Client operation StorageWritePlatformOperation continuing (promise 53445816) [Info: 2024-03-27 11:53:08.7757508: Xal.lib(0)] XAL: [op 68866400] Operation SaveClockSkew succeeded. [Info: 2024-03-27 11:53:08.7759973: Xal.lib(0)] XAL: [op 69864304] Operation WriteCacheData is starting [Info: 2024-03-27 11:53:08.7760294: Xal.lib(0)] XAL: [op 69864304] with CV 's7uWKQ0ltxUQNmPM.5.2' [Info: 2024-03-27 11:53:08.7760638: Xal.lib(0)] XAL: [op 69340960] Client operation StorageWritePlatformOperation starting (promise 53445912) [Info: 2024-03-27 11:53:08.7760945: Xal.lib(0)] XAL: [op 69338496] Client operation StorageWritePlatformOperation destroyed [Info: 2024-03-27 11:53:08.7761450: Xal.lib(0)] XAL: [op 69340960] Client operation StorageWritePlatformOperation calling platform handler [Info: 2024-03-27 11:53:08.7761835: Xal.lib(0)] XAL: [op 69340960] Added operation as handle 04220F8C with type 59558694 [Info: 2024-03-27 11:53:08.7762047: XalStorage.cpp(235)] [op 04220F8C] Xal Write callback - Started [Info: 2024-03-27 11:53:08.8515813: Xal.lib(0)] XAL: [op 69340960] Client operation StorageWritePlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:08.8516207: Xal.lib(0)] XAL: [op 69340960] Cleared operation handle 04220F8C [Info: 2024-03-27 11:53:08.8516390: Xal.lib(0)] XAL: [op 69340960] Client operation StorageWritePlatformOperation succeeded [Info: 2024-03-27 11:53:08.8517034: XalStorage.cpp(299)] [op 04220F8C] Xal Write callback - Succeeded [Info: 2024-03-27 11:53:08.9736171: Xal.lib(0)] XAL: [op 69340960] Client operation StorageWritePlatformOperation continuing (promise 53445912) [Info: 2024-03-27 11:53:08.9736914: Xal.lib(0)] XAL: [op 69864304] Operation WriteCacheData succeeded. [Info: 2024-03-27 11:53:08.9738247: Xal.lib(0)] XAL: [op 67050480] RefreshXtoken token fetch done. [Info: 2024-03-27 11:53:08.9738531: Xal.lib(0)] XAL: [op 67050480] Operation RefreshXtoken succeeded. [Info: 2024-03-27 11:53:08.9749820: Xal.lib(0)] XAL: [op 69841584] Operation NsalDb_LoadTitleNsal is starting [Info: 2024-03-27 11:53:08.9750218: Xal.lib(0)] XAL: [op 69841584] with CV 's7uWKQ0ltxUQNmPM.5.2' [Info: 2024-03-27 11:53:08.9751474: Xal.lib(0)] XAL: [op 69340960] Client operation StorageWritePlatformOperation destroyed [Info: 2024-03-27 11:53:08.9752221: NetQueue.cpp(213)] NetQueue: Starting net action title.mgt.xboxlive.com [Info: 2024-03-27 11:53:09.1532477: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 40.65.111.94, Host: title.mgt.xboxlive.com [Info: 2024-03-27 11:53:09.1532964: NetQueue.cpp(102)] NetQueue: Action finished: title.mgt.xboxlive.com [Info: 2024-03-27 11:53:09.1533466: NetQueue.cpp(133)] Action finalized: title.mgt.xboxlive.com [Info: 2024-03-27 11:53:09.2273040: Xal.lib(0)] XAL: No signature policies found in NSAL document [Info: 2024-03-27 11:53:09.2273636: Xal.lib(0)] XAL: [op 69841584] Operation NsalDb_LoadTitleNsal succeeded. [Info: 2024-03-27 11:53:09.2274780: Xal.lib(0)] XAL: [op 179795840] Operation GetXtoken succeeded. [Info: 2024-03-27 11:53:09.2275794: Xal.lib(0)] XAL: [op 68720720] Operation GetDefaultUser succeeded. [Info: 2024-03-27 11:53:09.2277592: Xal.lib(0)] XAL: [op 53324232] Operation PresenceHeartbeat is starting [Info: 2024-03-27 11:53:09.2278098: Xal.lib(0)] XAL: [op 53324232] with CV 's7uWKQ0ltxUQNmPM.17.0' [Info: 2024-03-27 11:53:09.2279961: Xal.lib(0)] XAL: [op 180830232] GetTokenAndSignature being run for usertype: User [Info: 2024-03-27 11:53:09.2280305: Xal.lib(0)] XAL: [op 180830232] Operation GetTokenAndSignature is starting [Info: 2024-03-27 11:53:09.2280483: Xal.lib(0)] XAL: [op 180830232] with CV 's7uWKQ0ltxUQNmPM.17.0' [Info: 2024-03-27 11:53:09.2288174: Xal.lib(0)] XAL: [op 53013344] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:09.2288677: Xal.lib(0)] XAL: [op 53013344] with CV 's7uWKQ0ltxUQNmPM.17.0' [Info: 2024-03-27 11:53:09.2289440: Xal.lib(0)] XAL: [op 70035488] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:09.2289627: Xal.lib(0)] XAL: [op 70035488] with CV 's7uWKQ0ltxUQNmPM.17.0' [Info: 2024-03-27 11:53:09.2289801: Xal.lib(0)] XAL: [op 70035488] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:09.2290940: Xal.lib(0)] XAL: [op 69102360] Operation GetDtoken is starting [Info: 2024-03-27 11:53:09.2291116: Xal.lib(0)] XAL: [op 69102360] with CV 's7uWKQ0ltxUQNmPM.17.0' [Info: 2024-03-27 11:53:09.2291292: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (000000468B81B358) [Info: 2024-03-27 11:53:09.2291633: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:49:55.7960000Z, systemNow:2024-03-27T11:53:09.2280000Z} [Info: 2024-03-27 11:53:09.2291851: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (000000468B81B358) [Info: 2024-03-27 11:53:09.2292023: Xal.lib(0)] XAL: [op 69102360] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:09.2292660: Xal.lib(0)] XAL: [op 53013344] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:09.2297448: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (000000468B8B1998) [Info: 2024-03-27 11:53:09.2297693: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Xtoken, relyingParty:http://xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:true hasData:true, isValid:true, xerr:0, expiry:2024-03-28T03:49:55.2170000Z, now:2024-03-27T11:49:55.7970000Z, systemNow:2024-03-27T11:53:09.2290000Z} [Info: 2024-03-27 11:53:09.2297889: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (000000468B8B1998) [Info: 2024-03-27 11:53:09.2298527: Xal.lib(0)] XAL: [op 70126392] Operation GetXtoken is starting [Info: 2024-03-27 11:53:09.2298718: Xal.lib(0)] XAL: [op 70126392] with CV 's7uWKQ0ltxUQNmPM.17.0' [Info: 2024-03-27 11:53:09.2299320: Xal.lib(0)] XAL: [op 53015720] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:09.2299508: Xal.lib(0)] XAL: [op 53015720] with CV 's7uWKQ0ltxUQNmPM.17.0' [Info: 2024-03-27 11:53:09.2300130: Xal.lib(0)] XAL: [op 70034368] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:09.2300316: Xal.lib(0)] XAL: [op 70034368] with CV 's7uWKQ0ltxUQNmPM.17.0' [Info: 2024-03-27 11:53:09.2300475: Xal.lib(0)] XAL: [op 70034368] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:09.2301526: Xal.lib(0)] XAL: [op 69099560] Operation GetDtoken is starting [Info: 2024-03-27 11:53:09.2301710: Xal.lib(0)] XAL: [op 69099560] with CV 's7uWKQ0ltxUQNmPM.17.0' [Info: 2024-03-27 11:53:09.2301871: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (000000468B91D6FC) [Info: 2024-03-27 11:53:09.2302097: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:49:55.7970000Z, systemNow:2024-03-27T11:53:09.2290000Z} [Info: 2024-03-27 11:53:09.2302661: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (000000468B91D6FC) [Info: 2024-03-27 11:53:09.2302857: Xal.lib(0)] XAL: [op 69099560] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:09.2303486: Xal.lib(0)] XAL: [op 53015720] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:09.2304118: Xal.lib(0)] XAL: [op 70126392] Operation GetXtoken succeeded. [Info: 2024-03-27 11:53:09.2304802: Xal.lib(0)] XAL: [op 180830232] Operation GetTokenAndSignature succeeded. [Info: 2024-03-27 11:53:09.2306255: Xal.lib(0)] XAL: [op 67182328] Operation TryAddFirstUserSilently succeeded. [Info: 2024-03-27 11:53:09.2307755: Xal.lib(0)] XAL: [op 69102360] Operation TryRefreshUser is starting [Info: 2024-03-27 11:53:09.2307913: Xal.lib(0)] XAL: [op 69102360] with CV 's7uWKQ0ltxUQNmPM.18.0' [Info: 2024-03-27 11:53:09.2308932: Xal.lib(0)] XAL: [op 180830232] GetTokenAndSignature being run for usertype: User [Info: 2024-03-27 11:53:09.2309097: Xal.lib(0)] XAL: [op 180830232] Operation GetTokenAndSignature is starting [Info: 2024-03-27 11:53:09.2309250: Xal.lib(0)] XAL: [op 180830232] with CV 's7uWKQ0ltxUQNmPM.18.0' [Info: 2024-03-27 11:53:09.2309827: Xal.lib(0)] XAL: [op 53014664] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:09.2309983: Xal.lib(0)] XAL: [op 53014664] with CV 's7uWKQ0ltxUQNmPM.18.0' [Info: 2024-03-27 11:53:09.2310583: Xal.lib(0)] XAL: [op 70035488] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:09.2310738: Xal.lib(0)] XAL: [op 70035488] with CV 's7uWKQ0ltxUQNmPM.18.0' [Info: 2024-03-27 11:53:09.2310888: Xal.lib(0)] XAL: [op 70035488] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:09.2311885: Xal.lib(0)] XAL: [op 69098160] Operation GetDtoken is starting [Info: 2024-03-27 11:53:09.2312037: Xal.lib(0)] XAL: [op 69098160] with CV 's7uWKQ0ltxUQNmPM.18.0' [Info: 2024-03-27 11:53:09.2312191: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (000000468BA1995C) [Info: 2024-03-27 11:53:09.2312392: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:49:55.7980000Z, systemNow:2024-03-27T11:53:09.2300000Z} [Info: 2024-03-27 11:53:09.2312585: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (000000468BA1995C) [Info: 2024-03-27 11:53:09.2312738: Xal.lib(0)] XAL: [op 69098160] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:09.2313319: Xal.lib(0)] XAL: [op 53014664] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:09.2317717: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (000000468BAA0600) [Info: 2024-03-27 11:53:09.2317961: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Xtoken, relyingParty:http://xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:true hasData:true, isValid:true, xerr:0, expiry:2024-03-28T03:49:55.2170000Z, now:2024-03-27T11:49:55.7990000Z, systemNow:2024-03-27T11:53:09.2310000Z} [Info: 2024-03-27 11:53:09.2318142: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (000000468BAA0600) [Info: 2024-03-27 11:53:09.2318727: Xal.lib(0)] XAL: [op 179696232] Operation GetXtoken is starting [Info: 2024-03-27 11:53:09.2318889: Xal.lib(0)] XAL: [op 179696232] with CV 's7uWKQ0ltxUQNmPM.18.0' [Info: 2024-03-27 11:53:09.2319464: Xal.lib(0)] XAL: [op 53018888] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:09.2319621: Xal.lib(0)] XAL: [op 53018888] with CV 's7uWKQ0ltxUQNmPM.18.0' [Info: 2024-03-27 11:53:09.2320203: Xal.lib(0)] XAL: [op 70035488] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:09.2320358: Xal.lib(0)] XAL: [op 70035488] with CV 's7uWKQ0ltxUQNmPM.18.0' [Info: 2024-03-27 11:53:09.2320519: Xal.lib(0)] XAL: [op 70035488] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:09.2321523: Xal.lib(0)] XAL: [op 69101960] Operation GetDtoken is starting [Info: 2024-03-27 11:53:09.2321680: Xal.lib(0)] XAL: [op 69101960] with CV 's7uWKQ0ltxUQNmPM.18.0' [Info: 2024-03-27 11:53:09.2321831: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (000000468BB04EFC) [Info: 2024-03-27 11:53:09.2322028: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:49:55.7990000Z, systemNow:2024-03-27T11:53:09.2310000Z} [Info: 2024-03-27 11:53:09.2322203: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (000000468BB04EFC) [Info: 2024-03-27 11:53:09.2322351: Xal.lib(0)] XAL: [op 69101960] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:09.2322933: Xal.lib(0)] XAL: [op 53018888] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:09.2323524: Xal.lib(0)] XAL: [op 179696232] Operation GetXtoken succeeded. [Info: 2024-03-27 11:53:09.2324129: Xal.lib(0)] XAL: [op 180830232] Operation GetTokenAndSignature succeeded. [Info: 2024-03-27 11:53:09.2324796: Xal.lib(0)] XAL: [op 69102360] Operation TryRefreshUser succeeded. [Info: 2024-03-27 11:53:09.2325826: Xal.lib(0)] XAL: [op 71238032] Operation UploadTelemetryEvents is starting [Info: 2024-03-27 11:53:09.2326191: Xal.lib(0)] XAL: XalTryAddDefaultUserSilentlyAsync calling back to client with result 'Ok' (0x00000000) [Info: 2024-03-27 11:53:09.2327935: NetQueue.cpp(213)] NetQueue: Starting net action userpresence.xboxlive.com [Info: 2024-03-27 11:53:09.2328514: Xal.lib(0)] XAL: Handle 5E800001 to user 1209797042088443905 created [Info: 2024-03-27 11:53:09.2329482: UserIdentity.cpp(240)] Sign-in success - cleared token [Warning: 2024-03-27 11:53:09.2329935: TelemetryEventSink_PlayFab.cpp(62)] no valid access token, can't send telemetry events, will try again later. [Info: 2024-03-27 11:53:09.2330248: MSIPatchInstaller.cpp(426)] Not patching installs in default location. [Info: 2024-03-27 11:53:09.2330582: UnifiedMSAAccounts.cpp(198)] Successfully Auto Signed in [Info: 2024-03-27 11:53:09.2332795: UserIdentity.cpp(1025)] Retrieving token due to [first] [Info: 2024-03-27 11:53:09.2334771: Xal.lib(0)] XAL: [op 67177128] Operation StateGetTokenAndSignature is starting [Info: 2024-03-27 11:53:09.2335110: Xal.lib(0)] XAL: [op 67177128] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.2423074: NetQueue.cpp(213)] NetQueue: Starting net action vortex.data.microsoft.com [Info: 2024-03-27 11:53:09.3511922: Xal.lib(0)] XAL: [op 180830232] GetTokenAndSignature being run for usertype: User [Info: 2024-03-27 11:53:09.3512510: Xal.lib(0)] XAL: [op 180830232] Operation GetTokenAndSignature is starting [Info: 2024-03-27 11:53:09.3512805: Xal.lib(0)] XAL: [op 180830232] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.3513914: Xal.lib(0)] XAL: [op 53014664] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:09.3514244: Xal.lib(0)] XAL: [op 53014664] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.3515365: Xal.lib(0)] XAL: [op 70035768] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:09.3515699: Xal.lib(0)] XAL: [op 70035768] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.3515929: Xal.lib(0)] XAL: [op 70035768] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:09.3517314: Xal.lib(0)] XAL: [op 69098160] Operation GetDtoken is starting [Info: 2024-03-27 11:53:09.3517496: Xal.lib(0)] XAL: [op 69098160] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.3517665: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004692D0FF4C) [Info: 2024-03-27 11:53:09.3517903: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:49:55.9190000Z, systemNow:2024-03-27T11:53:09.3510000Z} [Info: 2024-03-27 11:53:09.3518175: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004692D0FF4C) [Info: 2024-03-27 11:53:09.3518387: Xal.lib(0)] XAL: [op 69098160] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:09.3519050: Xal.lib(0)] XAL: [op 53014664] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:09.3519738: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004692D42AA0) [Info: 2024-03-27 11:53:09.3519950: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Xtoken, relyingParty:rp://api.minecraftservices.com/, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:false, xerr:0, expiry:2024-03-26T02:15:03.9590000Z, now:2024-03-27T11:49:55.9190000Z, systemNow:2024-03-27T11:53:09.3510000Z} [Info: 2024-03-27 11:53:09.3520140: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004692D42AA0) [Info: 2024-03-27 11:53:09.3520827: Xal.lib(0)] XAL: [op 179731520] Operation GetXtoken is starting [Info: 2024-03-27 11:53:09.3521019: Xal.lib(0)] XAL: [op 179731520] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.3521658: Xal.lib(0)] XAL: [op 53011760] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:09.3521821: Xal.lib(0)] XAL: [op 53011760] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.3522440: Xal.lib(0)] XAL: [op 70035768] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:09.3522595: Xal.lib(0)] XAL: [op 70035768] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.3522744: Xal.lib(0)] XAL: [op 70035768] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:09.3523848: Xal.lib(0)] XAL: [op 69100560] Operation GetDtoken is starting [Info: 2024-03-27 11:53:09.3524011: Xal.lib(0)] XAL: [op 69100560] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.3524168: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004692DAED7C) [Info: 2024-03-27 11:53:09.3524371: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:49:55.9200000Z, systemNow:2024-03-27T11:53:09.3520000Z} [Info: 2024-03-27 11:53:09.3524549: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004692DAED7C) [Info: 2024-03-27 11:53:09.3524702: Xal.lib(0)] XAL: [op 69100560] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:09.3525288: Xal.lib(0)] XAL: [op 53011760] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:09.3526418: Xal.lib(0)] XAL: [op 69098760] Operation GetDtoken is starting [Info: 2024-03-27 11:53:09.3526594: Xal.lib(0)] XAL: [op 69098760] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.3526763: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004692DEE38C) [Info: 2024-03-27 11:53:09.3526964: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:49:55.9200000Z, systemNow:2024-03-27T11:53:09.3520000Z} [Info: 2024-03-27 11:53:09.3527144: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004692DEE38C) [Info: 2024-03-27 11:53:09.3527294: Xal.lib(0)] XAL: [op 69098760] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:09.3528431: Xal.lib(0)] XAL: [op 179795840] Operation GetMsaTicket is starting [Info: 2024-03-27 11:53:09.3528620: Xal.lib(0)] XAL: [op 179795840] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.3529214: Xal.lib(0)] XAL: [op 53015720] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:09.3529387: Xal.lib(0)] XAL: [op 53015720] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.3530002: Xal.lib(0)] XAL: [op 70036888] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:09.3530169: Xal.lib(0)] XAL: [op 70036888] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.3530328: Xal.lib(0)] XAL: [op 70036888] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:09.3531360: Xal.lib(0)] XAL: [op 69099560] Operation GetDtoken is starting [Info: 2024-03-27 11:53:09.3531528: Xal.lib(0)] XAL: [op 69099560] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.3531694: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004692E669B8) [Info: 2024-03-27 11:53:09.3531896: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:49:55.9210000Z, systemNow:2024-03-27T11:53:09.3530000Z} [Info: 2024-03-27 11:53:09.3532077: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004692E669B8) [Info: 2024-03-27 11:53:09.3532231: Xal.lib(0)] XAL: [op 69099560] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:09.3532834: Xal.lib(0)] XAL: [op 53015720] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:09.3533559: Xal.lib(0)] XAL: >>> Xal::Auth::MsaTicketSet::GetTicket (0000004692E93814) [Info: 2024-03-27 11:53:09.3533795: Xal.lib(0)] XAL: Found requested token in cache: [firstScope:service::user.auth.xboxlive.com::MBI_SSL]:{expiry:2024-03-28T11:53:07.0620000Z, now:2024-03-27T11:49:55.9210000Z, systemNow:2024-03-27T11:53:09.3530000Z} [Info: 2024-03-27 11:53:09.3533975: Xal.lib(0)] XAL: <<< Xal::Auth::MsaTicketSet::GetTicket (0000004692E93814) [Info: 2024-03-27 11:53:09.3534145: Xal.lib(0)] XAL: [op 179795840] Operation GetMsaTicket succeeded. [Info: 2024-03-27 11:53:09.3534760: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004692EB1760) [Info: 2024-03-27 11:53:09.3534974: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Utoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-03-29T14:08:26.5550000Z, now:2024-03-27T11:49:55.9210000Z, systemNow:2024-03-27T11:53:09.3530000Z} [Info: 2024-03-27 11:53:09.3535153: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004692EB1760) [Info: 2024-03-27 11:53:09.3535310: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004692EBEE38) [Info: 2024-03-27 11:53:09.3535503: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Ttoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-08T14:08:26.5530000Z, now:2024-03-27T11:49:55.9210000Z, systemNow:2024-03-27T11:53:09.3530000Z} [Info: 2024-03-27 11:53:09.3535674: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000004692EBEE38) [Info: 2024-03-27 11:53:09.3536364: Xal.lib(0)] XAL: [op 180828032] Refresh Xtoken running with user: true. [Info: 2024-03-27 11:53:09.3536538: Xal.lib(0)] XAL: [op 180828032] Operation RefreshXtoken is starting [Info: 2024-03-27 11:53:09.3536708: Xal.lib(0)] XAL: [op 180828032] with CV 's7uWKQ0ltxUQNmPM.21.0' [Info: 2024-03-27 11:53:09.3536881: Xal.lib(0)] XAL: [op 180828032] RefreshXtoken token fetch started. [Info: 2024-03-27 11:53:09.4810060: NetQueue.cpp(213)] NetQueue: Starting net action xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:10.0108819: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 52.156.147.113, Host: xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:10.0109290: NetQueue.cpp(102)] NetQueue: Action finished: xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:10.0109882: NetQueue.cpp(133)] Action finalized: xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:10.1049804: Xal.lib(0)] XAL: Clock skew updated. Server time: 2024-03-27T11:49:56.6230000Z - System time: 2024-03-27T11:53:10.1040000Z = skew (seconds) -193 [Info: 2024-03-27 11:53:10.1051146: Xal.lib(0)] XAL: [op 70214648] Operation SaveClockSkew is starting [Info: 2024-03-27 11:53:10.1051461: Xal.lib(0)] XAL: [op 70214648] with CV 's7uWKQ0ltxUQNmPM.21.1' [Info: 2024-03-27 11:53:10.1051760: Xal.lib(0)] XAL: [op 182685024] Client operation StorageWritePlatformOperation starting (promise 182145576) [Info: 2024-03-27 11:53:10.1052339: Xal.lib(0)] XAL: [op 182685024] Client operation StorageWritePlatformOperation calling platform handler [Info: 2024-03-27 11:53:10.1052671: Xal.lib(0)] XAL: [op 182685024] Added operation as handle 0AE38DCC with type 59558694 [Info: 2024-03-27 11:53:10.1052877: XalStorage.cpp(235)] [op 0AE38DCC] Xal Write callback - Started [Info: 2024-03-27 11:53:10.1055018: Xal.lib(0)] XAL: [op 182685024] Client operation StorageWritePlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:10.1055988: Xal.lib(0)] XAL: [op 182685024] Cleared operation handle 0AE38DCC [Info: 2024-03-27 11:53:10.1056235: Xal.lib(0)] XAL: [op 182685024] Client operation StorageWritePlatformOperation succeeded [Info: 2024-03-27 11:53:10.1056949: XalStorage.cpp(311)] [op 0AE38DCC] Xal Write callback - Succeeded [Info: 2024-03-27 11:53:10.2254590: Xal.lib(0)] XAL: [op 182685024] Client operation StorageWritePlatformOperation continuing (promise 182145576) [Info: 2024-03-27 11:53:10.2255320: Xal.lib(0)] XAL: [op 70214648] Operation SaveClockSkew succeeded. [Info: 2024-03-27 11:53:10.2257758: Xal.lib(0)] XAL: [op 69864304] Operation WriteCacheData is starting [Info: 2024-03-27 11:53:10.2258064: Xal.lib(0)] XAL: [op 69864304] with CV 's7uWKQ0ltxUQNmPM.21.1' [Info: 2024-03-27 11:53:10.2258373: Xal.lib(0)] XAL: [op 182687664] Client operation StorageWritePlatformOperation starting (promise 182146344) [Info: 2024-03-27 11:53:10.2258677: Xal.lib(0)] XAL: [op 182685024] Client operation StorageWritePlatformOperation destroyed [Info: 2024-03-27 11:53:10.2259075: Xal.lib(0)] XAL: [op 182687664] Client operation StorageWritePlatformOperation calling platform handler [Info: 2024-03-27 11:53:10.2259319: Xal.lib(0)] XAL: [op 182687664] Added operation as handle 0AE3981C with type 59558694 [Info: 2024-03-27 11:53:10.2259516: XalStorage.cpp(235)] [op 0AE3981C] Xal Write callback - Started [Info: 2024-03-27 11:53:10.2850694: Xal.lib(0)] XAL: [op 182687664] Client operation StorageWritePlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:10.2851076: Xal.lib(0)] XAL: [op 182687664] Cleared operation handle 0AE3981C [Info: 2024-03-27 11:53:10.2851254: Xal.lib(0)] XAL: [op 182687664] Client operation StorageWritePlatformOperation succeeded [Info: 2024-03-27 11:53:10.2851917: XalStorage.cpp(299)] [op 0AE3981C] Xal Write callback - Succeeded [Info: 2024-03-27 11:53:10.4115006: Xal.lib(0)] XAL: [op 182687664] Client operation StorageWritePlatformOperation continuing (promise 182146344) [Info: 2024-03-27 11:53:10.4116319: Xal.lib(0)] XAL: [op 69864304] Operation WriteCacheData succeeded. [Info: 2024-03-27 11:53:10.4117774: Xal.lib(0)] XAL: [op 180828032] RefreshXtoken token fetch done. [Info: 2024-03-27 11:53:10.4118074: Xal.lib(0)] XAL: [op 180828032] Operation RefreshXtoken succeeded. [Info: 2024-03-27 11:53:10.4119112: Xal.lib(0)] XAL: [op 179731520] Operation GetXtoken succeeded. [Info: 2024-03-27 11:53:10.4120114: Xal.lib(0)] XAL: [op 180830232] Operation GetTokenAndSignature succeeded. [Info: 2024-03-27 11:53:10.4121140: Xal.lib(0)] XAL: [op 67177128] Operation StateGetTokenAndSignature succeeded. [Info: 2024-03-27 11:53:10.4122595: Xal.lib(0)] XAL: XalUserGetTokenAndSignatureSilentlyAsync calling back to client with result 'Ok' (0x00000000) [Info: 2024-03-27 11:53:10.4123076: Xal.lib(0)] XAL: [op 182687664] Client operation StorageWritePlatformOperation destroyed [Info: 2024-03-27 11:53:10.4124168: UserIdentity.cpp(678)] Successfully retrieved token [Info: 2024-03-27 11:53:10.4125529: UserIdentity.cpp(1029)] Attempted to retrieved token - [normal] - [notnull] - 0 [Info: 2024-03-27 11:53:10.4128676: NetQueue.cpp(213)] NetQueue: Starting net action https://api.minecraftservices.com/launcher/login [Info: 2024-03-27 11:53:10.8777688: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: api.minecraftservices.com [Info: 2024-03-27 11:53:10.8778123: NetQueue.cpp(102)] NetQueue: Action finished: https://api.minecraftservices.com/launcher/login [Info: 2024-03-27 11:53:10.8778928: MinecraftServicesApi.cpp(489)] Signed in to minecraft services with user <USERNAME> [Info: 2024-03-27 11:53:10.8782107: NetQueue.cpp(133)] Action finalized: https://api.minecraftservices.com/launcher/login [Info: 2024-03-27 11:53:10.8782608: UserIdentity.cpp(1085)] Using new token [Info: 2024-03-27 11:53:10.8782941: UserIdentity.cpp(1094)] Current token [with-refresh:true] - [notnull] [Info: 2024-03-27 11:53:10.8783776: UnifiedMSAAccounts.cpp(374)] Added/Updated account : [not empty][not empty][null][null] [Info: 2024-03-27 11:53:10.8784235: UserIdentity.cpp(497)] Got gamer tag - [0][not empty] [Info: 2024-03-27 11:53:10.8786441: Xal.lib(0)] XAL: [op 182933832] Operation GetGamerPicture is starting [Info: 2024-03-27 11:53:10.8786779: Xal.lib(0)] XAL: [op 182933832] with CV 's7uWKQ0ltxUQNmPM.24.0' [Info: 2024-03-27 11:53:10.9095397: Xal.lib(0)] XAL: [op 180974488] Operation FetchGamerpicOperation is starting [Info: 2024-03-27 11:53:10.9095934: Xal.lib(0)] XAL: [op 180974488] with CV 's7uWKQ0ltxUQNmPM.24.0' [Info: 2024-03-27 11:53:10.9097041: Xal.lib(0)] XAL: [op 180830232] GetTokenAndSignature being run for usertype: User [Info: 2024-03-27 11:53:10.9097321: Xal.lib(0)] XAL: [op 180830232] Operation GetTokenAndSignature is starting [Info: 2024-03-27 11:53:10.9097563: Xal.lib(0)] XAL: [op 180830232] with CV 's7uWKQ0ltxUQNmPM.24.0' [Info: 2024-03-27 11:53:10.9098580: Xal.lib(0)] XAL: [op 53012552] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:10.9098848: Xal.lib(0)] XAL: [op 53012552] with CV 's7uWKQ0ltxUQNmPM.24.0' [Info: 2024-03-27 11:53:10.9099908: Xal.lib(0)] XAL: [op 181899144] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:10.9100179: Xal.lib(0)] XAL: [op 181899144] with CV 's7uWKQ0ltxUQNmPM.24.0' [Info: 2024-03-27 11:53:10.9100422: Xal.lib(0)] XAL: [op 181899144] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:10.9102543: Xal.lib(0)] XAL: [op 69177056] Operation GetDtoken is starting [Info: 2024-03-27 11:53:10.9103251: Xal.lib(0)] XAL: [op 69177056] with CV 's7uWKQ0ltxUQNmPM.24.0' [Info: 2024-03-27 11:53:10.9103530: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000046EFB71D2C) [Info: 2024-03-27 11:53:10.9103839: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:49:57.4280000Z, systemNow:2024-03-27T11:53:10.9100000Z} [Info: 2024-03-27 11:53:10.9104050: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000046EFB71D2C) [Info: 2024-03-27 11:53:10.9104215: Xal.lib(0)] XAL: [op 69177056] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:10.9104894: Xal.lib(0)] XAL: [op 53012552] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:10.9109443: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000046EFC02B24) [Info: 2024-03-27 11:53:10.9109690: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Xtoken, relyingParty:http://xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:true hasData:true, isValid:true, xerr:0, expiry:2024-03-28T03:49:55.2170000Z, now:2024-03-27T11:49:57.4280000Z, systemNow:2024-03-27T11:53:10.9100000Z} [Info: 2024-03-27 11:53:10.9109892: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000046EFC02B24) [Info: 2024-03-27 11:53:10.9110502: Xal.lib(0)] XAL: [op 179731520] Operation GetXtoken is starting [Info: 2024-03-27 11:53:10.9110666: Xal.lib(0)] XAL: [op 179731520] with CV 's7uWKQ0ltxUQNmPM.24.0' [Info: 2024-03-27 11:53:10.9111256: Xal.lib(0)] XAL: [op 53012552] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:10.9111418: Xal.lib(0)] XAL: [op 53012552] with CV 's7uWKQ0ltxUQNmPM.24.0' [Info: 2024-03-27 11:53:10.9112036: Xal.lib(0)] XAL: [op 181895504] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:10.9112191: Xal.lib(0)] XAL: [op 181895504] with CV 's7uWKQ0ltxUQNmPM.24.0' [Info: 2024-03-27 11:53:10.9112347: Xal.lib(0)] XAL: [op 181895504] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:10.9113374: Xal.lib(0)] XAL: [op 69176656] Operation GetDtoken is starting [Info: 2024-03-27 11:53:10.9113536: Xal.lib(0)] XAL: [op 69176656] with CV 's7uWKQ0ltxUQNmPM.24.0' [Info: 2024-03-27 11:53:10.9113713: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000046EFC6AF80) [Info: 2024-03-27 11:53:10.9113919: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:49:57.4290000Z, systemNow:2024-03-27T11:53:10.9110000Z} [Info: 2024-03-27 11:53:10.9114109: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000046EFC6AF80) [Info: 2024-03-27 11:53:10.9114266: Xal.lib(0)] XAL: [op 69176656] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:10.9114858: Xal.lib(0)] XAL: [op 53012552] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:10.9115464: Xal.lib(0)] XAL: [op 179731520] Operation GetXtoken succeeded. [Info: 2024-03-27 11:53:10.9116085: Xal.lib(0)] XAL: [op 180830232] Operation GetTokenAndSignature succeeded. [Info: 2024-03-27 11:53:11.0150093: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 40.86.103.106, Host: userpresence.xboxlive.com [Info: 2024-03-27 11:53:11.0150742: NetQueue.cpp(102)] NetQueue: Action finished: userpresence.xboxlive.com [Info: 2024-03-27 11:53:11.0151446: NetQueue.cpp(133)] Action finalized: userpresence.xboxlive.com [Info: 2024-03-27 11:53:11.0151941: NetQueue.cpp(213)] NetQueue: Starting net action profile.xboxlive.com [Info: 2024-03-27 11:53:13.0298642: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 23.99.194.233, Host: profile.xboxlive.com [Info: 2024-03-27 11:53:13.0299237: NetQueue.cpp(102)] NetQueue: Action finished: profile.xboxlive.com [Info: 2024-03-27 11:53:13.0300037: NetQueue.cpp(133)] Action finalized: profile.xboxlive.com [Info: 2024-03-27 11:53:14.0335081: NetQueue.cpp(213)] NetQueue: Starting net action images-eds-ssl.xboxlive.com [Info: 2024-03-27 11:53:14.1433193: Xal.lib(0)] XAL: [op 53326304] Operation UploadTelemetryEventsWithDelay succeeded. [Info: 2024-03-27 11:53:14.3656306: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 104.91.76.10, Host: images-eds-ssl.xboxlive.com [Info: 2024-03-27 11:53:14.3656827: NetQueue.cpp(102)] NetQueue: Action finished: images-eds-ssl.xboxlive.com [Info: 2024-03-27 11:53:14.3657540: NetQueue.cpp(133)] Action finalized: images-eds-ssl.xboxlive.com [Info: 2024-03-27 11:53:14.3662072: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 104.208.16.90, Host: vortex.data.microsoft.com [Info: 2024-03-27 11:53:14.3662373: NetQueue.cpp(102)] NetQueue: Action finished: vortex.data.microsoft.com [Info: 2024-03-27 11:53:14.3662936: NetQueue.cpp(133)] Action finalized: vortex.data.microsoft.com [Warning: 2024-03-27 11:53:14.3913242: Xal.lib(0)] XAL: Received a different CV on service response. original:'s7uWKQ0ltxUQNmPM.24.1' received:'o6Y7C3bmsD29G+t7.8.1.0' [Info: 2024-03-27 11:53:14.3913831: Xal.lib(0)] XAL: [op 180974488] Operation FetchGamerpicOperation succeeded. [Info: 2024-03-27 11:53:14.3914814: Xal.lib(0)] XAL: [op 182933832] Operation GetGamerPicture succeeded. [Info: 2024-03-27 11:53:14.3916394: Xal.lib(0)] XAL: XalUserGetGamerPictureAsync calling back to client with result 'Ok' (0x00000000) [Info: 2024-03-27 11:53:14.3916976: Xal.lib(0)] XAL: [op 71238032] Operation UploadTelemetryEvents succeeded. [Info: 2024-03-27 11:53:14.3917172: Xal.lib(0)] XAL: [op 71238720] Operation UploadTelemetryEvents is starting [Info: 2024-03-27 11:53:14.3917341: Xal.lib(0)] XAL: [op 71238720] Operation UploadTelemetryEvents succeeded. [Info: 2024-03-27 11:53:14.3917503: Xal.lib(0)] XAL: [op 71239064] Operation UploadTelemetryEvents is starting [Info: 2024-03-27 11:53:14.3918033: Xal.lib(0)] XAL: [op 71239064] Operation UploadTelemetryEvents succeeded. [Info: 2024-03-27 11:53:14.3918958: UserIdentity.cpp(1094)] Current token [with-refresh:false] - [notnull] [Info: 2024-03-27 11:53:14.3926840: TelemetryEventSink_PlayFab.cpp(131)] Posting 0 events. [Info: 2024-03-27 11:53:14.3928481: NetQueue.cpp(213)] NetQueue: Starting net action https://api.minecraftservices.com/events [Info: 2024-03-27 11:53:14.3952182: Xal.lib(0)] XAL: [op 67177128] Operation StateGetTokenAndSignature is starting [Info: 2024-03-27 11:53:14.3952440: Xal.lib(0)] XAL: [op 67177128] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5109781: Xal.lib(0)] XAL: [op 71814368] GetTokenAndSignature being run for usertype: User [Info: 2024-03-27 11:53:14.5110393: Xal.lib(0)] XAL: [op 71814368] Operation GetTokenAndSignature is starting [Info: 2024-03-27 11:53:14.5110654: Xal.lib(0)] XAL: [op 71814368] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5111770: Xal.lib(0)] XAL: [op 53012552] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:14.5111999: Xal.lib(0)] XAL: [op 53012552] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5113038: Xal.lib(0)] XAL: [op 181891864] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:14.5113372: Xal.lib(0)] XAL: [op 181891864] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5113634: Xal.lib(0)] XAL: [op 181891864] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:14.5115250: Xal.lib(0)] XAL: [op 69175456] Operation GetDtoken is starting [Info: 2024-03-27 11:53:14.5115560: Xal.lib(0)] XAL: [op 69175456] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5115877: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000047C65D9BBC) [Info: 2024-03-27 11:53:14.5116190: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:50:01.0290000Z, systemNow:2024-03-27T11:53:14.5100000Z} [Info: 2024-03-27 11:53:14.5116517: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000047C65D9BBC) [Info: 2024-03-27 11:53:14.5116761: Xal.lib(0)] XAL: [op 69175456] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:14.5118308: Xal.lib(0)] XAL: [op 53012552] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:14.5119024: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000047C6626C28) [Info: 2024-03-27 11:53:14.5119246: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Xtoken, relyingParty:http://playfab.xboxlive.com/, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:false, xerr:0, expiry:2024-03-26T06:44:26.6460000Z, now:2024-03-27T11:50:01.0300000Z, systemNow:2024-03-27T11:53:14.5110000Z} [Info: 2024-03-27 11:53:14.5119463: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000047C6626C28) [Info: 2024-03-27 11:53:14.5120086: Xal.lib(0)] XAL: [op 70045096] Operation GetXtoken is starting [Info: 2024-03-27 11:53:14.5120245: Xal.lib(0)] XAL: [op 70045096] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5120833: Xal.lib(0)] XAL: [op 53012552] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:14.5120992: Xal.lib(0)] XAL: [op 53012552] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5121599: Xal.lib(0)] XAL: [op 181895504] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:14.5121755: Xal.lib(0)] XAL: [op 181895504] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5121907: Xal.lib(0)] XAL: [op 181895504] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:14.5122924: Xal.lib(0)] XAL: [op 69173256] Operation GetDtoken is starting [Info: 2024-03-27 11:53:14.5123076: Xal.lib(0)] XAL: [op 69173256] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5123236: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000047C668DB6C) [Info: 2024-03-27 11:53:14.5123448: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:50:01.0300000Z, systemNow:2024-03-27T11:53:14.5110000Z} [Info: 2024-03-27 11:53:14.5123628: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000047C668DB6C) [Info: 2024-03-27 11:53:14.5123786: Xal.lib(0)] XAL: [op 69173256] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:14.5124380: Xal.lib(0)] XAL: [op 53012552] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:14.5125398: Xal.lib(0)] XAL: [op 69172256] Operation GetDtoken is starting [Info: 2024-03-27 11:53:14.5125557: Xal.lib(0)] XAL: [op 69172256] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5125713: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000047C66CA300) [Info: 2024-03-27 11:53:14.5125918: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:50:01.0300000Z, systemNow:2024-03-27T11:53:14.5110000Z} [Info: 2024-03-27 11:53:14.5126096: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000047C66CA300) [Info: 2024-03-27 11:53:14.5126250: Xal.lib(0)] XAL: [op 69172256] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:14.5127286: Xal.lib(0)] XAL: [op 70126392] Operation GetMsaTicket is starting [Info: 2024-03-27 11:53:14.5127446: Xal.lib(0)] XAL: [op 70126392] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5128050: Xal.lib(0)] XAL: [op 53014400] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:14.5128208: Xal.lib(0)] XAL: [op 53014400] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5128808: Xal.lib(0)] XAL: [op 181899704] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:14.5128965: Xal.lib(0)] XAL: [op 181899704] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5129124: Xal.lib(0)] XAL: [op 181899704] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:14.5130131: Xal.lib(0)] XAL: [op 69172056] Operation GetDtoken is starting [Info: 2024-03-27 11:53:14.5130286: Xal.lib(0)] XAL: [op 69172056] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5130440: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000047C673D9E0) [Info: 2024-03-27 11:53:14.5130634: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:50:01.0310000Z, systemNow:2024-03-27T11:53:14.5120000Z} [Info: 2024-03-27 11:53:14.5130831: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000047C673D9E0) [Info: 2024-03-27 11:53:14.5130987: Xal.lib(0)] XAL: [op 69172056] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:14.5131572: Xal.lib(0)] XAL: [op 53014400] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:14.5132178: Xal.lib(0)] XAL: >>> Xal::Auth::MsaTicketSet::GetTicket (00000047C6768000) [Info: 2024-03-27 11:53:14.5132383: Xal.lib(0)] XAL: Found requested token in cache: [firstScope:service::user.auth.xboxlive.com::MBI_SSL]:{expiry:2024-03-28T11:53:07.0620000Z, now:2024-03-27T11:50:01.0310000Z, systemNow:2024-03-27T11:53:14.5120000Z} [Info: 2024-03-27 11:53:14.5132581: Xal.lib(0)] XAL: <<< Xal::Auth::MsaTicketSet::GetTicket (00000047C6768000) [Info: 2024-03-27 11:53:14.5132739: Xal.lib(0)] XAL: [op 70126392] Operation GetMsaTicket succeeded. [Info: 2024-03-27 11:53:14.5133342: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000047C67847DC) [Info: 2024-03-27 11:53:14.5133551: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Utoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-03-29T14:08:26.5550000Z, now:2024-03-27T11:50:01.0310000Z, systemNow:2024-03-27T11:53:14.5120000Z} [Info: 2024-03-27 11:53:14.5133728: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000047C67847DC) [Info: 2024-03-27 11:53:14.5133883: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000047C6791B30) [Info: 2024-03-27 11:53:14.5134080: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Ttoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-08T14:08:26.5530000Z, now:2024-03-27T11:50:01.0310000Z, systemNow:2024-03-27T11:53:14.5120000Z} [Info: 2024-03-27 11:53:14.5134254: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000047C6791B30) [Info: 2024-03-27 11:53:14.5134835: Xal.lib(0)] XAL: [op 182599080] Refresh Xtoken running with user: true. [Info: 2024-03-27 11:53:14.5134993: Xal.lib(0)] XAL: [op 182599080] Operation RefreshXtoken is starting [Info: 2024-03-27 11:53:14.5135151: Xal.lib(0)] XAL: [op 182599080] with CV 's7uWKQ0ltxUQNmPM.26.0' [Info: 2024-03-27 11:53:14.5135303: Xal.lib(0)] XAL: [op 182599080] RefreshXtoken token fetch started. [Info: 2024-03-27 11:53:14.5140538: NetQueue.cpp(213)] NetQueue: Starting net action xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:14.9017408: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: api.minecraftservices.com [Info: 2024-03-27 11:53:14.9017931: NetQueue.cpp(102)] NetQueue: Action finished: https://api.minecraftservices.com/events [Info: 2024-03-27 11:53:14.9018428: NetQueue.cpp(133)] Action finalized: https://api.minecraftservices.com/events [Info: 2024-03-27 11:53:14.9631852: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 52.156.147.113, Host: xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:14.9632269: NetQueue.cpp(102)] NetQueue: Action finished: xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:14.9632811: NetQueue.cpp(133)] Action finalized: xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:15.0148891: Xal.lib(0)] XAL: Clock skew updated. Server time: 2024-03-27T11:50:01.6240000Z - System time: 2024-03-27T11:53:15.0140000Z = skew (seconds) -193 [Info: 2024-03-27 11:53:15.0150302: Xal.lib(0)] XAL: [op 68878280] Operation SaveClockSkew is starting [Info: 2024-03-27 11:53:15.0150660: Xal.lib(0)] XAL: [op 68878280] with CV 's7uWKQ0ltxUQNmPM.26.1' [Info: 2024-03-27 11:53:15.0151033: Xal.lib(0)] XAL: [op 182683792] Client operation StorageWritePlatformOperation starting (promise 182146344) [Info: 2024-03-27 11:53:15.0151618: Xal.lib(0)] XAL: [op 182683792] Client operation StorageWritePlatformOperation calling platform handler [Info: 2024-03-27 11:53:15.0152039: Xal.lib(0)] XAL: [op 182683792] Added operation as handle 0AE388FC with type 59558694 [Info: 2024-03-27 11:53:15.0152233: XalStorage.cpp(235)] [op 0AE388FC] Xal Write callback - Started [Info: 2024-03-27 11:53:15.0154434: Xal.lib(0)] XAL: [op 182683792] Client operation StorageWritePlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:15.0154806: Xal.lib(0)] XAL: [op 182683792] Cleared operation handle 0AE388FC [Info: 2024-03-27 11:53:15.0155072: Xal.lib(0)] XAL: [op 182683792] Client operation StorageWritePlatformOperation succeeded [Info: 2024-03-27 11:53:15.0155994: XalStorage.cpp(311)] [op 0AE388FC] Xal Write callback - Succeeded [Info: 2024-03-27 11:53:15.1329555: Xal.lib(0)] XAL: [op 182683792] Client operation StorageWritePlatformOperation continuing (promise 182146344) [Info: 2024-03-27 11:53:15.1330221: Xal.lib(0)] XAL: [op 68878280] Operation SaveClockSkew succeeded. [Info: 2024-03-27 11:53:15.1332674: Xal.lib(0)] XAL: [op 69868560] Operation WriteCacheData is starting [Info: 2024-03-27 11:53:15.1332993: Xal.lib(0)] XAL: [op 69868560] with CV 's7uWKQ0ltxUQNmPM.26.1' [Info: 2024-03-27 11:53:15.1333328: Xal.lib(0)] XAL: [op 182686784] Client operation StorageWritePlatformOperation starting (promise 182145864) [Info: 2024-03-27 11:53:15.1333624: Xal.lib(0)] XAL: [op 182683792] Client operation StorageWritePlatformOperation destroyed [Info: 2024-03-27 11:53:15.1333999: Xal.lib(0)] XAL: [op 182686784] Client operation StorageWritePlatformOperation calling platform handler [Info: 2024-03-27 11:53:15.1334274: Xal.lib(0)] XAL: [op 182686784] Added operation as handle 0AE394AC with type 59558694 [Info: 2024-03-27 11:53:15.1334471: XalStorage.cpp(235)] [op 0AE394AC] Xal Write callback - Started [Info: 2024-03-27 11:53:15.2216374: Xal.lib(0)] XAL: [op 182686784] Client operation StorageWritePlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:15.2216769: Xal.lib(0)] XAL: [op 182686784] Cleared operation handle 0AE394AC [Info: 2024-03-27 11:53:15.2216953: Xal.lib(0)] XAL: [op 182686784] Client operation StorageWritePlatformOperation succeeded [Info: 2024-03-27 11:53:15.2217740: XalStorage.cpp(299)] [op 0AE394AC] Xal Write callback - Succeeded [Info: 2024-03-27 11:53:15.3423903: Xal.lib(0)] XAL: [op 182686784] Client operation StorageWritePlatformOperation continuing (promise 182145864) [Info: 2024-03-27 11:53:15.3424579: Xal.lib(0)] XAL: [op 69868560] Operation WriteCacheData succeeded. [Info: 2024-03-27 11:53:15.3425980: Xal.lib(0)] XAL: [op 182599080] RefreshXtoken token fetch done. [Info: 2024-03-27 11:53:15.3426281: Xal.lib(0)] XAL: [op 182599080] Operation RefreshXtoken succeeded. [Info: 2024-03-27 11:53:15.3427370: Xal.lib(0)] XAL: [op 70045096] Operation GetXtoken succeeded. [Info: 2024-03-27 11:53:15.3429138: Xal.lib(0)] XAL: [op 71814368] Operation GetTokenAndSignature succeeded. [Info: 2024-03-27 11:53:15.3430366: Xal.lib(0)] XAL: [op 67177128] Operation StateGetTokenAndSignature succeeded. [Info: 2024-03-27 11:53:15.3432268: Xal.lib(0)] XAL: XalUserGetTokenAndSignatureSilentlyAsync calling back to client with result 'Ok' (0x00000000) [Info: 2024-03-27 11:53:15.3432784: Xal.lib(0)] XAL: [op 182686784] Client operation StorageWritePlatformOperation destroyed [Info: 2024-03-27 11:53:15.3433457: UserIdentity.cpp(678)] Successfully retrieved token [Info: 2024-03-27 11:53:15.3438827: NetQueue.cpp(213)] NetQueue: Starting net action https://client.discovery.minecraft-services.net/api/v1.0/discovery/MinecraftPE/builds/1.18.12 [Info: 2024-03-27 11:53:15.5488442: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: client.discovery.minecraft-services.net [Info: 2024-03-27 11:53:15.5488915: NetQueue.cpp(102)] NetQueue: Action finished: https://client.discovery.minecraft-services.net/api/v1.0/discovery/MinecraftPE/builds/1.18.12 [Info: 2024-03-27 11:53:15.5490339: NetQueue.cpp(133)] Action finalized: https://client.discovery.minecraft-services.net/api/v1.0/discovery/MinecraftPE/builds/1.18.12 [Info: 2024-03-27 11:53:15.5491641: NetQueue.cpp(213)] NetQueue: Starting net action https://authorization.franchise.minecraft-services.net/api/v1.0/session/start [Info: 2024-03-27 11:53:16.2052410: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: authorization.franchise.minecraft-services.net [Info: 2024-03-27 11:53:16.2052965: NetQueue.cpp(102)] NetQueue: Action finished: https://authorization.franchise.minecraft-services.net/api/v1.0/session/start [Info: 2024-03-27 11:53:16.2176243: Auth.cpp(217)] Successfully added/updated token to STS [Info: 2024-03-27 11:53:16.2176667: NetQueue.cpp(133)] Action finalized: https://authorization.franchise.minecraft-services.net/api/v1.0/session/start [Info: 2024-03-27 11:53:16.2176975: UnifiedMSAAccounts.cpp(1412)] Starting to get entitlements[force:true] for account [Info: 2024-03-27 11:53:16.2660015: UnifiedAccounts.cpp(349)] Internet state in main process: online=1 [Info: 2024-03-27 11:53:16.2661071: NetQueue.cpp(213)] NetQueue: Starting net action https://api.minecraftservices.com/entitlements/license?requestId=432029fd-a4e7-4e89-a4be-3b6891cccbb3 [Info: 2024-03-27 11:53:16.2661375: NetQueue.cpp(216)] NetQueue: Action debug details (https://api.minecraftservices.com/entitlements/license?requestId=432029fd-a4e7-4e89-a4be-3b6891cccbb3): Method: GET Headers: Authorization:Bearer <TOKEN> Content-Type:application/json Body: [Info: 2024-03-27 11:53:16.2668210: ControllerInterface.cpp(106)] Running method onInternetStateChange [Info: 2024-03-27 11:53:16.8678488: NetQueue.cpp(213)] NetQueue: Starting net action https://launchermeta.mojang.com/mc/game/version_manifest_v2.json [Info: 2024-03-27 11:53:16.8679177: NetQueue.cpp(213)] NetQueue: Starting net action https://authorization.franchise.minecraft-services.net/api/v1/build/launcher [Info: 2024-03-27 11:53:16.8782554: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: api.minecraftservices.com [Info: 2024-03-27 11:53:16.8783064: NetQueue.cpp(102)] NetQueue: Action finished: https://api.minecraftservices.com/entitlements/license?requestId=432029fd-a4e7-4e89-a4be-3b6891cccbb3 [Info: 2024-03-27 11:53:16.8783166: NetQueue.cpp(104)] NetQueue: Action finished debug details: https://api.minecraftservices.com/entitlements/license?requestId=432029fd-a4e7-4e89-a4be-3b6891cccbb3 Response code: 200 Response body: [Info: 2024-03-27 11:53:16.8783902: MinecraftServicesApi.cpp(577)] Got entitlements response! [Info: 2024-03-27 11:53:16.8903255: NetQueue.cpp(133)] Action finalized: https://api.minecraftservices.com/entitlements/license?requestId=432029fd-a4e7-4e89-a4be-3b6891cccbb3 [Info: 2024-03-27 11:53:16.8914230: EntitlementsManager.cpp(731)] Entitlement Health - [okay], [okay], [okay], [okay], [okay], GREEN [Info: 2024-03-27 11:53:16.9260130: UnifiedMSAAccounts.cpp(586)] Have valid access token, fetching profile [Info: 2024-03-27 11:53:16.9295563: NetQueue.cpp(213)] NetQueue: Starting net action https://api.minecraftservices.com/minecraft/profile [Info: 2024-03-27 11:53:16.9295814: NetQueue.cpp(216)] NetQueue: Action debug details (https://api.minecraftservices.com/minecraft/profile): Method: GET Headers: Authorization:Bearer <TOKEN> Content-Type:application/json Body: [Info: 2024-03-27 11:53:16.9361595: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: authorization.franchise.minecraft-services.net [Info: 2024-03-27 11:53:16.9361879: NetQueue.cpp(102)] NetQueue: Action finished: https://authorization.franchise.minecraft-services.net/api/v1/build/launcher [Info: 2024-03-27 11:53:16.9365088: NetQueue.cpp(133)] Action finalized: https://authorization.franchise.minecraft-services.net/api/v1/build/launcher [Info: 2024-03-27 11:53:16.9368668: NetQueue.cpp(213)] NetQueue: Starting net action https://redstone-launcher.mojang.com/release/v2/products/launcher/8c27cef2cad375cacbb4a98169dae13a58fb7c09/win32.json [Info: 2024-03-27 11:53:16.9626511: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchermeta.mojang.com [Info: 2024-03-27 11:53:16.9626905: NetQueue.cpp(102)] NetQueue: Action finished: https://launchermeta.mojang.com/mc/game/version_manifest_v2.json [Info: 2024-03-27 11:53:16.9627046: NetQueue.cpp(133)] Action finalized: https://launchermeta.mojang.com/mc/game/version_manifest_v2.json [Info: 2024-03-27 11:53:16.9627503: GameVersionManager.cpp(454)] Got available versions manifest from https://launchermeta.mojang.com/mc/game/version_manifest_v2.json [Info: 2024-03-27 11:53:16.9815529: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:16.9816928: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:17.0668575: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.gameVersions"); [Info: 2024-03-27 11:53:17.1966778: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: redstone-launcher.mojang.com [Info: 2024-03-27 11:53:17.1967305: NetQueue.cpp(102)] NetQueue: Action finished: https://redstone-launcher.mojang.com/release/v2/products/launcher/8c27cef2cad375cacbb4a98169dae13a58fb7c09/win32.json [Info: 2024-03-27 11:53:17.1967969: NetQueue.cpp(133)] Action finalized: https://redstone-launcher.mojang.com/release/v2/products/launcher/8c27cef2cad375cacbb4a98169dae13a58fb7c09/win32.json [Info: 2024-03-27 11:53:17.1973725: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: api.minecraftservices.com [Info: 2024-03-27 11:53:17.1974060: NetQueue.cpp(102)] NetQueue: Action finished: https://api.minecraftservices.com/minecraft/profile [Info: 2024-03-27 11:53:17.1974152: NetQueue.cpp(104)] NetQueue: Action finished debug details: https://api.minecraftservices.com/minecraft/profile Response code: 200 Response body: [Warning: 2024-03-27 11:53:17.1974832: Common_p.h(44)] Deserializing Minecraft Services response.skins[0].textureKey: Unknown key [Info: 2024-03-27 11:53:17.1975172: NetQueue.cpp(133)] Action finalized: https://api.minecraftservices.com/minecraft/profile [Info: 2024-03-27 11:53:17.1975300: UnifiedMSAAccounts.cpp(599)] Profile fetch successful [Info: 2024-03-27 11:53:17.2420206: UnifiedMSAAccounts.cpp(1608)] Fetching Realms subscription data for account 284609d49b224f6baac1fd78fbd552f4 [Info: 2024-03-27 11:53:17.2421468: UnifiedMSAAccounts.cpp(625)] Broadcasting change due to new [forced:1] Entitlements for 284609d49b224f6baac1fd78fbd552f4 [Info: 2024-03-27 11:53:17.2433928: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.realmsData"); [Info: 2024-03-27 11:53:17.2437368: ControllerInterface.cpp(106)] Running method getAccountData [Info: 2024-03-27 11:53:17.2437885: UnifiedAccounts.cpp(349)] Internet state in main process: online=1 [Info: 2024-03-27 11:53:17.2522086: NetQueue.cpp(213)] NetQueue: Starting net action https://payments.realms.minecraft-services.net/api/v1.0/java/public/subscriptions/ca49ec7dd20c4f87a64240c26da713db [Info: 2024-03-27 11:53:17.3502298: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:53:17.3506165: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:53:17.3507605: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:53:17.3514985: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:17.4421412: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:17.4431328: ControllerInterface.cpp(106)] Running method getRealmsInvites [Info: 2024-03-27 11:53:17.4826933: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:17.4834135: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:53:17.4841536: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:53:17.4850163: client_handler.cpp(430)] Handling PostLegacyTelemetryEvent message [Info: 2024-03-27 11:53:17.4851693: ControllerInterface.cpp(106)] Running method telemetryEventUiAction [Info: 2024-03-27 11:53:17.4989459: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/news.json [Info: 2024-03-27 11:53:17.4990363: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/highlightDialogs.json [Info: 2024-03-27 11:53:17.4990554: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/voteEvent.json [Info: 2024-03-27 11:53:17.4990758: NetQueue.cpp(213)] NetQueue: Starting net action https://pc.realms.minecraft.net/invites/pending/ [Info: 2024-03-27 11:53:17.5328943: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.5329449: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/news.json [Info: 2024-03-27 11:53:17.5329790: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/news.json [Info: 2024-03-27 11:53:17.5480966: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:17.5492029: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.5492292: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/voteEvent.json [Info: 2024-03-27 11:53:17.5492546: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/voteEvent.json [Info: 2024-03-27 11:53:17.5606890: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.5607288: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/highlightDialogs.json [Info: 2024-03-27 11:53:17.5607564: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/highlightDialogs.json [Info: 2024-03-27 11:53:17.5625507: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.realmsData"); [Info: 2024-03-27 11:53:17.5637310: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:17.5749335: ControllerInterface.cpp(106)] Running method reportLatency [Info: 2024-03-27 11:53:17.6285472: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:17.6456882: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:53:17.6541053: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:17.6678825: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:17.6899587: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:17.7147817: ControllerInterface.cpp(106)] Running method reportLatency [Info: 2024-03-27 11:53:17.7221906: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:17.7519654: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/customCallouts.json [Info: 2024-03-27 11:53:17.7520878: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/dynamicPromotionalContent.json [Info: 2024-03-27 11:53:17.7521143: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/images/FEB24LAUNCHER2javarealmslaunchertemplate700x466.jpg [Info: 2024-03-27 11:53:17.7521352: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/images/Quickplay700466.png [Info: 2024-03-27 11:53:17.7668605: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.7669094: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/dynamicPromotionalContent.json [Info: 2024-03-27 11:53:17.7669424: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/dynamicPromotionalContent.json [Info: 2024-03-27 11:53:17.7669816: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/images/Jan24LAUNCHER2javarealmslaunchertemplate700x466.jpg [Info: 2024-03-27 11:53:17.7723171: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.7723550: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/customCallouts.json [Info: 2024-03-27 11:53:17.7723774: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/customCallouts.json [Info: 2024-03-27 11:53:17.7724124: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/images/46Y9L1zeW6KUsnGPheWsroeditorialsoothingstorieslauncher700x466.jpeg [Info: 2024-03-27 11:53:17.7809412: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.7809923: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/images/FEB24LAUNCHER2javarealmslaunchertemplate700x466.jpg [Info: 2024-03-27 11:53:17.7810296: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/images/FEB24LAUNCHER2javarealmslaunchertemplate700x466.jpg [Info: 2024-03-27 11:53:17.7810796: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/images/1MWbUCfgD4RZaAeA6Oir1YNewOnRealmsThe8MapsOfJavaRealmsDay.jpeg [Info: 2024-03-27 11:53:17.7926952: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.7927538: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/images/1MWbUCfgD4RZaAeA6Oir1YNewOnRealmsThe8MapsOfJavaRealmsDay.jpeg [Info: 2024-03-27 11:53:17.7927959: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/images/1MWbUCfgD4RZaAeA6Oir1YNewOnRealmsThe8MapsOfJavaRealmsDay.jpeg [Info: 2024-03-27 11:53:17.7928478: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/images/6UGQuW8imAiM3b4FHKCXstCanIUseMinecraftMusic.jpeg [Info: 2024-03-27 11:53:17.8010112: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.8010597: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/images/Jan24LAUNCHER2javarealmslaunchertemplate700x466.jpg [Info: 2024-03-27 11:53:17.8011052: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/images/Jan24LAUNCHER2javarealmslaunchertemplate700x466.jpg [Info: 2024-03-27 11:53:17.8011435: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/images/7D08wouJG2TZwU3u5q7JVJLogoLarge.jpeg [Info: 2024-03-27 11:53:17.8031532: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.8031791: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/images/6UGQuW8imAiM3b4FHKCXstCanIUseMinecraftMusic.jpeg [Info: 2024-03-27 11:53:17.8032017: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/images/6UGQuW8imAiM3b4FHKCXstCanIUseMinecraftMusic.jpeg [Info: 2024-03-27 11:53:17.8032337: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/images/4tcIgkUVn9YHwPYdfK52yNNewonJavaRealmsAWiseManOnceSaid....jpeg [Info: 2024-03-27 11:53:17.8125175: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.8125798: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/images/46Y9L1zeW6KUsnGPheWsroeditorialsoothingstorieslauncher700x466.jpeg [Info: 2024-03-27 11:53:17.8126218: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/images/46Y9L1zeW6KUsnGPheWsroeditorialsoothingstorieslauncher700x466.jpeg [Info: 2024-03-27 11:53:17.8126843: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/images/6tWuXq5yGefqaBFA6RCKI311.jpeg [Info: 2024-03-27 11:53:17.8143892: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.8144292: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/images/Quickplay700466.png [Info: 2024-03-27 11:53:17.8144580: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/images/Quickplay700466.png [Info: 2024-03-27 11:53:17.8145053: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/v2/images/4qLrij0nHM345Y92Pb3NPDNewonJavaRealmsParanormalMaptivity.jpeg [Info: 2024-03-27 11:53:17.8171266: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.8171645: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/images/4tcIgkUVn9YHwPYdfK52yNNewonJavaRealmsAWiseManOnceSaid....jpeg [Info: 2024-03-27 11:53:17.8171972: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/images/4tcIgkUVn9YHwPYdfK52yNNewonJavaRealmsAWiseManOnceSaid....jpeg [Info: 2024-03-27 11:53:17.8255552: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.8256393: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/images/7D08wouJG2TZwU3u5q7JVJLogoLarge.jpeg [Info: 2024-03-27 11:53:17.8256915: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/images/7D08wouJG2TZwU3u5q7JVJLogoLarge.jpeg [Info: 2024-03-27 11:53:17.8441787: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.8442393: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/images/4qLrij0nHM345Y92Pb3NPDNewonJavaRealmsParanormalMaptivity.jpeg [Info: 2024-03-27 11:53:17.8442782: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/images/4qLrij0nHM345Y92Pb3NPDNewonJavaRealmsParanormalMaptivity.jpeg [Info: 2024-03-27 11:53:17.8519953: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:17.8520371: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/v2/images/6tWuXq5yGefqaBFA6RCKI311.jpeg [Info: 2024-03-27 11:53:17.8520654: NetQueue.cpp(133)] Action finalized: https://launchercontent.mojang.com/v2/images/6tWuXq5yGefqaBFA6RCKI311.jpeg [Info: 2024-03-27 11:53:18.0338858: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:18.5010458: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: pc.realms.minecraft.net [Info: 2024-03-27 11:53:18.5011034: NetQueue.cpp(102)] NetQueue: Action finished: https://pc.realms.minecraft.net/invites/pending/ [Info: 2024-03-27 11:53:18.5011492: NetQueue.cpp(133)] Action finalized: https://pc.realms.minecraft.net/invites/pending/ [Info: 2024-03-27 11:53:18.5081797: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:18.5119452: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.realmsData"); [Info: 2024-03-27 11:53:18.5127922: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:18.6163336: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: payments.realms.minecraft-services.net [Info: 2024-03-27 11:53:18.6163959: NetQueue.cpp(102)] NetQueue: Action finished: https://payments.realms.minecraft-services.net/api/v1.0/java/public/subscriptions/ca49ec7dd20c4f87a64240c26da713db [Warning: 2024-03-27 11:53:18.6164833: SentryAPI.cpp(146)] FranchiseRealmsResponse: franchiseservices::get_realms_subscription_response.createdDate: Unknown key [Warning: 2024-03-27 11:53:18.6165255: SentryAPI.cpp(146)] FranchiseRealmsResponse: franchiseservices::get_realms_subscription_response.expirationDate: Unknown key [Warning: 2024-03-27 11:53:18.6165836: SentryAPI.cpp(146)] FranchiseRealmsResponse: franchiseservices::get_realms_subscription_response.ownerId: Unknown key [Info: 2024-03-27 11:53:18.6166233: NetQueue.cpp(133)] Action finalized: https://payments.realms.minecraft-services.net/api/v1.0/java/public/subscriptions/ca49ec7dd20c4f87a64240c26da713db [Info: 2024-03-27 11:53:18.6169146: Xal.lib(0)] XAL: [op 183257568] Operation StateGetTokenAndSignature is starting [Info: 2024-03-27 11:53:18.6169523: Xal.lib(0)] XAL: [op 183257568] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6220565: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:18.6270950: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.realmsData"); [Info: 2024-03-27 11:53:18.6279257: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:18.6963081: Xal.lib(0)] XAL: [op 67824152] GetTokenAndSignature being run for usertype: User [Info: 2024-03-27 11:53:18.6963583: Xal.lib(0)] XAL: [op 67824152] Operation GetTokenAndSignature is starting [Info: 2024-03-27 11:53:18.6963886: Xal.lib(0)] XAL: [op 67824152] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6964865: Xal.lib(0)] XAL: [op 180993352] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:18.6965129: Xal.lib(0)] XAL: [op 180993352] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6965871: Xal.lib(0)] XAL: [op 181895504] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:18.6966115: Xal.lib(0)] XAL: [op 181895504] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6966864: Xal.lib(0)] XAL: [op 181895504] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:18.6968178: Xal.lib(0)] XAL: [op 69177656] Operation GetDtoken is starting [Info: 2024-03-27 11:53:18.6968380: Xal.lib(0)] XAL: [op 69177656] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6968625: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000048BFD3D760) [Info: 2024-03-27 11:53:18.6968938: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:50:05.3050000Z, systemNow:2024-03-27T11:53:18.6950000Z} [Info: 2024-03-27 11:53:18.6969166: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000048BFD3D760) [Info: 2024-03-27 11:53:18.6969341: Xal.lib(0)] XAL: [op 69177656] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:18.6970059: Xal.lib(0)] XAL: [op 180993352] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:18.6970932: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000048BFD75EE4) [Info: 2024-03-27 11:53:18.6971164: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Xtoken, relyingParty:http://mp.microsoft.com/, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:false, xerr:0, expiry:2024-03-26T02:15:11.1470000Z, now:2024-03-27T11:50:05.3050000Z, systemNow:2024-03-27T11:53:18.6950000Z} [Info: 2024-03-27 11:53:18.6971372: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000048BFD75EE4) [Info: 2024-03-27 11:53:18.6972011: Xal.lib(0)] XAL: [op 179731520] Operation GetXtoken is starting [Info: 2024-03-27 11:53:18.6972184: Xal.lib(0)] XAL: [op 179731520] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6972827: Xal.lib(0)] XAL: [op 180997576] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:18.6973011: Xal.lib(0)] XAL: [op 180997576] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6973621: Xal.lib(0)] XAL: [op 181896064] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:18.6973784: Xal.lib(0)] XAL: [op 181896064] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6974067: Xal.lib(0)] XAL: [op 181896064] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:18.6975245: Xal.lib(0)] XAL: [op 69175456] Operation GetDtoken is starting [Info: 2024-03-27 11:53:18.6975421: Xal.lib(0)] XAL: [op 69175456] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6975594: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000048BFDE7B98) [Info: 2024-03-27 11:53:18.6975898: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:50:05.3050000Z, systemNow:2024-03-27T11:53:18.6950000Z} [Info: 2024-03-27 11:53:18.6976145: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000048BFDE7B98) [Info: 2024-03-27 11:53:18.6976317: Xal.lib(0)] XAL: [op 69175456] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:18.6976947: Xal.lib(0)] XAL: [op 180997576] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:18.6978199: Xal.lib(0)] XAL: [op 69174856] Operation GetDtoken is starting [Info: 2024-03-27 11:53:18.6978384: Xal.lib(0)] XAL: [op 69174856] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6978553: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000048BFE3003C) [Info: 2024-03-27 11:53:18.6978772: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:50:05.3050000Z, systemNow:2024-03-27T11:53:18.6950000Z} [Info: 2024-03-27 11:53:18.6978972: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000048BFE3003C) [Info: 2024-03-27 11:53:18.6979191: Xal.lib(0)] XAL: [op 69174856] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:18.6980531: Xal.lib(0)] XAL: [op 70126392] Operation GetMsaTicket is starting [Info: 2024-03-27 11:53:18.6980830: Xal.lib(0)] XAL: [op 70126392] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6981441: Xal.lib(0)] XAL: [op 180992560] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:18.6981619: Xal.lib(0)] XAL: [op 180992560] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6982283: Xal.lib(0)] XAL: [op 181895504] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:18.6982449: Xal.lib(0)] XAL: [op 181895504] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6982606: Xal.lib(0)] XAL: [op 181895504] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:18.6983623: Xal.lib(0)] XAL: [op 69175456] Operation GetDtoken is starting [Info: 2024-03-27 11:53:18.6983786: Xal.lib(0)] XAL: [op 69175456] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6983941: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000048BFEB39B4) [Info: 2024-03-27 11:53:18.6984146: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:50:05.3050000Z, systemNow:2024-03-27T11:53:18.6950000Z} [Info: 2024-03-27 11:53:18.6984335: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000048BFEB39B4) [Info: 2024-03-27 11:53:18.6984495: Xal.lib(0)] XAL: [op 69175456] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:18.6985090: Xal.lib(0)] XAL: [op 180992560] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:18.6985695: Xal.lib(0)] XAL: >>> Xal::Auth::MsaTicketSet::GetTicket (00000048BFEDE678) [Info: 2024-03-27 11:53:18.6985903: Xal.lib(0)] XAL: Found requested token in cache: [firstScope:service::user.auth.xboxlive.com::MBI_SSL]:{expiry:2024-03-28T11:53:07.0620000Z, now:2024-03-27T11:50:05.3050000Z, systemNow:2024-03-27T11:53:18.6950000Z} [Info: 2024-03-27 11:53:18.6986094: Xal.lib(0)] XAL: <<< Xal::Auth::MsaTicketSet::GetTicket (00000048BFEDE678) [Info: 2024-03-27 11:53:18.6986260: Xal.lib(0)] XAL: [op 70126392] Operation GetMsaTicket succeeded. [Info: 2024-03-27 11:53:18.6987040: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000048BFEFF440) [Info: 2024-03-27 11:53:18.6987261: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Utoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-03-29T14:08:26.5550000Z, now:2024-03-27T11:50:05.3050000Z, systemNow:2024-03-27T11:53:18.6950000Z} [Info: 2024-03-27 11:53:18.6987453: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000048BFEFF440) [Info: 2024-03-27 11:53:18.6987627: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000048BFF0D860) [Info: 2024-03-27 11:53:18.6987840: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Ttoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-08T14:08:26.5530000Z, now:2024-03-27T11:50:05.3050000Z, systemNow:2024-03-27T11:53:18.6950000Z} [Info: 2024-03-27 11:53:18.6988031: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000048BFF0D860) [Info: 2024-03-27 11:53:18.6988654: Xal.lib(0)] XAL: [op 182599848] Refresh Xtoken running with user: true. [Info: 2024-03-27 11:53:18.6988829: Xal.lib(0)] XAL: [op 182599848] Operation RefreshXtoken is starting [Info: 2024-03-27 11:53:18.6989001: Xal.lib(0)] XAL: [op 182599848] with CV 's7uWKQ0ltxUQNmPM.29.0' [Info: 2024-03-27 11:53:18.6989233: Xal.lib(0)] XAL: [op 182599848] RefreshXtoken token fetch started. [Info: 2024-03-27 11:53:18.6995815: NetQueue.cpp(213)] NetQueue: Starting net action xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:19.1269839: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 52.156.147.113, Host: xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:19.1270244: NetQueue.cpp(102)] NetQueue: Action finished: xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:19.1270837: NetQueue.cpp(133)] Action finalized: xsts.auth.xboxlive.com [Info: 2024-03-27 11:53:19.1923883: Xal.lib(0)] XAL: Clock skew updated. Server time: 2024-03-27T11:50:05.7800000Z - System time: 2024-03-27T11:53:19.1910000Z = skew (seconds) -193 [Info: 2024-03-27 11:53:19.1925382: Xal.lib(0)] XAL: [op 183421192] Operation SaveClockSkew is starting [Info: 2024-03-27 11:53:19.1925757: Xal.lib(0)] XAL: [op 183421192] with CV 's7uWKQ0ltxUQNmPM.29.1' [Info: 2024-03-27 11:53:19.1926162: Xal.lib(0)] XAL: [op 182688016] Client operation StorageWritePlatformOperation starting (promise 182146344) [Info: 2024-03-27 11:53:19.1926939: Xal.lib(0)] XAL: [op 182688016] Client operation StorageWritePlatformOperation calling platform handler [Info: 2024-03-27 11:53:19.1927264: Xal.lib(0)] XAL: [op 182688016] Added operation as handle 0AE3997C with type 59558694 [Info: 2024-03-27 11:53:19.1927527: XalStorage.cpp(235)] [op 0AE3997C] Xal Write callback - Started [Info: 2024-03-27 11:53:19.1930656: Xal.lib(0)] XAL: [op 182688016] Client operation StorageWritePlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:19.1931019: Xal.lib(0)] XAL: [op 182688016] Cleared operation handle 0AE3997C [Info: 2024-03-27 11:53:19.1931334: Xal.lib(0)] XAL: [op 182688016] Client operation StorageWritePlatformOperation succeeded [Info: 2024-03-27 11:53:19.1932514: XalStorage.cpp(311)] [op 0AE3997C] Xal Write callback - Succeeded [Info: 2024-03-27 11:53:19.3120912: Xal.lib(0)] XAL: [op 182688016] Client operation StorageWritePlatformOperation continuing (promise 182146344) [Info: 2024-03-27 11:53:19.3121729: Xal.lib(0)] XAL: [op 183421192] Operation SaveClockSkew succeeded. [Info: 2024-03-27 11:53:19.3124498: Xal.lib(0)] XAL: [op 69865368] Operation WriteCacheData is starting [Info: 2024-03-27 11:53:19.3124908: Xal.lib(0)] XAL: [op 69865368] with CV 's7uWKQ0ltxUQNmPM.29.1' [Info: 2024-03-27 11:53:19.3125297: Xal.lib(0)] XAL: [op 182685552] Client operation StorageWritePlatformOperation starting (promise 182145576) [Info: 2024-03-27 11:53:19.3125684: Xal.lib(0)] XAL: [op 182688016] Client operation StorageWritePlatformOperation destroyed [Info: 2024-03-27 11:53:19.3126094: Xal.lib(0)] XAL: [op 182685552] Client operation StorageWritePlatformOperation calling platform handler [Info: 2024-03-27 11:53:19.3126378: Xal.lib(0)] XAL: [op 182685552] Added operation as handle 0AE38FDC with type 59558694 [Info: 2024-03-27 11:53:19.3126637: XalStorage.cpp(235)] [op 0AE38FDC] Xal Write callback - Started [Info: 2024-03-27 11:53:19.4415266: Xal.lib(0)] XAL: [op 182685552] Client operation StorageWritePlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2024-03-27 11:53:19.4415976: Xal.lib(0)] XAL: [op 182685552] Cleared operation handle 0AE38FDC [Info: 2024-03-27 11:53:19.4416300: Xal.lib(0)] XAL: [op 182685552] Client operation StorageWritePlatformOperation succeeded [Info: 2024-03-27 11:53:19.4417362: XalStorage.cpp(299)] [op 0AE38FDC] Xal Write callback - Succeeded [Info: 2024-03-27 11:53:19.5604491: Xal.lib(0)] XAL: [op 182685552] Client operation StorageWritePlatformOperation continuing (promise 182145576) [Info: 2024-03-27 11:53:19.5605801: Xal.lib(0)] XAL: [op 69865368] Operation WriteCacheData succeeded. [Info: 2024-03-27 11:53:19.5607190: Xal.lib(0)] XAL: [op 182599848] RefreshXtoken token fetch done. [Info: 2024-03-27 11:53:19.5607492: Xal.lib(0)] XAL: [op 182599848] Operation RefreshXtoken succeeded. [Info: 2024-03-27 11:53:19.5608940: Xal.lib(0)] XAL: [op 179731520] Operation GetXtoken succeeded. [Info: 2024-03-27 11:53:19.5610062: Xal.lib(0)] XAL: [op 67824152] Operation GetTokenAndSignature succeeded. [Info: 2024-03-27 11:53:19.5612021: Xal.lib(0)] XAL: [op 183257568] Operation StateGetTokenAndSignature succeeded. [Info: 2024-03-27 11:53:19.5613446: Xal.lib(0)] XAL: XalUserGetTokenAndSignatureSilentlyAsync calling back to client with result 'Ok' (0x00000000) [Info: 2024-03-27 11:53:19.5613884: Xal.lib(0)] XAL: [op 182685552] Client operation StorageWritePlatformOperation destroyed [Info: 2024-03-27 11:53:19.5614671: UserIdentity.cpp(678)] Successfully retrieved token [Info: 2024-03-27 11:53:19.5616232: NetQueue.cpp(213)] NetQueue: Starting net action https://client.discovery.minecraft-services.net/api/v1.0/discovery/MinecraftPE/builds/1.18.12 [Info: 2024-03-27 11:53:19.6367997: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: client.discovery.minecraft-services.net [Info: 2024-03-27 11:53:19.6368411: NetQueue.cpp(102)] NetQueue: Action finished: https://client.discovery.minecraft-services.net/api/v1.0/discovery/MinecraftPE/builds/1.18.12 [Info: 2024-03-27 11:53:19.6369468: NetQueue.cpp(133)] Action finalized: https://client.discovery.minecraft-services.net/api/v1.0/discovery/MinecraftPE/builds/1.18.12 [Info: 2024-03-27 11:53:19.6370147: NetQueue.cpp(213)] NetQueue: Starting net action https://entitlements.mktpl.minecraft-services.net/api/v1.0/subscriptions/realms/check [Info: 2024-03-27 11:53:20.0725516: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: entitlements.mktpl.minecraft-services.net [Info: 2024-03-27 11:53:20.0725951: NetQueue.cpp(102)] NetQueue: Action finished: https://entitlements.mktpl.minecraft-services.net/api/v1.0/subscriptions/realms/check [Info: 2024-03-27 11:53:20.0726273: NetQueue.cpp(133)] Action finalized: https://entitlements.mktpl.minecraft-services.net/api/v1.0/subscriptions/realms/check [Info: 2024-03-27 11:53:20.0728288: Xal.lib(0)] XAL: [op 183262352] Operation StateGetTokenAndSignature is starting [Info: 2024-03-27 11:53:20.0728682: Xal.lib(0)] XAL: [op 183262352] with CV 's7uWKQ0ltxUQNmPM.32.0' [Info: 2024-03-27 11:53:20.0782687: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:20.0820096: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.realmsData"); [Info: 2024-03-27 11:53:20.0825589: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:20.1754753: Xal.lib(0)] XAL: [op 67824152] GetTokenAndSignature being run for usertype: User [Info: 2024-03-27 11:53:20.1755825: Xal.lib(0)] XAL: [op 67824152] Operation GetTokenAndSignature is starting [Info: 2024-03-27 11:53:20.1756663: Xal.lib(0)] XAL: [op 67824152] with CV 's7uWKQ0ltxUQNmPM.32.0' [Info: 2024-03-27 11:53:20.1758926: Xal.lib(0)] XAL: [op 180998104] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:20.1759898: Xal.lib(0)] XAL: [op 180998104] with CV 's7uWKQ0ltxUQNmPM.32.0' [Info: 2024-03-27 11:53:20.1761783: Xal.lib(0)] XAL: [op 181893824] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:20.1762199: Xal.lib(0)] XAL: [op 181893824] with CV 's7uWKQ0ltxUQNmPM.32.0' [Info: 2024-03-27 11:53:20.1762517: Xal.lib(0)] XAL: [op 181893824] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:20.1765153: Xal.lib(0)] XAL: [op 69174456] Operation GetDtoken is starting [Info: 2024-03-27 11:53:20.1765483: Xal.lib(0)] XAL: [op 69174456] with CV 's7uWKQ0ltxUQNmPM.32.0' [Info: 2024-03-27 11:53:20.1767245: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (000000491808A230) [Info: 2024-03-27 11:53:20.1767747: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:50:06.7620000Z, systemNow:2024-03-27T11:53:20.1740000Z} [Info: 2024-03-27 11:53:20.1768853: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (000000491808A230) [Info: 2024-03-27 11:53:20.1769210: Xal.lib(0)] XAL: [op 69174456] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:20.1770476: Xal.lib(0)] XAL: [op 180998104] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:20.1772202: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000049181045A8) [Info: 2024-03-27 11:53:20.1772654: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Xtoken, relyingParty:http://mp.microsoft.com/, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-03-28T03:50:05.7800000Z, now:2024-03-27T11:50:06.7620000Z, systemNow:2024-03-27T11:53:20.1740000Z} [Info: 2024-03-27 11:53:20.1773004: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000049181045A8) [Info: 2024-03-27 11:53:20.1774483: Xal.lib(0)] XAL: [op 179731520] Operation GetXtoken is starting [Info: 2024-03-27 11:53:20.1774837: Xal.lib(0)] XAL: [op 179731520] with CV 's7uWKQ0ltxUQNmPM.32.0' [Info: 2024-03-27 11:53:20.1775957: Xal.lib(0)] XAL: [op 180993088] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:53:20.1776254: Xal.lib(0)] XAL: [op 180993088] with CV 's7uWKQ0ltxUQNmPM.32.0' [Info: 2024-03-27 11:53:20.1777414: Xal.lib(0)] XAL: [op 181897744] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:53:20.1777713: Xal.lib(0)] XAL: [op 181897744] with CV 's7uWKQ0ltxUQNmPM.32.0' [Info: 2024-03-27 11:53:20.1777988: Xal.lib(0)] XAL: [op 181897744] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:53:20.1780600: Xal.lib(0)] XAL: [op 69173056] Operation GetDtoken is starting [Info: 2024-03-27 11:53:20.1781028: Xal.lib(0)] XAL: [op 69173056] with CV 's7uWKQ0ltxUQNmPM.32.0' [Info: 2024-03-27 11:53:20.1781342: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000049181E3988) [Info: 2024-03-27 11:53:20.1781790: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:50:06.7620000Z, systemNow:2024-03-27T11:53:20.1740000Z} [Info: 2024-03-27 11:53:20.1782181: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00000049181E3988) [Info: 2024-03-27 11:53:20.1782493: Xal.lib(0)] XAL: [op 69173056] Operation GetDtoken succeeded. [Info: 2024-03-27 11:53:20.1783845: Xal.lib(0)] XAL: [op 180993088] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:53:20.1785111: Xal.lib(0)] XAL: [op 179731520] Operation GetXtoken succeeded. [Info: 2024-03-27 11:53:20.1786368: Xal.lib(0)] XAL: [op 67824152] Operation GetTokenAndSignature succeeded. [Info: 2024-03-27 11:53:20.1787572: Xal.lib(0)] XAL: [op 183262352] Operation StateGetTokenAndSignature succeeded. [Info: 2024-03-27 11:53:20.1789592: Xal.lib(0)] XAL: XalUserGetTokenAndSignatureSilentlyAsync calling back to client with result 'Ok' (0x00000000) [Info: 2024-03-27 11:53:20.1790239: UserIdentity.cpp(678)] Successfully retrieved token [Info: 2024-03-27 11:53:20.1791563: NetQueue.cpp(213)] NetQueue: Starting net action https://entitlements.mktpl.minecraft-services.net/api/v1.0/subscriptions/realms/nextavailable [Info: 2024-03-27 11:53:20.7255939: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: entitlements.mktpl.minecraft-services.net [Info: 2024-03-27 11:53:20.7256450: NetQueue.cpp(102)] NetQueue: Action finished: https://entitlements.mktpl.minecraft-services.net/api/v1.0/subscriptions/realms/nextavailable [Info: 2024-03-27 11:53:20.7256886: NetQueue.cpp(133)] Action finalized: https://entitlements.mktpl.minecraft-services.net/api/v1.0/subscriptions/realms/nextavailable [Info: 2024-03-27 11:53:20.7311476: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:20.7353491: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.realmsData"); [Info: 2024-03-27 11:53:20.7358563: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:53:22.4894494: UserIdentity.cpp(1094)] Current token [with-refresh:false] - [notnull] [Info: 2024-03-27 11:53:22.4900094: TelemetryEventSink_PlayFab.cpp(131)] Posting 0 events. [Info: 2024-03-27 11:53:22.4901073: NetQueue.cpp(213)] NetQueue: Starting net action https://api.minecraftservices.com/events [Info: 2024-03-27 11:53:22.8118133: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: api.minecraftservices.com [Info: 2024-03-27 11:53:22.8118572: NetQueue.cpp(102)] NetQueue: Action finished: https://api.minecraftservices.com/events [Info: 2024-03-27 11:53:22.8118917: NetQueue.cpp(133)] Action finalized: https://api.minecraftservices.com/events [Info: 2024-03-27 11:53:35.3405463: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/ [Info: 2024-03-27 11:53:35.5867904: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:53:35.5868326: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/ [Warning: 2024-03-27 11:53:35.5868650: NetQueue.cpp(124)] Action https://launchercontent.mojang.com/ failed in response handler. response code: 404 - error string: ' [Info: 2024-03-27 11:54:05.9265050: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/ [Info: 2024-03-27 11:54:06.1680208: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:54:06.1680668: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/ [Warning: 2024-03-27 11:54:06.1680990: NetQueue.cpp(124)] Action https://launchercontent.mojang.com/ failed in response handler. response code: 404 - error string: ' [Info: 2024-03-27 11:54:17.3757633: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:54:36.4120546: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/ [Info: 2024-03-27 11:54:36.6683168: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:54:36.6683702: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/ [Warning: 2024-03-27 11:54:36.6684017: NetQueue.cpp(124)] Action https://launchercontent.mojang.com/ failed in response handler. response code: 404 - error string: ' [Info: 2024-03-27 11:55:04.8893906: ProductInstance.cpp(138)] Do not allow remote update check, time is not due, [dungeons-retail-Piston] [Info: 2024-03-27 11:55:04.9566001: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.productInfo"); [Info: 2024-03-27 11:55:05.0097694: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.productInfo"); [Info: 2024-03-27 11:55:05.0191132: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.gameInstances"); [Info: 2024-03-27 11:55:05.0681197: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.productInfo"); [Info: 2024-03-27 11:55:05.2182080: ProductInstance.cpp(114)] Allow remote update check, no entry found [java-retail-Piston] [Info: 2024-03-27 11:55:06.9150083: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/ [Info: 2024-03-27 11:55:07.1605158: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:55:07.1605624: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/ [Warning: 2024-03-27 11:55:07.1605995: NetQueue.cpp(124)] Action https://launchercontent.mojang.com/ failed in response handler. response code: 404 - error string: ' [Info: 2024-03-27 11:55:10.6093990: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:55:10.6105317: ControllerInterface.cpp(106)] Running method reportLatency [Info: 2024-03-27 11:55:10.8600286: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:55:17.3778316: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:55:22.6603098: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:55:22.6923142: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:55:22.7768630: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:55:22.7790153: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:55:37.4100464: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/ [Info: 2024-03-27 11:55:37.6559562: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:55:37.6560486: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/ [Warning: 2024-03-27 11:55:37.6561024: NetQueue.cpp(124)] Action https://launchercontent.mojang.com/ failed in response handler. response code: 404 - error string: ' [Info: 2024-03-27 11:56:07.9092815: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/ [Info: 2024-03-27 11:56:08.1525609: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:56:08.1526095: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/ [Warning: 2024-03-27 11:56:08.1526481: NetQueue.cpp(124)] Action https://launchercontent.mojang.com/ failed in response handler. response code: 404 - error string: ' [Info: 2024-03-27 11:56:17.3642127: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:56:38.4002648: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/ [Info: 2024-03-27 11:56:38.6436046: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:56:38.6436797: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/ [Warning: 2024-03-27 11:56:38.6437424: NetQueue.cpp(124)] Action https://launchercontent.mojang.com/ failed in response handler. response code: 404 - error string: ' [Info: 2024-03-27 11:57:05.0631474: ProductInstance.cpp(138)] Do not allow remote update check, time is not due, [dungeons-retail-Piston] [Info: 2024-03-27 11:57:05.1277116: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.productInfo"); [Info: 2024-03-27 11:57:05.1359606: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.gameInstances"); [Info: 2024-03-27 11:57:05.1863306: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.productInfo"); [Info: 2024-03-27 11:57:05.3828083: ProductInstance.cpp(114)] Allow remote update check, no entry found [java-retail-Piston] [Info: 2024-03-27 11:57:08.9126560: NetQueue.cpp(213)] NetQueue: Starting net action https://launchercontent.mojang.com/ [Info: 2024-03-27 11:57:09.1546629: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: launchercontent.mojang.com [Info: 2024-03-27 11:57:09.1547103: NetQueue.cpp(102)] NetQueue: Action finished: https://launchercontent.mojang.com/ [Warning: 2024-03-27 11:57:09.1547435: NetQueue.cpp(124)] Action https://launchercontent.mojang.com/ failed in response handler. response code: 404 - error string: ' [Info: 2024-03-27 11:57:15.6074751: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:57:15.6091319: ControllerInterface.cpp(106)] Running method reportLatency [Info: 2024-03-27 11:57:15.7460664: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:57:15.7521770: ControllerInterface.cpp(106)] Running method downloadConfiguration [Info: 2024-03-27 11:57:15.7527645: GameVersionManager.cpp(811)] resolveVersionID: Resolved custom:1.19.2-forge-43.3.9 to 1.19.2-forge-43.3.9 [Info: 2024-03-27 11:57:15.7528212: GameVersionManager.cpp(536)] Request version details for: 1.19.2-forge-43.3.9 [Info: 2024-03-27 11:57:15.7529217: GameVersionManager.cpp(536)] Request version details for: 1.19.2 [Info: 2024-03-27 11:57:15.7589253: GameVersionManager.cpp(811)] resolveVersionID: Resolved custom:1.19.2-forge-43.3.9 to 1.19.2-forge-43.3.9 [Warning: 2024-03-27 11:57:15.7595626: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: io.netty:netty-transport-native-epoll [Warning: 2024-03-27 11:57:15.7598947: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl [Warning: 2024-03-27 11:57:15.7599256: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl [Warning: 2024-03-27 11:57:15.7599532: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl [Warning: 2024-03-27 11:57:15.7599806: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl [Warning: 2024-03-27 11:57:15.7600098: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl [Warning: 2024-03-27 11:57:15.7600853: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-jemalloc [Warning: 2024-03-27 11:57:15.7601181: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-jemalloc [Warning: 2024-03-27 11:57:15.7601464: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-jemalloc [Warning: 2024-03-27 11:57:15.7601745: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-jemalloc [Warning: 2024-03-27 11:57:15.7602043: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-jemalloc [Warning: 2024-03-27 11:57:15.7602470: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-openal [Warning: 2024-03-27 11:57:15.7602766: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-openal [Warning: 2024-03-27 11:57:15.7603127: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-openal [Warning: 2024-03-27 11:57:15.7603419: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-openal [Warning: 2024-03-27 11:57:15.7603711: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-openal [Warning: 2024-03-27 11:57:15.7604145: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-opengl [Warning: 2024-03-27 11:57:15.7604437: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-opengl [Warning: 2024-03-27 11:57:15.7604714: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-opengl [Warning: 2024-03-27 11:57:15.7604990: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-opengl [Warning: 2024-03-27 11:57:15.7605284: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-opengl [Warning: 2024-03-27 11:57:15.7605721: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-glfw [Warning: 2024-03-27 11:57:15.7606019: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-glfw [Warning: 2024-03-27 11:57:15.7606755: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-glfw [Warning: 2024-03-27 11:57:15.7607040: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-glfw [Warning: 2024-03-27 11:57:15.7607333: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-glfw [Warning: 2024-03-27 11:57:15.7607765: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-stb [Warning: 2024-03-27 11:57:15.7608056: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-stb [Warning: 2024-03-27 11:57:15.7608348: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-stb [Warning: 2024-03-27 11:57:15.7608622: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-stb [Warning: 2024-03-27 11:57:15.7608913: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-stb [Warning: 2024-03-27 11:57:15.7609347: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-tinyfd [Warning: 2024-03-27 11:57:15.7609646: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-tinyfd [Warning: 2024-03-27 11:57:15.7609921: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-tinyfd [Warning: 2024-03-27 11:57:15.7610204: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-tinyfd [Warning: 2024-03-27 11:57:15.7610498: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-tinyfd [Warning: 2024-03-27 11:57:15.7611111: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-glfw [Warning: 2024-03-27 11:57:15.7611428: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-jemalloc [Warning: 2024-03-27 11:57:15.7611742: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-openal [Warning: 2024-03-27 11:57:15.7612050: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-opengl [Warning: 2024-03-27 11:57:15.7612355: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-stb [Warning: 2024-03-27 11:57:15.7612869: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-tinyfd [Warning: 2024-03-27 11:57:15.7613198: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl [Info: 2024-03-27 11:57:15.7645163: JreManifestManager.cpp(178)] Using primary jre with manifest [Info: 2024-03-27 11:57:15.7646040: NetQueue.cpp(213)] NetQueue: Starting net action https://piston-meta.mojang.com/v1/packages/3355e10f323c52ed92c1e477e0b3d12dbcbdb596/manifest.json [Info: 2024-03-27 11:57:15.7682781: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.gameInstances"); [Info: 2024-03-27 11:57:15.8696514: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: piston-meta.mojang.com [Info: 2024-03-27 11:57:15.8696954: NetQueue.cpp(102)] NetQueue: Action finished: https://piston-meta.mojang.com/v1/packages/3355e10f323c52ed92c1e477e0b3d12dbcbdb596/manifest.json [Info: 2024-03-27 11:57:15.8697144: NetQueue.cpp(133)] Action finalized: https://piston-meta.mojang.com/v1/packages/3355e10f323c52ed92c1e477e0b3d12dbcbdb596/manifest.json [Info: 2024-03-27 11:57:15.8746841: PistonInstaller.cpp(285)] Inspecting files in C:\...\java-runtime-gamma [Info: 2024-03-27 11:57:15.8747308: PistonInstaller.cpp(286)] Using Sha1Cacher from thread 9108 [Error: 2024-03-27 11:57:15.8767385: Sha1Cacher.cpp(81)] Error reading cached SHA-1: bin/WinFallbackLookup.dll /#// 17108604542374530 [Info: 2024-03-27 11:57:15.8778151: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-console-l1-1-0.dll, internal: /:\...\api-ms-win-core-console-l1-1-0.dll [Info: 2024-03-27 11:57:15.8779406: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-console-l1-2-0.dll, internal: /:\...\api-ms-win-core-console-l1-2-0.dll [Info: 2024-03-27 11:57:15.8783082: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-datetime-l1-1-0.dll, internal: /:\...\api-ms-win-core-datetime-l1-1-0.dll [Info: 2024-03-27 11:57:15.8787310: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-debug-l1-1-0.dll, internal: /:\...\api-ms-win-core-debug-l1-1-0.dll [Info: 2024-03-27 11:57:15.8788349: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-errorhandling-l1-1-0.dll, internal: /:\...\api-ms-win-core-errorhandling-l1-1-0.dll [Info: 2024-03-27 11:57:15.8789623: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-fibers-l1-1-0.dll, internal: /:\...\api-ms-win-core-fibers-l1-1-0.dll [Info: 2024-03-27 11:57:15.8793946: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-file-l1-1-0.dll, internal: /:\...\api-ms-win-core-file-l1-1-0.dll [Info: 2024-03-27 11:57:15.8795109: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-file-l1-2-0.dll, internal: /:\...\api-ms-win-core-file-l1-2-0.dll [Info: 2024-03-27 11:57:15.8796027: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-file-l2-1-0.dll, internal: /:\...\api-ms-win-core-file-l2-1-0.dll [Info: 2024-03-27 11:57:15.8797001: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-handle-l1-1-0.dll, internal: /:\...\api-ms-win-core-handle-l1-1-0.dll [Info: 2024-03-27 11:57:15.8803620: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-heap-l1-1-0.dll, internal: /:\...\api-ms-win-core-heap-l1-1-0.dll [Info: 2024-03-27 11:57:15.8804583: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-interlocked-l1-1-0.dll, internal: /:\...\api-ms-win-core-interlocked-l1-1-0.dll [Info: 2024-03-27 11:57:15.8805777: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-libraryloader-l1-1-0.dll, internal: /:\...\api-ms-win-core-libraryloader-l1-1-0.dll [Info: 2024-03-27 11:57:15.8810987: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-localization-l1-2-0.dll, internal: /:\...\api-ms-win-core-localization-l1-2-0.dll [Info: 2024-03-27 11:57:15.8814215: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-memory-l1-1-0.dll, internal: /:\...\api-ms-win-core-memory-l1-1-0.dll [Info: 2024-03-27 11:57:15.8815067: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-namedpipe-l1-1-0.dll, internal: /:\...\api-ms-win-core-namedpipe-l1-1-0.dll [Info: 2024-03-27 11:57:15.8816280: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-processenvironment-l1-1-0.dll, internal: /:\...\api-ms-win-core-processenvironment-l1-1-0.dll [Info: 2024-03-27 11:57:15.8819376: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-processthreads-l1-1-0.dll, internal: /:\...\api-ms-win-core-processthreads-l1-1-0.dll [Info: 2024-03-27 11:57:15.8821891: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-processthreads-l1-1-1.dll, internal: /:\...\api-ms-win-core-processthreads-l1-1-1.dll [Info: 2024-03-27 11:57:15.8822751: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-profile-l1-1-0.dll, internal: /:\...\api-ms-win-core-profile-l1-1-0.dll [Info: 2024-03-27 11:57:15.8823927: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-rtlsupport-l1-1-0.dll, internal: /:\...\api-ms-win-core-rtlsupport-l1-1-0.dll [Info: 2024-03-27 11:57:15.8828949: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-string-l1-1-0.dll, internal: /:\...\api-ms-win-core-string-l1-1-0.dll [Info: 2024-03-27 11:57:15.8828891: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.gameVersions"); [Info: 2024-03-27 11:57:15.8831538: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-synch-l1-1-0.dll, internal: /:\...\api-ms-win-core-synch-l1-1-0.dll [Info: 2024-03-27 11:57:15.8832474: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-synch-l1-2-0.dll, internal: /:\...\api-ms-win-core-synch-l1-2-0.dll [Info: 2024-03-27 11:57:15.8835864: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-sysinfo-l1-1-0.dll, internal: /:\...\api-ms-win-core-sysinfo-l1-1-0.dll [Info: 2024-03-27 11:57:15.8837025: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-timezone-l1-1-0.dll, internal: /:\...\api-ms-win-core-timezone-l1-1-0.dll [Info: 2024-03-27 11:57:15.8842448: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-util-l1-1-0.dll, internal: /:\...\api-ms-win-core-util-l1-1-0.dll [Info: 2024-03-27 11:57:15.8844930: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-conio-l1-1-0.dll, internal: /:\...\api-ms-win-crt-conio-l1-1-0.dll [Info: 2024-03-27 11:57:15.8847709: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-convert-l1-1-0.dll, internal: /:\...\api-ms-win-crt-convert-l1-1-0.dll [Info: 2024-03-27 11:57:15.8849126: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-environment-l1-1-0.dll, internal: /:\...\api-ms-win-crt-environment-l1-1-0.dll [Info: 2024-03-27 11:57:15.8854879: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-filesystem-l1-1-0.dll, internal: /:\...\api-ms-win-crt-filesystem-l1-1-0.dll [Info: 2024-03-27 11:57:15.8858286: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-heap-l1-1-0.dll, internal: /:\...\api-ms-win-crt-heap-l1-1-0.dll [Info: 2024-03-27 11:57:15.8860591: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-locale-l1-1-0.dll, internal: /:\...\api-ms-win-crt-locale-l1-1-0.dll [Info: 2024-03-27 11:57:15.8866045: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-math-l1-1-0.dll, internal: /:\...\api-ms-win-crt-math-l1-1-0.dll [Info: 2024-03-27 11:57:15.8869144: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-multibyte-l1-1-0.dll, internal: /:\...\api-ms-win-crt-multibyte-l1-1-0.dll [Info: 2024-03-27 11:57:15.8872634: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-private-l1-1-0.dll, internal: /:\...\api-ms-win-crt-private-l1-1-0.dll [Info: 2024-03-27 11:57:15.8874077: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-process-l1-1-0.dll, internal: /:\...\api-ms-win-crt-process-l1-1-0.dll [Info: 2024-03-27 11:57:15.8875233: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-runtime-l1-1-0.dll, internal: /:\...\api-ms-win-crt-runtime-l1-1-0.dll [Info: 2024-03-27 11:57:15.8879095: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-stdio-l1-1-0.dll, internal: /:\...\api-ms-win-crt-stdio-l1-1-0.dll [Info: 2024-03-27 11:57:15.8883346: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-string-l1-1-0.dll, internal: /:\...\api-ms-win-crt-string-l1-1-0.dll [Info: 2024-03-27 11:57:15.8888753: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-time-l1-1-0.dll, internal: /:\...\api-ms-win-crt-time-l1-1-0.dll [Info: 2024-03-27 11:57:15.8889789: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-utility-l1-1-0.dll, internal: /:\...\api-ms-win-crt-utility-l1-1-0.dll [Info: 2024-03-27 11:57:15.8893443: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\attach.dll, internal: /:\...\attach.dll [Info: 2024-03-27 11:57:15.8898369: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\awt.dll, internal: /:\...\awt.dll [Info: 2024-03-27 11:57:15.8902900: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\dt_shmem.dll, internal: /:\...\dt_shmem.dll [Info: 2024-03-27 11:57:15.8903672: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\dt_socket.dll, internal: /:\...\dt_socket.dll [Info: 2024-03-27 11:57:15.8907239: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\fontmanager.dll, internal: /:\...\fontmanager.dll [Info: 2024-03-27 11:57:15.8908050: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\freetype.dll, internal: /:\...\freetype.dll [Info: 2024-03-27 11:57:15.8912385: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\instrument.dll, internal: /:\...\instrument.dll [Info: 2024-03-27 11:57:15.8923169: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\j2gss.dll, internal: /:\...\j2gss.dll [Info: 2024-03-27 11:57:15.8935329: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\j2pcsc.dll, internal: /:\...\j2pcsc.dll [Info: 2024-03-27 11:57:15.8936217: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\j2pkcs11.dll, internal: /:\...\j2pkcs11.dll [Info: 2024-03-27 11:57:15.8937290: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jaas.dll, internal: /:\...\jaas.dll [Info: 2024-03-27 11:57:15.8949866: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jabswitch.exe, internal: /:\...\jabswitch.exe [Info: 2024-03-27 11:57:15.8974768: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jaccessinspector.exe, internal: /:\...\jaccessinspector.exe [Info: 2024-03-27 11:57:15.8976419: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jaccesswalker.exe, internal: /:\...\jaccesswalker.exe [Info: 2024-03-27 11:57:15.8999863: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jar.exe, internal: /:\...\jar.exe [Info: 2024-03-27 11:57:15.9016460: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jarsigner.exe, internal: /:\...\jarsigner.exe [Info: 2024-03-27 11:57:15.9017578: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\java.dll, internal: /:\...\java.dll [Info: 2024-03-27 11:57:15.9018399: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\java.exe, internal: /:\...\java.exe [Info: 2024-03-27 11:57:15.9028087: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\javaaccessbridge.dll, internal: /:\...\javaaccessbridge.dll [Info: 2024-03-27 11:57:15.9043117: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\javac.exe, internal: /:\...\javac.exe [Info: 2024-03-27 11:57:15.9043955: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\javadoc.exe, internal: /:\...\javadoc.exe [Info: 2024-03-27 11:57:15.9054213: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\javajpeg.dll, internal: /:\...\javajpeg.dll [Info: 2024-03-27 11:57:15.9055011: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\javap.exe, internal: /:\...\javap.exe [Info: 2024-03-27 11:57:15.9056071: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\javaw.exe, internal: /:\...\javaw.exe [Info: 2024-03-27 11:57:15.9068694: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jawt.dll, internal: /:\...\jawt.dll [Info: 2024-03-27 11:57:15.9078742: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jcmd.exe, internal: /:\...\jcmd.exe [Info: 2024-03-27 11:57:15.9079569: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jconsole.exe, internal: /:\...\jconsole.exe [Info: 2024-03-27 11:57:15.9080366: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jdb.exe, internal: /:\...\jdb.exe [Info: 2024-03-27 11:57:15.9081370: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jdeprscan.exe, internal: /:\...\jdeprscan.exe [Info: 2024-03-27 11:57:15.9085846: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jdeps.exe, internal: /:\...\jdeps.exe [Info: 2024-03-27 11:57:15.9086906: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jdwp.dll, internal: /:\...\jdwp.dll [Info: 2024-03-27 11:57:15.9096644: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jfr.exe, internal: /:\...\jfr.exe [Info: 2024-03-27 11:57:15.9098177: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jhsdb.exe, internal: /:\...\jhsdb.exe [Info: 2024-03-27 11:57:15.9101216: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jimage.dll, internal: /:\...\jimage.dll [Info: 2024-03-27 11:57:15.9102300: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jimage.exe, internal: /:\...\jimage.exe [Info: 2024-03-27 11:57:15.9106918: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jinfo.exe, internal: /:\...\jinfo.exe [Info: 2024-03-27 11:57:15.9110968: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jli.dll, internal: /:\...\jli.dll [Info: 2024-03-27 11:57:15.9114523: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jlink.exe, internal: /:\...\jlink.exe [Info: 2024-03-27 11:57:15.9115524: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jmap.exe, internal: /:\...\jmap.exe [Info: 2024-03-27 11:57:15.9120280: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jmod.exe, internal: /:\...\jmod.exe [Info: 2024-03-27 11:57:15.9121494: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jpackage.dll, internal: /:\...\jpackage.dll [Info: 2024-03-27 11:57:15.9122736: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jpackage.exe, internal: /:\...\jpackage.exe [Info: 2024-03-27 11:57:15.9128626: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jps.exe, internal: /:\...\jps.exe [Info: 2024-03-27 11:57:15.9129877: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jrunscript.exe, internal: /:\...\jrunscript.exe [Info: 2024-03-27 11:57:15.9137712: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jshell.exe, internal: /:\...\jshell.exe [Info: 2024-03-27 11:57:15.9138853: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jsound.dll, internal: /:\...\jsound.dll [Info: 2024-03-27 11:57:15.9142092: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jstack.exe, internal: /:\...\jstack.exe [Info: 2024-03-27 11:57:15.9143277: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jstat.exe, internal: /:\...\jstat.exe [Info: 2024-03-27 11:57:15.9144383: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jstatd.exe, internal: /:\...\jstatd.exe [Info: 2024-03-27 11:57:15.9149390: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jsvml.dll, internal: /:\...\jsvml.dll [Info: 2024-03-27 11:57:15.9151728: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\keytool.exe, internal: /:\...\keytool.exe [Info: 2024-03-27 11:57:15.9152944: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\kinit.exe, internal: /:\...\kinit.exe [Info: 2024-03-27 11:57:15.9153992: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\klist.exe, internal: /:\...\klist.exe [Info: 2024-03-27 11:57:15.9154835: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ktab.exe, internal: /:\...\ktab.exe [Info: 2024-03-27 11:57:15.9155910: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\lcms.dll, internal: /:\...\lcms.dll [Info: 2024-03-27 11:57:15.9160556: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\le.dll, internal: /:\...\le.dll [Info: 2024-03-27 11:57:15.9161583: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\management.dll, internal: /:\...\management.dll [Info: 2024-03-27 11:57:15.9167249: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\management_agent.dll, internal: /:\...\management_agent.dll [Info: 2024-03-27 11:57:15.9172086: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\management_ext.dll, internal: /:\...\management_ext.dll [Info: 2024-03-27 11:57:15.9182680: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\mlib_image.dll, internal: /:\...\mlib_image.dll [Info: 2024-03-27 11:57:15.9184166: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\msvcp140.dll, internal: /:\...\msvcp140.dll [Info: 2024-03-27 11:57:15.9196413: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\net.dll, internal: /:\...\net.dll [Info: 2024-03-27 11:57:15.9197422: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\nio.dll, internal: /:\...\nio.dll [Info: 2024-03-27 11:57:15.9198675: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\prefs.dll, internal: /:\...\prefs.dll [Info: 2024-03-27 11:57:15.9199745: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\rmi.dll, internal: /:\...\rmi.dll [Info: 2024-03-27 11:57:15.9213972: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\rmiregistry.exe, internal: /:\...\rmiregistry.exe [Info: 2024-03-27 11:57:15.9226347: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\saproc.dll, internal: /:\...\saproc.dll [Info: 2024-03-27 11:57:15.9227168: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\serialver.exe, internal: /:\...\serialver.exe [Info: 2024-03-27 11:57:15.9257805: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jvm.dll, internal: /:\...\jvm.dll [Info: 2024-03-27 11:57:15.9259255: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\splashscreen.dll, internal: /:\...\splashscreen.dll [Info: 2024-03-27 11:57:15.9260383: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\sspi_bridge.dll, internal: /:\...\sspi_bridge.dll [Info: 2024-03-27 11:57:15.9268528: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\sunmscapi.dll, internal: /:\...\sunmscapi.dll [Info: 2024-03-27 11:57:15.9269425: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ucrtbase.dll, internal: /:\...\ucrtbase.dll [Info: 2024-03-27 11:57:15.9270456: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\vcruntime140.dll, internal: /:\...\vcruntime140.dll [Info: 2024-03-27 11:57:15.9271786: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\vcruntime140_1.dll, internal: /:\...\vcruntime140_1.dll [Info: 2024-03-27 11:57:15.9273256: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\verify.dll, internal: /:\...\verify.dll [Info: 2024-03-27 11:57:15.9274334: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\w2k_lsa_auth.dll, internal: /:\...\w2k_lsa_auth.dll [Info: 2024-03-27 11:57:15.9278547: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\WinFallbackLookup.dll, internal: /:\...\WinFallbackLookup.dll [Info: 2024-03-27 11:57:15.9286125: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\windowsaccessbridge-64.dll, internal: /:\...\windowsaccessbridge-64.dll [Info: 2024-03-27 11:57:15.9289487: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\zip.dll, internal: /:\...\zip.dll [Info: 2024-03-27 11:57:15.9291466: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\logging.properties, internal: /:\...\logging.properties [Info: 2024-03-27 11:57:15.9294477: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jmxremote.access, internal: /:\...\jmxremote.access [Info: 2024-03-27 11:57:15.9295541: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jmxremote.password.template, internal: /:\...\jmxremote.password.template [Info: 2024-03-27 11:57:15.9309075: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\management.properties, internal: /:\...\management.properties [Info: 2024-03-27 11:57:15.9310140: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\net.properties, internal: /:\...\net.properties [Info: 2024-03-27 11:57:15.9321918: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\java.policy, internal: /:\...\java.policy [Info: 2024-03-27 11:57:15.9322713: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\java.security, internal: /:\...\java.security [Info: 2024-03-27 11:57:15.9332318: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\default_local.policy, internal: /:\...\default_local.policy [Info: 2024-03-27 11:57:15.9333231: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\default_US_export.policy, internal: /:\...\default_US_export.policy [Info: 2024-03-27 11:57:15.9334484: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\exempt_local.policy, internal: /:\...\exempt_local.policy [Info: 2024-03-27 11:57:15.9335622: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\README.txt, internal: /:\...\README.txt [Info: 2024-03-27 11:57:15.9346007: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\default_local.policy, internal: /:\...\default_local.policy [Info: 2024-03-27 11:57:15.9346911: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\default_US_export.policy, internal: /:\...\default_US_export.policy [Info: 2024-03-27 11:57:15.9348670: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\sound.properties, internal: /:\...\sound.properties [Info: 2024-03-27 11:57:15.9395339: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9401176: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\aes.md, internal: /:\...\aes.md [Info: 2024-03-27 11:57:15.9407014: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\asm.md, internal: /:\...\asm.md [Info: 2024-03-27 11:57:15.9418915: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9427918: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\c-libutl.md, internal: /:\...\c-libutl.md [Info: 2024-03-27 11:57:15.9434454: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\cldr.md, internal: /:\...\cldr.md [Info: 2024-03-27 11:57:15.9442528: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\icu.md, internal: /:\...\icu.md [Info: 2024-03-27 11:57:15.9443723: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9444951: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\public_suffix.md, internal: /:\...\public_suffix.md [Info: 2024-03-27 11:57:15.9453062: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\unicode.md, internal: /:\...\unicode.md [Info: 2024-03-27 11:57:15.9458735: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\wepoll.md, internal: /:\...\wepoll.md [Info: 2024-03-27 11:57:15.9459994: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\zlib.md, internal: /:\...\zlib.md [Info: 2024-03-27 11:57:15.9463019: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9464293: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9465544: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9475290: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9476839: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9478024: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9498165: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9499650: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9505718: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\colorimaging.md, internal: /:\...\colorimaging.md [Info: 2024-03-27 11:57:15.9507415: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\freetype.md, internal: /:\...\freetype.md [Info: 2024-03-27 11:57:15.9512505: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\giflib.md, internal: /:\...\giflib.md [Info: 2024-03-27 11:57:15.9513747: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\harfbuzz.md, internal: /:\...\harfbuzz.md [Info: 2024-03-27 11:57:15.9519002: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jpeg.md, internal: /:\...\jpeg.md [Info: 2024-03-27 11:57:15.9527009: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\lcms.md, internal: /:\...\lcms.md [Info: 2024-03-27 11:57:15.9528074: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\libpng.md, internal: /:\...\libpng.md [Info: 2024-03-27 11:57:15.9535022: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9536146: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\mesa3d.md, internal: /:\...\mesa3d.md [Info: 2024-03-27 11:57:15.9543057: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9544285: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9545424: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9547913: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9549138: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9550124: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9553232: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9554486: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9555666: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9561249: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9562464: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9563668: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9567138: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9568538: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9569972: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9572693: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9576405: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9577700: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9580679: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9581813: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9585335: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9605702: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9606914: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9607991: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9610318: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9611424: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9612404: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9616799: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9617711: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9623247: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9625412: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9626774: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9628218: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9644665: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9645961: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9647150: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9649654: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9651360: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9653578: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9661160: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9662500: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9663688: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9666628: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9677222: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9684119: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9692476: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9693926: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9695291: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9719972: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9721297: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9722510: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\bcel.md, internal: /:\...\bcel.md [Info: 2024-03-27 11:57:15.9731607: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\dom.md, internal: /:\...\dom.md [Info: 2024-03-27 11:57:15.9738967: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jcup.md, internal: /:\...\jcup.md [Info: 2024-03-27 11:57:15.9740253: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9751702: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\xalan.md, internal: /:\...\xalan.md [Info: 2024-03-27 11:57:15.9753291: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\xerces.md, internal: /:\...\xerces.md [Info: 2024-03-27 11:57:15.9756071: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9763537: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9764512: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9765916: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\santuario.md, internal: /:\...\santuario.md [Info: 2024-03-27 11:57:15.9777094: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9778443: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9779559: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9787597: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9788496: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9789639: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9799371: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9800494: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9801577: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9804079: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9805216: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9806193: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9808709: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9809843: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9811124: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9812155: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\pkcs11cryptotoken.md, internal: /:\...\pkcs11cryptotoken.md [Info: 2024-03-27 11:57:15.9813311: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\pkcs11wrapper.md, internal: /:\...\pkcs11wrapper.md [Info: 2024-03-27 11:57:15.9826307: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9827372: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9829016: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9832150: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9833304: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9838499: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9840728: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9841705: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9842806: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\dynalink.md, internal: /:\...\dynalink.md [Info: 2024-03-27 11:57:15.9844072: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9846413: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9847704: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9848660: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9865136: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9867436: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9869081: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9873076: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9878370: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9879554: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9883340: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9884606: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9891362: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9895070: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9896757: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9904191: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9914281: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9917558: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9918887: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9921746: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9922844: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9930794: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9934162: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9935491: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9939609: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jline.md, internal: /:\...\jline.md [Info: 2024-03-27 11:57:15.9941083: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9943731: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9944968: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9952179: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jopt-simple.md, internal: /:\...\jopt-simple.md [Info: 2024-03-27 11:57:15.9953632: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9961244: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9962692: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9969924: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9973341: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9974861: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9976356: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9982814: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9984154: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9985323: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:15.9988076: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:15.9994907: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:15.9995962: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0004272: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0005185: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0009532: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jquery.md, internal: /:\...\jquery.md [Info: 2024-03-27 11:57:16.0010806: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jqueryUI.md, internal: /:\...\jqueryUI.md [Info: 2024-03-27 11:57:16.0012078: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0013692: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0020180: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0020504: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0020354: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.gameVersions"); [Info: 2024-03-27 11:57:16.0023264: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0026979: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0028084: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0030339: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0031228: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0034143: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0042393: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0043188: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0044243: ControllerInterface.cpp(106)] Running method getDynamicResourceEnvironment [Info: 2024-03-27 11:57:16.0049073: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0056584: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0058192: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0061723: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0067266: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0068633: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0069962: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0074780: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0078362: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0081801: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0089222: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0090475: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0091868: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0096982: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0098202: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0099354: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0102216: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0105524: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0106646: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0111697: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0112583: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0116715: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0121044: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0123934: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0126744: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\cldr.md, internal: /:\...\cldr.md [Info: 2024-03-27 11:57:16.0127970: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0130662: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\thaidict.md, internal: /:\...\thaidict.md [Info: 2024-03-27 11:57:16.0136798: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0141629: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0145245: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0150253: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0153458: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0156580: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0159362: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0160560: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0163400: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0168862: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0171396: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0173378: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0177776: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0180384: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0183174: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0187337: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0189302: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0192649: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0197273: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0200089: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0201010: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0206676: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0207601: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0208875: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0212840: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0213821: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0216413: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0218548: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0219413: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0220323: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0224120: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0225011: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0225824: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0231084: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0231863: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0234503: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0236472: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0237312: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0238137: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0241637: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0242674: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0243563: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0245567: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:16.0246428: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:16.0247435: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:16.0254429: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\classlist, internal: /:\...\classlist [Info: 2024-03-27 11:57:16.0256876: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ct.sym, internal: /:\...\ct.sym [Info: 2024-03-27 11:57:16.0257699: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\fontconfig.bfc, internal: /:\...\fontconfig.bfc [Info: 2024-03-27 11:57:16.0258633: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\fontconfig.properties.src, internal: /:\...\fontconfig.properties.src [Info: 2024-03-27 11:57:16.0259920: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jawt.lib, internal: /:\...\jawt.lib [Info: 2024-03-27 11:57:16.0267283: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\default.jfc, internal: /:\...\default.jfc [Info: 2024-03-27 11:57:16.0272122: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\profile.jfc, internal: /:\...\profile.jfc [Info: 2024-03-27 11:57:16.0276075: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jrt-fs.jar, internal: /:\...\jrt-fs.jar [Info: 2024-03-27 11:57:16.0289338: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jvm.cfg, internal: /:\...\jvm.cfg [Info: 2024-03-27 11:57:16.0297300: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jvm.lib, internal: /:\...\jvm.lib [Info: 2024-03-27 11:57:16.0304182: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\modules, internal: /:\...\modules [Info: 2024-03-27 11:57:16.0315622: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\psfont.properties.ja, internal: /:\...\psfont.properties.ja [Info: 2024-03-27 11:57:16.0324375: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\psfontj2d.properties, internal: /:\...\psfontj2d.properties [Info: 2024-03-27 11:57:16.0335339: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\blocked.certs, internal: /:\...\blocked.certs [Info: 2024-03-27 11:57:16.0336334: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\cacerts, internal: /:\...\cacerts [Info: 2024-03-27 11:57:16.0337509: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\default.policy, internal: /:\...\default.policy [Info: 2024-03-27 11:57:16.0338423: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\public_suffix_list.dat, internal: /:\...\public_suffix_list.dat [Info: 2024-03-27 11:57:16.0339522: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\tzdb.dat, internal: /:\...\tzdb.dat [Info: 2024-03-27 11:57:16.0347653: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\release, internal: /:\...\release [Info: 2024-03-27 11:57:16.0362234: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\tzmappings, internal: /:\...\tzmappings [Info: 2024-03-27 11:57:16.3557834: PistonInstaller.cpp(288)] Finished using Sha1Cacher from thread 9108 [Info: 2024-03-27 11:57:16.3608305: MinecraftJavaLoggingContext.cpp(65)] Launcher/launcher (main) Info Preparing to launch minecraft client for 1.19.2-forge-43.3.9 [Info: 2024-03-27 11:57:16.3608950: MinecraftJavaLoggingContext.cpp(65)] Launcher/launcher (main) Debug Created game directory <WORKDIR>\.minecraft [Info: 2024-03-27 11:57:16.3642146: MinecraftJavaLoggingContext.cpp(65)] Launcher/launcher (main) Debug Prepared asset index [Info: 2024-03-27 11:57:16.3741478: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.gameInstances"); [Info: 2024-03-27 11:57:16.3858580: MinecraftJavaLoggingContext.cpp(65)] Launcher/launcher (main) Debug Have 3456 total files to check or download [Info: 2024-03-27 11:57:16.3861511: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.downloads"); [Info: 2024-03-27 11:57:16.3944201: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.gameInstances"); [Info: 2024-03-27 11:57:16.3947594: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.downloads"); [Info: 2024-03-27 11:57:16.6099190: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.downloads"); [Info: 2024-03-27 11:57:16.8102501: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.downloads"); [Info: 2024-03-27 11:57:17.0183923: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.downloads"); [Info: 2024-03-27 11:57:17.2298579: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.downloads"); [Info: 2024-03-27 11:57:17.3579253: ControllerInterface.cpp(106)] Running method setStore [Info: 2024-03-27 11:57:17.4372058: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.downloads"); [Info: 2024-03-27 11:57:17.6433881: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.downloads"); [Info: 2024-03-27 11:57:17.8613679: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.downloads"); [Info: 2024-03-27 11:57:19.1389883: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.downloads"); [Info: 2024-03-27 11:57:19.1396544: MinecraftJavaLoggingContext.cpp(65)] Launcher/launcher (main) Info Starting! [Info: 2024-03-27 11:57:19.1397602: MinecraftJavaLoggingContext.cpp(65)] Launcher/launcher (main) Info Minecraft client 1.19.2-forge-43.3.9 is ready to start. [Info: 2024-03-27 11:57:19.1397953: MinecraftJavaLoggingContext.cpp(65)] Launcher/launcher (main) Debug Nothing to download! [Info: 2024-03-27 11:57:19.1398117: MinecraftJavaLoggingContext.cpp(65)] Launcher/launcher (main) Debug Downloading Java Runtime java-runtime-gamma:17.0.8 [Info: 2024-03-27 11:57:19.1409415: PistonInstaller.cpp(343)] Inspecting files in C:\...\java-runtime-gamma [Info: 2024-03-27 11:57:19.1431086: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-console-l1-1-0.dll, internal: /:\...\api-ms-win-core-console-l1-1-0.dll [Info: 2024-03-27 11:57:19.1432085: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-console-l1-2-0.dll, internal: /:\...\api-ms-win-core-console-l1-2-0.dll [Info: 2024-03-27 11:57:19.1433045: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-datetime-l1-1-0.dll, internal: /:\...\api-ms-win-core-datetime-l1-1-0.dll [Info: 2024-03-27 11:57:19.1433983: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-debug-l1-1-0.dll, internal: /:\...\api-ms-win-core-debug-l1-1-0.dll [Info: 2024-03-27 11:57:19.1434914: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-errorhandling-l1-1-0.dll, internal: /:\...\api-ms-win-core-errorhandling-l1-1-0.dll [Info: 2024-03-27 11:57:19.1435950: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-fibers-l1-1-0.dll, internal: /:\...\api-ms-win-core-fibers-l1-1-0.dll [Info: 2024-03-27 11:57:19.1436880: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-file-l1-1-0.dll, internal: /:\...\api-ms-win-core-file-l1-1-0.dll [Info: 2024-03-27 11:57:19.1437636: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-file-l1-2-0.dll, internal: /:\...\api-ms-win-core-file-l1-2-0.dll [Info: 2024-03-27 11:57:19.1438355: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-file-l2-1-0.dll, internal: /:\...\api-ms-win-core-file-l2-1-0.dll [Info: 2024-03-27 11:57:19.1439297: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-handle-l1-1-0.dll, internal: /:\...\api-ms-win-core-handle-l1-1-0.dll [Info: 2024-03-27 11:57:19.1439915: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-heap-l1-1-0.dll, internal: /:\...\api-ms-win-core-heap-l1-1-0.dll [Info: 2024-03-27 11:57:19.1440788: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-interlocked-l1-1-0.dll, internal: /:\...\api-ms-win-core-interlocked-l1-1-0.dll [Info: 2024-03-27 11:57:19.1442119: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-libraryloader-l1-1-0.dll, internal: /:\...\api-ms-win-core-libraryloader-l1-1-0.dll [Info: 2024-03-27 11:57:19.1443281: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-localization-l1-2-0.dll, internal: /:\...\api-ms-win-core-localization-l1-2-0.dll [Info: 2024-03-27 11:57:19.1444254: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-memory-l1-1-0.dll, internal: /:\...\api-ms-win-core-memory-l1-1-0.dll [Info: 2024-03-27 11:57:19.1445208: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-namedpipe-l1-1-0.dll, internal: /:\...\api-ms-win-core-namedpipe-l1-1-0.dll [Info: 2024-03-27 11:57:19.1446188: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-processenvironment-l1-1-0.dll, internal: /:\...\api-ms-win-core-processenvironment-l1-1-0.dll [Info: 2024-03-27 11:57:19.1447180: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-processthreads-l1-1-0.dll, internal: /:\...\api-ms-win-core-processthreads-l1-1-0.dll [Info: 2024-03-27 11:57:19.1448110: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-processthreads-l1-1-1.dll, internal: /:\...\api-ms-win-core-processthreads-l1-1-1.dll [Info: 2024-03-27 11:57:19.1449050: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-profile-l1-1-0.dll, internal: /:\...\api-ms-win-core-profile-l1-1-0.dll [Info: 2024-03-27 11:57:19.1450041: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-rtlsupport-l1-1-0.dll, internal: /:\...\api-ms-win-core-rtlsupport-l1-1-0.dll [Info: 2024-03-27 11:57:19.1451400: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-string-l1-1-0.dll, internal: /:\...\api-ms-win-core-string-l1-1-0.dll [Info: 2024-03-27 11:57:19.1452409: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-synch-l1-1-0.dll, internal: /:\...\api-ms-win-core-synch-l1-1-0.dll [Info: 2024-03-27 11:57:19.1453362: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-synch-l1-2-0.dll, internal: /:\...\api-ms-win-core-synch-l1-2-0.dll [Info: 2024-03-27 11:57:19.1454308: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-sysinfo-l1-1-0.dll, internal: /:\...\api-ms-win-core-sysinfo-l1-1-0.dll [Info: 2024-03-27 11:57:19.1455283: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-timezone-l1-1-0.dll, internal: /:\...\api-ms-win-core-timezone-l1-1-0.dll [Info: 2024-03-27 11:57:19.1456191: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-core-util-l1-1-0.dll, internal: /:\...\api-ms-win-core-util-l1-1-0.dll [Info: 2024-03-27 11:57:19.1457120: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-conio-l1-1-0.dll, internal: /:\...\api-ms-win-crt-conio-l1-1-0.dll [Info: 2024-03-27 11:57:19.1458075: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-convert-l1-1-0.dll, internal: /:\...\api-ms-win-crt-convert-l1-1-0.dll [Info: 2024-03-27 11:57:19.1459075: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-environment-l1-1-0.dll, internal: /:\...\api-ms-win-crt-environment-l1-1-0.dll [Info: 2024-03-27 11:57:19.1460052: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-filesystem-l1-1-0.dll, internal: /:\...\api-ms-win-crt-filesystem-l1-1-0.dll [Info: 2024-03-27 11:57:19.1461127: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-heap-l1-1-0.dll, internal: /:\...\api-ms-win-crt-heap-l1-1-0.dll [Info: 2024-03-27 11:57:19.1462164: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-locale-l1-1-0.dll, internal: /:\...\api-ms-win-crt-locale-l1-1-0.dll [Info: 2024-03-27 11:57:19.1463161: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-math-l1-1-0.dll, internal: /:\...\api-ms-win-crt-math-l1-1-0.dll [Info: 2024-03-27 11:57:19.1464135: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-multibyte-l1-1-0.dll, internal: /:\...\api-ms-win-crt-multibyte-l1-1-0.dll [Info: 2024-03-27 11:57:19.1465104: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-private-l1-1-0.dll, internal: /:\...\api-ms-win-crt-private-l1-1-0.dll [Info: 2024-03-27 11:57:19.1466011: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-process-l1-1-0.dll, internal: /:\...\api-ms-win-crt-process-l1-1-0.dll [Info: 2024-03-27 11:57:19.1466973: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-runtime-l1-1-0.dll, internal: /:\...\api-ms-win-crt-runtime-l1-1-0.dll [Info: 2024-03-27 11:57:19.1467937: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-stdio-l1-1-0.dll, internal: /:\...\api-ms-win-crt-stdio-l1-1-0.dll [Info: 2024-03-27 11:57:19.1468899: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-string-l1-1-0.dll, internal: /:\...\api-ms-win-crt-string-l1-1-0.dll [Info: 2024-03-27 11:57:19.1469866: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-time-l1-1-0.dll, internal: /:\...\api-ms-win-crt-time-l1-1-0.dll [Info: 2024-03-27 11:57:19.1470818: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\api-ms-win-crt-utility-l1-1-0.dll, internal: /:\...\api-ms-win-crt-utility-l1-1-0.dll [Info: 2024-03-27 11:57:19.1471771: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\attach.dll, internal: /:\...\attach.dll [Info: 2024-03-27 11:57:19.1472709: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\awt.dll, internal: /:\...\awt.dll [Info: 2024-03-27 11:57:19.1473880: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\dt_shmem.dll, internal: /:\...\dt_shmem.dll [Info: 2024-03-27 11:57:19.1474840: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\dt_socket.dll, internal: /:\...\dt_socket.dll [Info: 2024-03-27 11:57:19.1475686: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\fontmanager.dll, internal: /:\...\fontmanager.dll [Info: 2024-03-27 11:57:19.1476532: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\freetype.dll, internal: /:\...\freetype.dll [Info: 2024-03-27 11:57:19.1477394: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\instrument.dll, internal: /:\...\instrument.dll [Info: 2024-03-27 11:57:19.1478271: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\j2gss.dll, internal: /:\...\j2gss.dll [Info: 2024-03-27 11:57:19.1479139: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\j2pcsc.dll, internal: /:\...\j2pcsc.dll [Info: 2024-03-27 11:57:19.1480008: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\j2pkcs11.dll, internal: /:\...\j2pkcs11.dll [Info: 2024-03-27 11:57:19.1480982: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jaas.dll, internal: /:\...\jaas.dll [Info: 2024-03-27 11:57:19.1481956: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jabswitch.exe, internal: /:\...\jabswitch.exe [Info: 2024-03-27 11:57:19.1482909: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jaccessinspector.exe, internal: /:\...\jaccessinspector.exe [Info: 2024-03-27 11:57:19.1483548: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jaccesswalker.exe, internal: /:\...\jaccesswalker.exe [Info: 2024-03-27 11:57:19.1484368: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jar.exe, internal: /:\...\jar.exe [Info: 2024-03-27 11:57:19.1485150: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jarsigner.exe, internal: /:\...\jarsigner.exe [Info: 2024-03-27 11:57:19.1485927: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\java.dll, internal: /:\...\java.dll [Info: 2024-03-27 11:57:19.1486730: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\java.exe, internal: /:\...\java.exe [Info: 2024-03-27 11:57:19.1487318: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\javaaccessbridge.dll, internal: /:\...\javaaccessbridge.dll [Info: 2024-03-27 11:57:19.1487936: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\javac.exe, internal: /:\...\javac.exe [Info: 2024-03-27 11:57:19.1488614: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\javadoc.exe, internal: /:\...\javadoc.exe [Info: 2024-03-27 11:57:19.1489148: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\javajpeg.dll, internal: /:\...\javajpeg.dll [Info: 2024-03-27 11:57:19.1489872: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\javap.exe, internal: /:\...\javap.exe [Info: 2024-03-27 11:57:19.1490596: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\javaw.exe, internal: /:\...\javaw.exe [Info: 2024-03-27 11:57:19.1491319: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jawt.dll, internal: /:\...\jawt.dll [Info: 2024-03-27 11:57:19.1492075: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jcmd.exe, internal: /:\...\jcmd.exe [Info: 2024-03-27 11:57:19.1492633: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jconsole.exe, internal: /:\...\jconsole.exe [Info: 2024-03-27 11:57:19.1493234: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jdb.exe, internal: /:\...\jdb.exe [Info: 2024-03-27 11:57:19.1493823: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jdeprscan.exe, internal: /:\...\jdeprscan.exe [Info: 2024-03-27 11:57:19.1494395: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jdeps.exe, internal: /:\...\jdeps.exe [Info: 2024-03-27 11:57:19.1495382: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jdwp.dll, internal: /:\...\jdwp.dll [Info: 2024-03-27 11:57:19.1496304: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jfr.exe, internal: /:\...\jfr.exe [Info: 2024-03-27 11:57:19.1497045: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jhsdb.exe, internal: /:\...\jhsdb.exe [Info: 2024-03-27 11:57:19.1497800: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jimage.dll, internal: /:\...\jimage.dll [Info: 2024-03-27 11:57:19.1498393: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jimage.exe, internal: /:\...\jimage.exe [Info: 2024-03-27 11:57:19.1498955: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jinfo.exe, internal: /:\...\jinfo.exe [Info: 2024-03-27 11:57:19.1499673: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jli.dll, internal: /:\...\jli.dll [Info: 2024-03-27 11:57:19.1500229: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jlink.exe, internal: /:\...\jlink.exe [Info: 2024-03-27 11:57:19.1500918: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jmap.exe, internal: /:\...\jmap.exe [Info: 2024-03-27 11:57:19.1501616: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jmod.exe, internal: /:\...\jmod.exe [Info: 2024-03-27 11:57:19.1502331: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jpackage.dll, internal: /:\...\jpackage.dll [Info: 2024-03-27 11:57:19.1503093: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jpackage.exe, internal: /:\...\jpackage.exe [Info: 2024-03-27 11:57:19.1503667: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jps.exe, internal: /:\...\jps.exe [Info: 2024-03-27 11:57:19.1504283: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jrunscript.exe, internal: /:\...\jrunscript.exe [Info: 2024-03-27 11:57:19.1503694: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.gameInstances"); [Info: 2024-03-27 11:57:19.1504946: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jshell.exe, internal: /:\...\jshell.exe [Info: 2024-03-27 11:57:19.1505680: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jsound.dll, internal: /:\...\jsound.dll [Info: 2024-03-27 11:57:19.1506565: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jstack.exe, internal: /:\...\jstack.exe [Info: 2024-03-27 11:57:19.1507218: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jstat.exe, internal: /:\...\jstat.exe [Info: 2024-03-27 11:57:19.1507947: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jstatd.exe, internal: /:\...\jstatd.exe [Info: 2024-03-27 11:57:19.1508833: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jsvml.dll, internal: /:\...\jsvml.dll [Info: 2024-03-27 11:57:19.1510241: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\keytool.exe, internal: /:\...\keytool.exe [Info: 2024-03-27 11:57:19.1511223: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\kinit.exe, internal: /:\...\kinit.exe [Info: 2024-03-27 11:57:19.1512039: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\klist.exe, internal: /:\...\klist.exe [Info: 2024-03-27 11:57:19.1512935: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ktab.exe, internal: /:\...\ktab.exe [Info: 2024-03-27 11:57:19.1513686: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\lcms.dll, internal: /:\...\lcms.dll [Info: 2024-03-27 11:57:19.1514393: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\le.dll, internal: /:\...\le.dll [Info: 2024-03-27 11:57:19.1515023: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\management.dll, internal: /:\...\management.dll [Info: 2024-03-27 11:57:19.1515658: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\management_agent.dll, internal: /:\...\management_agent.dll [Info: 2024-03-27 11:57:19.1516258: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\management_ext.dll, internal: /:\...\management_ext.dll [Info: 2024-03-27 11:57:19.1517032: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\mlib_image.dll, internal: /:\...\mlib_image.dll [Info: 2024-03-27 11:57:19.1516434: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.downloads"); [Info: 2024-03-27 11:57:19.1517943: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\msvcp140.dll, internal: /:\...\msvcp140.dll [Info: 2024-03-27 11:57:19.1518504: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\net.dll, internal: /:\...\net.dll [Info: 2024-03-27 11:57:19.1519062: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\nio.dll, internal: /:\...\nio.dll [Info: 2024-03-27 11:57:19.1519618: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\prefs.dll, internal: /:\...\prefs.dll [Info: 2024-03-27 11:57:19.1520219: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\rmi.dll, internal: /:\...\rmi.dll [Info: 2024-03-27 11:57:19.1520797: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\rmiregistry.exe, internal: /:\...\rmiregistry.exe [Info: 2024-03-27 11:57:19.1521566: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\saproc.dll, internal: /:\...\saproc.dll [Info: 2024-03-27 11:57:19.1522150: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\serialver.exe, internal: /:\...\serialver.exe [Info: 2024-03-27 11:57:19.1523503: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jvm.dll, internal: /:\...\jvm.dll [Info: 2024-03-27 11:57:19.1524238: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\splashscreen.dll, internal: /:\...\splashscreen.dll [Info: 2024-03-27 11:57:19.1524829: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\sspi_bridge.dll, internal: /:\...\sspi_bridge.dll [Info: 2024-03-27 11:57:19.1525405: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\sunmscapi.dll, internal: /:\...\sunmscapi.dll [Info: 2024-03-27 11:57:19.1525986: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ucrtbase.dll, internal: /:\...\ucrtbase.dll [Info: 2024-03-27 11:57:19.1526719: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\vcruntime140.dll, internal: /:\...\vcruntime140.dll [Info: 2024-03-27 11:57:19.1527294: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\vcruntime140_1.dll, internal: /:\...\vcruntime140_1.dll [Info: 2024-03-27 11:57:19.1528010: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\verify.dll, internal: /:\...\verify.dll [Info: 2024-03-27 11:57:19.1528603: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\w2k_lsa_auth.dll, internal: /:\...\w2k_lsa_auth.dll [Info: 2024-03-27 11:57:19.1529226: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\windowsaccessbridge-64.dll, internal: /:\...\windowsaccessbridge-64.dll [Info: 2024-03-27 11:57:19.1529845: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\WinFallbackLookup.dll, internal: /:\...\WinFallbackLookup.dll [Info: 2024-03-27 11:57:19.1530423: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\zip.dll, internal: /:\...\zip.dll [Info: 2024-03-27 11:57:19.1531807: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\logging.properties, internal: /:\...\logging.properties [Info: 2024-03-27 11:57:19.1533124: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jmxremote.access, internal: /:\...\jmxremote.access [Info: 2024-03-27 11:57:19.1533796: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jmxremote.password.template, internal: /:\...\jmxremote.password.template [Info: 2024-03-27 11:57:19.1534427: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\management.properties, internal: /:\...\management.properties [Info: 2024-03-27 11:57:19.1535107: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\net.properties, internal: /:\...\net.properties [Info: 2024-03-27 11:57:19.1536264: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\java.policy, internal: /:\...\java.policy [Info: 2024-03-27 11:57:19.1536845: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\java.security, internal: /:\...\java.security [Info: 2024-03-27 11:57:19.1538678: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\default_local.policy, internal: /:\...\default_local.policy [Info: 2024-03-27 11:57:19.1539341: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\default_US_export.policy, internal: /:\...\default_US_export.policy [Info: 2024-03-27 11:57:19.1539957: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\exempt_local.policy, internal: /:\...\exempt_local.policy [Info: 2024-03-27 11:57:19.1540632: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\README.txt, internal: /:\...\README.txt [Info: 2024-03-27 11:57:19.1541869: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\default_local.policy, internal: /:\...\default_local.policy [Info: 2024-03-27 11:57:19.1542792: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\default_US_export.policy, internal: /:\...\default_US_export.policy [Info: 2024-03-27 11:57:19.1544505: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\sound.properties, internal: /:\...\sound.properties [Info: 2024-03-27 11:57:19.1546477: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1547123: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\aes.md, internal: /:\...\aes.md [Info: 2024-03-27 11:57:19.1547882: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\asm.md, internal: /:\...\asm.md [Info: 2024-03-27 11:57:19.1548491: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1549106: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\c-libutl.md, internal: /:\...\c-libutl.md [Info: 2024-03-27 11:57:19.1549709: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\cldr.md, internal: /:\...\cldr.md [Info: 2024-03-27 11:57:19.1550338: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\icu.md, internal: /:\...\icu.md [Info: 2024-03-27 11:57:19.1550933: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1551540: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\public_suffix.md, internal: /:\...\public_suffix.md [Info: 2024-03-27 11:57:19.1552080: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\unicode.md, internal: /:\...\unicode.md [Info: 2024-03-27 11:57:19.1552712: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\wepoll.md, internal: /:\...\wepoll.md [Info: 2024-03-27 11:57:19.1553303: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\zlib.md, internal: /:\...\zlib.md [Info: 2024-03-27 11:57:19.1554887: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1555538: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1556156: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1557996: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1558856: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1559687: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1561142: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1561749: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1562614: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\colorimaging.md, internal: /:\...\colorimaging.md [Info: 2024-03-27 11:57:19.1563269: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\freetype.md, internal: /:\...\freetype.md [Info: 2024-03-27 11:57:19.1563903: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\giflib.md, internal: /:\...\giflib.md [Info: 2024-03-27 11:57:19.1564547: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\harfbuzz.md, internal: /:\...\harfbuzz.md [Info: 2024-03-27 11:57:19.1565135: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jpeg.md, internal: /:\...\jpeg.md [Info: 2024-03-27 11:57:19.1565895: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\lcms.md, internal: /:\...\lcms.md [Info: 2024-03-27 11:57:19.1566520: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\libpng.md, internal: /:\...\libpng.md [Info: 2024-03-27 11:57:19.1567174: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1567797: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\mesa3d.md, internal: /:\...\mesa3d.md [Info: 2024-03-27 11:57:19.1569334: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1569967: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1570825: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1572298: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1572926: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1573526: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1574868: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1575514: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1576136: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1577852: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1578880: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1579844: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1581680: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1582669: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1583485: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1585322: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1586162: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1587002: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1588568: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1589854: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1590743: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1592730: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1593731: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1594632: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1596547: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1597439: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1598051: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1599630: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1600263: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1600885: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1602582: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1603200: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1603805: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1605119: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1605742: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1606356: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1607705: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1608486: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1609321: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1610773: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1611578: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1612217: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1613684: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1614314: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1614904: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1616217: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1616838: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1617496: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1618827: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1619751: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1620433: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\bcel.md, internal: /:\...\bcel.md [Info: 2024-03-27 11:57:19.1621050: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\dom.md, internal: /:\...\dom.md [Info: 2024-03-27 11:57:19.1621655: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jcup.md, internal: /:\...\jcup.md [Info: 2024-03-27 11:57:19.1622264: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1622900: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\xalan.md, internal: /:\...\xalan.md [Info: 2024-03-27 11:57:19.1623620: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\xerces.md, internal: /:\...\xerces.md [Info: 2024-03-27 11:57:19.1624989: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1625645: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1626253: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1626884: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\santuario.md, internal: /:\...\santuario.md [Info: 2024-03-27 11:57:19.1628290: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1629093: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1629692: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1631154: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1631761: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1632405: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1633802: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1634417: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1634994: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1636215: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1637128: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1637808: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1639368: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1639997: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1640593: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1641207: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\pkcs11cryptotoken.md, internal: /:\...\pkcs11cryptotoken.md [Info: 2024-03-27 11:57:19.1642003: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\pkcs11wrapper.md, internal: /:\...\pkcs11wrapper.md [Info: 2024-03-27 11:57:19.1643450: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1644105: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1644758: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1646153: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1646792: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1647427: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1648747: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1649365: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1649975: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\dynalink.md, internal: /:\...\dynalink.md [Info: 2024-03-27 11:57:19.1650726: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1652156: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1652823: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1653429: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1654832: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1655423: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1656058: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1657357: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1658173: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1658822: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1660213: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1660903: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1661503: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1662806: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1663369: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1664147: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1665400: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1666028: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1666645: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1668422: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1669312: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1670396: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1672100: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1672853: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1673540: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jline.md, internal: /:\...\jline.md [Info: 2024-03-27 11:57:19.1674354: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1675694: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1676409: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1677035: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jopt-simple.md, internal: /:\...\jopt-simple.md [Info: 2024-03-27 11:57:19.1677669: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1679034: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1679929: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1680575: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1682213: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1682855: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1683515: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1685025: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1685650: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1686245: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1687521: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1688122: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1688745: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1690038: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1690649: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1691294: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jquery.md, internal: /:\...\jquery.md [Info: 2024-03-27 11:57:19.1691930: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jqueryUI.md, internal: /:\...\jqueryUI.md [Info: 2024-03-27 11:57:19.1692571: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1693934: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1694580: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1695163: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1696394: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1696978: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1697544: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1699022: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1699678: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1700294: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1701819: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1702460: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1703066: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1704431: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1705194: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1705948: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1707233: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1707863: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1708449: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1709763: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1710561: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1711173: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1712507: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1713146: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1713920: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1715798: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1716408: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1717176: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1718490: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1719173: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1719837: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1721187: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1721769: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1722392: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1723739: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1724331: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1724928: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\cldr.md, internal: /:\...\cldr.md [Info: 2024-03-27 11:57:19.1725504: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1726087: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\thaidict.md, internal: /:\...\thaidict.md [Info: 2024-03-27 11:57:19.1727345: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1727970: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1728550: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1729834: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1730753: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1731451: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1733001: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1733785: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1734454: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1735850: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1736497: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1737128: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1738440: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1739020: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1739616: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1741086: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1741733: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1742368: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1744039: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1744852: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1745934: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1748410: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1751173: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1751562: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1752558: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1753272: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1754386: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1756349: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1757213: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1758063: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1759794: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1760598: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1761415: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1763037: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1763630: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1764421: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1765827: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1766631: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1767419: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1769046: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1769861: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1770659: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1772156: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ADDITIONAL_LICENSE_INFO, internal: /:\...\ADDITIONAL_LICENSE_INFO [Info: 2024-03-27 11:57:19.1772926: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ASSEMBLY_EXCEPTION, internal: /:\...\ASSEMBLY_EXCEPTION [Info: 2024-03-27 11:57:19.1774090: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\LICENSE, internal: /:\...\LICENSE [Info: 2024-03-27 11:57:19.1776401: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\classlist, internal: /:\...\classlist [Info: 2024-03-27 11:57:19.1777227: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\ct.sym, internal: /:\...\ct.sym [Info: 2024-03-27 11:57:19.1778058: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\fontconfig.bfc, internal: /:\...\fontconfig.bfc [Info: 2024-03-27 11:57:19.1778985: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\fontconfig.properties.src, internal: /:\...\fontconfig.properties.src [Info: 2024-03-27 11:57:19.1779877: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jawt.lib, internal: /:\...\jawt.lib [Info: 2024-03-27 11:57:19.1781581: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\default.jfc, internal: /:\...\default.jfc [Info: 2024-03-27 11:57:19.1782385: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\profile.jfc, internal: /:\...\profile.jfc [Info: 2024-03-27 11:57:19.1783077: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jrt-fs.jar, internal: /:\...\jrt-fs.jar [Info: 2024-03-27 11:57:19.1783652: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jvm.cfg, internal: /:\...\jvm.cfg [Info: 2024-03-27 11:57:19.1784209: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\jvm.lib, internal: /:\...\jvm.lib [Info: 2024-03-27 11:57:19.1784762: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\modules, internal: /:\...\modules [Info: 2024-03-27 11:57:19.1785367: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\psfont.properties.ja, internal: /:\...\psfont.properties.ja [Info: 2024-03-27 11:57:19.1785971: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\psfontj2d.properties, internal: /:\...\psfontj2d.properties [Info: 2024-03-27 11:57:19.1787216: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\blocked.certs, internal: /:\...\blocked.certs [Info: 2024-03-27 11:57:19.1787815: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\cacerts, internal: /:\...\cacerts [Info: 2024-03-27 11:57:19.1788440: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\default.policy, internal: /:\...\default.policy [Info: 2024-03-27 11:57:19.1789082: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\public_suffix_list.dat, internal: /:\...\public_suffix_list.dat [Info: 2024-03-27 11:57:19.1789812: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\tzdb.dat, internal: /:\...\tzdb.dat [Info: 2024-03-27 11:57:19.1790402: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\tzmappings, internal: /:\...\tzmappings [Info: 2024-03-27 11:57:19.1791105: Sha1Cacher.cpp(125)] SHA1 cacher get C:\...\release, internal: /:\...\release [Info: 2024-03-27 11:57:19.1848847: PistonInstaller.cpp(533)] Using Sha1Cacher from thread 10872 [Info: 2024-03-27 11:57:19.1860860: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\WinFallbackLookup.dll, internal: /:\...\WinFallbackLookup.dll, hash: [Info: 2024-03-27 11:57:19.1861137: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-datetime-l1-1-0.dll, internal: /:\...\api-ms-win-core-datetime-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1861421: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-fibers-l1-1-0.dll, internal: /:\...\api-ms-win-core-fibers-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1860937: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-console-l1-1-0.dll, internal: /:\...\api-ms-win-core-console-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1861317: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-debug-l1-1-0.dll, internal: /:\...\api-ms-win-core-debug-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1861694: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-file-l1-1-0.dll, internal: /:\...\api-ms-win-core-file-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1862172: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-handle-l1-1-0.dll, internal: /:\...\api-ms-win-core-handle-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1861362: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-errorhandling-l1-1-0.dll, internal: /:\...\api-ms-win-core-errorhandling-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1861840: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-file-l1-2-0.dll, internal: /:\...\api-ms-win-core-file-l1-2-0.dll, hash: [Info: 2024-03-27 11:57:19.1862487: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-memory-l1-1-0.dll, internal: /:\...\api-ms-win-core-memory-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1862235: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-heap-l1-1-0.dll, internal: /:\...\api-ms-win-core-heap-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1862507: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-namedpipe-l1-1-0.dll, internal: /:\...\api-ms-win-core-namedpipe-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1862553: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-processenvironment-l1-1-0.dll, internal: /:\...\api-ms-win-core-processenvironment-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1863147: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-processthreads-l1-1-1.dll, internal: /:\...\api-ms-win-core-processthreads-l1-1-1.dll, hash: [Info: 2024-03-27 11:57:19.1863211: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-rtlsupport-l1-1-0.dll, internal: /:\...\api-ms-win-core-rtlsupport-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1863228: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-synch-l1-2-0.dll, internal: /:\...\api-ms-win-core-synch-l1-2-0.dll, hash: [Info: 2024-03-27 11:57:19.1863493: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-util-l1-1-0.dll, internal: /:\...\api-ms-win-core-util-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1863480: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-convert-l1-1-0.dll, internal: /:\...\api-ms-win-crt-convert-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1863419: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-conio-l1-1-0.dll, internal: /:\...\api-ms-win-crt-conio-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1863775: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-filesystem-l1-1-0.dll, internal: /:\...\api-ms-win-crt-filesystem-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1863858: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-heap-l1-1-0.dll, internal: /:\...\api-ms-win-crt-heap-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1863882: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-environment-l1-1-0.dll, internal: /:\...\api-ms-win-crt-environment-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1864064: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-multibyte-l1-1-0.dll, internal: /:\...\api-ms-win-crt-multibyte-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1864167: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-private-l1-1-0.dll, internal: /:\...\api-ms-win-crt-private-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1864205: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-math-l1-1-0.dll, internal: /:\...\api-ms-win-crt-math-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1864324: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-runtime-l1-1-0.dll, internal: /:\...\api-ms-win-crt-runtime-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1864434: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-string-l1-1-0.dll, internal: /:\...\api-ms-win-crt-string-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1864496: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-time-l1-1-0.dll, internal: /:\...\api-ms-win-crt-time-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1864621: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-stdio-l1-1-0.dll, internal: /:\...\api-ms-win-crt-stdio-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1864749: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\attach.dll, internal: /:\...\attach.dll, hash: [Info: 2024-03-27 11:57:19.1864809: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\awt.dll, internal: /:\...\awt.dll, hash: [Info: 2024-03-27 11:57:19.1864876: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\dt_shmem.dll, internal: /:\...\dt_shmem.dll, hash: [Info: 2024-03-27 11:57:19.1864975: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\dt_socket.dll, internal: /:\...\dt_socket.dll, hash: [Info: 2024-03-27 11:57:19.1865059: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\freetype.dll, internal: /:\...\freetype.dll, hash: [Info: 2024-03-27 11:57:19.1865162: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\instrument.dll, internal: /:\...\instrument.dll, hash: [Info: 2024-03-27 11:57:19.1865335: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\j2gss.dll, internal: /:\...\j2gss.dll, hash: [Info: 2024-03-27 11:57:19.1865421: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\j2pcsc.dll, internal: /:\...\j2pcsc.dll, hash: [Info: 2024-03-27 11:57:19.1865475: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\j2pkcs11.dll, internal: /:\...\j2pkcs11.dll, hash: [Info: 2024-03-27 11:57:19.1865514: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jabswitch.exe, internal: /:\...\jabswitch.exe, hash: [Info: 2024-03-27 11:57:19.1865587: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jaccesswalker.exe, internal: /:\...\jaccesswalker.exe, hash: [Info: 2024-03-27 11:57:19.1865698: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jar.exe, internal: /:\...\jar.exe, hash: [Info: 2024-03-27 11:57:19.1865861: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jarsigner.exe, internal: /:\...\jarsigner.exe, hash: [Info: 2024-03-27 11:57:19.1865983: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\java.dll, internal: /:\...\java.dll, hash: [Info: 2024-03-27 11:57:19.1866109: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\java.exe, internal: /:\...\java.exe, hash: [Info: 2024-03-27 11:57:19.1866133: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\javaaccessbridge.dll, internal: /:\...\javaaccessbridge.dll, hash: [Info: 2024-03-27 11:57:19.1866210: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\javadoc.exe, internal: /:\...\javadoc.exe, hash: [Info: 2024-03-27 11:57:19.1866236: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\javap.exe, internal: /:\...\javap.exe, hash: [Info: 2024-03-27 11:57:19.1866384: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\javaw.exe, internal: /:\...\javaw.exe, hash: [Info: 2024-03-27 11:57:19.1866495: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jawt.dll, internal: /:\...\jawt.dll, hash: [Info: 2024-03-27 11:57:19.1866673: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jcmd.exe, internal: /:\...\jcmd.exe, hash: [Info: 2024-03-27 11:57:19.1866751: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jconsole.exe, internal: /:\...\jconsole.exe, hash: [Info: 2024-03-27 11:57:19.1866855: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jdeps.exe, internal: /:\...\jdeps.exe, hash: [Info: 2024-03-27 11:57:19.1866825: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jdeprscan.exe, internal: /:\...\jdeprscan.exe, hash: [Info: 2024-03-27 11:57:19.1867024: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jimage.dll, internal: /:\...\jimage.dll, hash: [Info: 2024-03-27 11:57:19.1866949: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jhsdb.exe, internal: /:\...\jhsdb.exe, hash: [Info: 2024-03-27 11:57:19.1861006: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-console-l1-2-0.dll, internal: /:\...\api-ms-win-core-console-l1-2-0.dll, hash: [Info: 2024-03-27 11:57:19.1867182: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jimage.exe, internal: /:\...\jimage.exe, hash: [Info: 2024-03-27 11:57:19.1867271: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jinfo.exe, internal: /:\...\jinfo.exe, hash: [Info: 2024-03-27 11:57:19.1867419: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jli.dll, internal: /:\...\jli.dll, hash: [Info: 2024-03-27 11:57:19.1862831: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-profile-l1-1-0.dll, internal: /:\...\api-ms-win-core-profile-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1867499: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jlink.exe, internal: /:\...\jlink.exe, hash: [Info: 2024-03-27 11:57:19.1867536: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jmod.exe, internal: /:\...\jmod.exe, hash: [Info: 2024-03-27 11:57:19.1867686: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jpackage.exe, internal: /:\...\jpackage.exe, hash: [Info: 2024-03-27 11:57:19.1867736: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jrunscript.exe, internal: /:\...\jrunscript.exe, hash: [Info: 2024-03-27 11:57:19.1867806: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jshell.exe, internal: /:\...\jshell.exe, hash: [Info: 2024-03-27 11:57:19.1867925: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jsound.dll, internal: /:\...\jsound.dll, hash: [Info: 2024-03-27 11:57:19.1868072: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jstat.exe, internal: /:\...\jstat.exe, hash: [Info: 2024-03-27 11:57:19.1868101: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jstatd.exe, internal: /:\...\jstatd.exe, hash: [Info: 2024-03-27 11:57:19.1868131: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jsvml.dll, internal: /:\...\jsvml.dll, hash: [Info: 2024-03-27 11:57:19.1868282: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\klist.exe, internal: /:\...\klist.exe, hash: [Info: 2024-03-27 11:57:19.1868336: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\ktab.exe, internal: /:\...\ktab.exe, hash: [Info: 2024-03-27 11:57:19.1868460: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\lcms.dll, internal: /:\...\lcms.dll, hash: [Info: 2024-03-27 11:57:19.1868272: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\keytool.exe, internal: /:\...\keytool.exe, hash: [Info: 2024-03-27 11:57:19.1868618: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\le.dll, internal: /:\...\le.dll, hash: [Info: 2024-03-27 11:57:19.1868699: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\management.dll, internal: /:\...\management.dll, hash: [Info: 2024-03-27 11:57:19.1868764: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\kinit.exe, internal: /:\...\kinit.exe, hash: [Info: 2024-03-27 11:57:19.1868826: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\management_ext.dll, internal: /:\...\management_ext.dll, hash: [Info: 2024-03-27 11:57:19.1868900: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\mlib_image.dll, internal: /:\...\mlib_image.dll, hash: [Info: 2024-03-27 11:57:19.1868964: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\msvcp140.dll, internal: /:\...\msvcp140.dll, hash: [Info: 2024-03-27 11:57:19.1869029: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\net.dll, internal: /:\...\net.dll, hash: [Info: 2024-03-27 11:57:19.1869098: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\nio.dll, internal: /:\...\nio.dll, hash: [Info: 2024-03-27 11:57:19.1869284: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\prefs.dll, internal: /:\...\prefs.dll, hash: [Info: 2024-03-27 11:57:19.1869321: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\rmi.dll, internal: /:\...\rmi.dll, hash: [Info: 2024-03-27 11:57:19.1869399: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\management_agent.dll, internal: /:\...\management_agent.dll, hash: [Info: 2024-03-27 11:57:19.1869453: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\rmiregistry.exe, internal: /:\...\rmiregistry.exe, hash: [Info: 2024-03-27 11:57:19.1869520: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\serialver.exe, internal: /:\...\serialver.exe, hash: [Info: 2024-03-27 11:57:19.1869578: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jvm.dll, internal: /:\...\jvm.dll, hash: [Info: 2024-03-27 11:57:19.1869623: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\splashscreen.dll, internal: /:\...\splashscreen.dll, hash: [Info: 2024-03-27 11:57:19.1869858: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\sspi_bridge.dll, internal: /:\...\sspi_bridge.dll, hash: [Info: 2024-03-27 11:57:19.1869927: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\sunmscapi.dll, internal: /:\...\sunmscapi.dll, hash: [Info: 2024-03-27 11:57:19.1870002: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\ucrtbase.dll, internal: /:\...\ucrtbase.dll, hash: [Info: 2024-03-27 11:57:19.1870041: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\vcruntime140.dll, internal: /:\...\vcruntime140.dll, hash: [Info: 2024-03-27 11:57:19.1870165: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\verify.dll, internal: /:\...\verify.dll, hash: [Info: 2024-03-27 11:57:19.1870219: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\w2k_lsa_auth.dll, internal: /:\...\w2k_lsa_auth.dll, hash: [Info: 2024-03-27 11:57:19.1870244: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\windowsaccessbridge-64.dll, internal: /:\...\windowsaccessbridge-64.dll, hash: [Info: 2024-03-27 11:57:19.1870394: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\vcruntime140_1.dll, internal: /:\...\vcruntime140_1.dll, hash: [Info: 2024-03-27 11:57:19.1870437: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\zip.dll, internal: /:\...\zip.dll, hash: [Info: 2024-03-27 11:57:19.1870548: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\saproc.dll, internal: /:\...\saproc.dll, hash: [Info: 2024-03-27 11:57:19.1870605: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jstack.exe, internal: /:\...\jstack.exe, hash: [Info: 2024-03-27 11:57:19.1870782: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jps.exe, internal: /:\...\jps.exe, hash: [Info: 2024-03-27 11:57:19.1870833: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jpackage.dll, internal: /:\...\jpackage.dll, hash: [Info: 2024-03-27 11:57:19.1870848: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jmap.exe, internal: /:\...\jmap.exe, hash: [Info: 2024-03-27 11:57:19.1870959: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jfr.exe, internal: /:\...\jfr.exe, hash: [Info: 2024-03-27 11:57:19.1871000: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jdwp.dll, internal: /:\...\jdwp.dll, hash: [Info: 2024-03-27 11:57:19.1871064: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jdb.exe, internal: /:\...\jdb.exe, hash: [Info: 2024-03-27 11:57:19.1871109: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\javajpeg.dll, internal: /:\...\javajpeg.dll, hash: [Info: 2024-03-27 11:57:19.1871306: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\javac.exe, internal: /:\...\javac.exe, hash: [Info: 2024-03-27 11:57:19.1871359: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jaccessinspector.exe, internal: /:\...\jaccessinspector.exe, hash: [Info: 2024-03-27 11:57:19.1871427: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\jaas.dll, internal: /:\...\jaas.dll, hash: [Info: 2024-03-27 11:57:19.1871488: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\fontmanager.dll, internal: /:\...\fontmanager.dll, hash: [Info: 2024-03-27 11:57:19.1871539: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-process-l1-1-0.dll, internal: /:\...\api-ms-win-crt-process-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1871584: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-utility-l1-1-0.dll, internal: /:\...\api-ms-win-crt-utility-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1871649: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-crt-locale-l1-1-0.dll, internal: /:\...\api-ms-win-crt-locale-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1871817: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-timezone-l1-1-0.dll, internal: /:\...\api-ms-win-core-timezone-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1871904: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-synch-l1-1-0.dll, internal: /:\...\api-ms-win-core-synch-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1871893: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-sysinfo-l1-1-0.dll, internal: /:\...\api-ms-win-core-sysinfo-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1872006: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-string-l1-1-0.dll, internal: /:\...\api-ms-win-core-string-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1872169: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-localization-l1-2-0.dll, internal: /:\...\api-ms-win-core-localization-l1-2-0.dll, hash: [Info: 2024-03-27 11:57:19.1872197: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-processthreads-l1-1-0.dll, internal: /:\...\api-ms-win-core-processthreads-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1872243: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-libraryloader-l1-1-0.dll, internal: /:\...\api-ms-win-core-libraryloader-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1872378: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-file-l2-1-0.dll, internal: /:\...\api-ms-win-core-file-l2-1-0.dll, hash: [Info: 2024-03-27 11:57:19.1872453: Sha1Cacher.cpp(161)] SHA1 cacher put C:\...\api-ms-win-core-interlocked-l1-1-0.dll, internal: /:\...\api-ms-win-core-interlocked-l1-1-0.dll, hash: [Info: 2024-03-27 11:57:19.2259474: PistonInstaller.cpp(631)] Finished using Sha1Cacher from thread 10872 [Info: 2024-03-27 11:57:19.2279611: PistonInstaller.cpp(783)] Removing staging directory C:\...\windows-x64_staging [Info: 2024-03-27 11:57:19.2283232: MinecraftJavaLoggingContext.cpp(65)] Launcher/launcher (main) Debug Nothing to extract! [Info: 2024-03-27 11:57:19.2283498: MinecraftJavaLoggingContext.cpp(65)] Launcher/launcher (main) Warn Version does not support log configuration, will assume one plaintext entry per line [Info: 2024-03-27 11:57:19.2287393: MinecraftJavaLoggingContext.cpp(275)] Destroying logging context! [Info: 2024-03-27 11:57:19.2287534: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.downloads"); [Info: 2024-03-27 11:57:19.2289494: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.downloads"); [Info: 2024-03-27 11:57:19.2291446: GameVersionManager.cpp(811)] resolveVersionID: Resolved custom:1.19.2-forge-43.3.9 to 1.19.2-forge-43.3.9 [Warning: 2024-03-27 11:57:19.2295221: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: io.netty:netty-transport-native-epoll [Warning: 2024-03-27 11:57:19.2297657: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl [Warning: 2024-03-27 11:57:19.2297936: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl [Warning: 2024-03-27 11:57:19.2298212: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl [Warning: 2024-03-27 11:57:19.2298464: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl [Warning: 2024-03-27 11:57:19.2298728: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl [Warning: 2024-03-27 11:57:19.2299291: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-jemalloc [Warning: 2024-03-27 11:57:19.2299542: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-jemalloc [Warning: 2024-03-27 11:57:19.2299773: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-jemalloc [Warning: 2024-03-27 11:57:19.2300000: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-jemalloc [Warning: 2024-03-27 11:57:19.2300241: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-jemalloc [Warning: 2024-03-27 11:57:19.2300590: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-openal [Warning: 2024-03-27 11:57:19.2300836: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-openal [Warning: 2024-03-27 11:57:19.2301066: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-openal [Warning: 2024-03-27 11:57:19.2301302: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-openal [Warning: 2024-03-27 11:57:19.2301552: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-openal [Warning: 2024-03-27 11:57:19.2301896: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-opengl [Warning: 2024-03-27 11:57:19.2302140: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-opengl [Warning: 2024-03-27 11:57:19.2302374: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-opengl [Warning: 2024-03-27 11:57:19.2302607: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-opengl [Warning: 2024-03-27 11:57:19.2302847: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-opengl [Warning: 2024-03-27 11:57:19.2303197: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-glfw [Warning: 2024-03-27 11:57:19.2303451: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-glfw [Warning: 2024-03-27 11:57:19.2304042: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-glfw [Warning: 2024-03-27 11:57:19.2304277: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-glfw [Warning: 2024-03-27 11:57:19.2304527: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-glfw [Warning: 2024-03-27 11:57:19.2304866: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-stb [Warning: 2024-03-27 11:57:19.2305114: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-stb [Warning: 2024-03-27 11:57:19.2305352: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-stb [Warning: 2024-03-27 11:57:19.2305581: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-stb [Warning: 2024-03-27 11:57:19.2305826: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-stb [Warning: 2024-03-27 11:57:19.2306163: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-tinyfd [Warning: 2024-03-27 11:57:19.2306414: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-tinyfd [Warning: 2024-03-27 11:57:19.2306644: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-tinyfd [Warning: 2024-03-27 11:57:19.2306875: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-tinyfd [Warning: 2024-03-27 11:57:19.2307123: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-tinyfd [Warning: 2024-03-27 11:57:19.2307610: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-glfw [Warning: 2024-03-27 11:57:19.2307885: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-jemalloc [Warning: 2024-03-27 11:57:19.2308163: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-openal [Warning: 2024-03-27 11:57:19.2308428: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-opengl [Warning: 2024-03-27 11:57:19.2308712: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-stb [Warning: 2024-03-27 11:57:19.2309059: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl-tinyfd [Warning: 2024-03-27 11:57:19.2309345: JavaLaunchConfiguration.cpp(433)] Detected duplicate libraries in version file: org.lwjgl:lwjgl [Info: 2024-03-27 11:57:19.2329466: JavaLaunchConfiguration.cpp(264)] Java argument:-XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump [Info: 2024-03-27 11:57:19.2329693: JavaLaunchConfiguration.cpp(264)] Java argument:-Dos.name=Windows 10 [Info: 2024-03-27 11:57:19.2329791: JavaLaunchConfiguration.cpp(264)] Java argument:-Dos.version=10.0 [Info: 2024-03-27 11:57:19.2329888: JavaLaunchConfiguration.cpp(264)] Java argument:-Djava.library.path=<WORKDIR>\.minecraft\bin\ec8e9f377eabab86564b151e61758eaca90c4b76 [Info: 2024-03-27 11:57:19.2330006: JavaLaunchConfiguration.cpp(264)] Java argument:-Dminecraft.launcher.brand=minecraft-launcher [Info: 2024-03-27 11:57:19.2330119: JavaLaunchConfiguration.cpp(264)] Java argument:-Dminecraft.launcher.version=2.20.2 [Info: 2024-03-27 11:57:19.2330213: JavaLaunchConfiguration.cpp(264)] Java argument:-cp [Info: 2024-03-27 11:57:19.2330329: JavaLaunchConfiguration.cpp(264)] Java argument:<WORKDIR>\.minecraft\libraries\cpw\mods\securejarhandler\2.1.4\securejarhandler-2.1.4.jar;<WORKDIR>\.minecraft\libraries\org\ow2\asm\asm\9.6\asm-9.6.jar;<WORKDIR>\.minecraft\libraries\org\ow2\asm\asm-commons\9.6\asm-commons-9.6.jar;<WORKDIR>\.minecraft\libraries\org\ow2\asm\asm-tree\9.6\asm-tree-9.6.jar;<WORKDIR>\.minecraft\libraries\org\ow2\asm\asm-util\9.6\asm-util-9.6.jar;<WORKDIR>\.minecraft\libraries\org\ow2\asm\asm-analysis\9.6\asm-analysis-9.6.jar;<WORKDIR>\.minecraft\libraries\net\minecraftforge\accesstransformers\8.0.4\accesstransformers-8.0.4.jar;<WORKDIR>\.minecraft\libraries\org\antlr\antlr4-runtime\4.9.1\antlr4-runtime-4.9.1.jar;<WORKDIR>\.minecraft\libraries\net\minecraftforge\eventbus\6.0.3\eventbus-6.0.3.jar;<WORKDIR>\.minecraft\libraries\net\minecraftforge\forgespi\6.0.0\forgespi-6.0.0.jar;<WORKDIR>\.minecraft\libraries\net\minecraftforge\coremods\5.1.2\coremods-5.1.2.jar;<WORKDIR>\.minecraft\libraries\cpw\mods\modlauncher\10.0.8\modlauncher-10.0.8.jar;<WORKDIR>\.minecraft\libraries\net\minecraftforge\unsafe\0.2.0\unsafe-0.2.0.jar;<WORKDIR>\.minecraft\libraries\com\electronwill\night-config\core\3.6.4\core-3.6.4.jar;<WORKDIR>\.minecraft\libraries\com\electronwill\night-config\toml\3.6.4\toml-3.6.4.jar;<WORKDIR>\.minecraft\libraries\org\apache\maven\maven-artifact\3.8.5\maven-artifact-3.8.5.jar;<WORKDIR>\.minecraft\libraries\net\jodah\typetools\0.8.3\typetools-0.8.3.jar;<WORKDIR>\.minecraft\libraries\net\minecrell\terminalconsoleappender\1.2.0\terminalconsoleappender-1.2.0.jar;<WORKDIR>\.minecraft\libraries\org\jline\jline-reader\3.12.1\jline-reader-3.12.1.jar;<WORKDIR>\.minecraft\libraries\org\jline\jline-terminal\3.12.1\jline-terminal-3.12.1.jar;<WORKDIR>\.minecraft\libraries\org\spongepowered\mixin\0.8.5\mixin-0.8.5.jar;<WORKDIR>\.minecraft\libraries\org\openjdk\nashorn\nashorn-core\15.3\nashorn-core-15.3.jar;<WORKDIR>\.minecraft\libraries\net\minecraftforge\JarJarSelector\0.3.16\JarJarSelector-0.3.16.jar;<WORKDIR>\.minecraft\libraries\net\minecraftforge\JarJarMetadata\0.3.16\JarJarMetadata-0.3.16.jar;<WORKDIR>\.minecraft\libraries\cpw\mods\bootstraplauncher\1.1.2\bootstraplauncher-1.1.2.jar;<WORKDIR>\.minecraft\libraries\net\minecraftforge\JarJarFileSystems\0.3.16\JarJarFileSystems-0.3.16.jar;<WORKDIR>\.minecraft\libraries\net\minecraftforge\fmlloader\1.19.2-43.3.9\fmlloader-1.19.2-43.3.9.jar;<WORKDIR>\.minecraft\libraries\com\mojang\logging\1.0.0\logging-1.0.0.jar;<WORKDIR>\.minecraft\libraries\com\mojang\blocklist\1.0.10\blocklist-1.0.10.jar;<WORKDIR>\.minecraft\libraries\com\mojang\patchy\2.2.10\patchy-2.2.10.jar;<WORKDIR>\.minecraft\libraries\com\github\oshi\oshi-core\5.8.5\oshi-core-5.8.5.jar;<WORKDIR>\.minecraft\libraries\net\java\dev\jna\jna\5.10.0\jna-5.10.0.jar;<WORKDIR>\.minecraft\libraries\net\java\dev\jna\jna-platform\5.10.0\jna-platform-5.10.0.jar;<WORKDIR>\.minecraft\libraries\org\slf4j\slf4j-api\1.8.0-beta4\slf4j-api-1.8.0-beta4.jar;<WORKDIR>\.minecraft\libraries\org\apache\logging\log4j\log4j-slf4j18-impl\2.17.0\log4j-slf4j18-impl-2.17.0.jar;<WORKDIR>\.minecraft\libraries\com\ibm\icu\icu4j\70.1\icu4j-70.1.jar;<WORKDIR>\.minecraft\libraries\com\mojang\javabridge\1.2.24\javabridge-1.2.24.jar;<WORKDIR>\.minecraft\libraries\net\sf\jopt-simple\jopt-simple\5.0.4\jopt-simple-5.0.4.jar;<WORKDIR>\.minecraft\libraries\io\netty\netty-common\4.1.77.Final\netty-common-4.1.77.Final.jar;<WORKDIR>\.minecraft\libraries\io\netty\netty-buffer\4.1.77.Final\netty-buffer-4.1.77.Final.jar;<WORKDIR>\.minecraft\libraries\io\netty\netty-codec\4.1.77.Final\netty-codec-4.1.77.Final.jar;<WORKDIR>\.minecraft\libraries\io\netty\netty-handler\4.1.77.Final\netty-handler-4.1.77.Final.jar;<WORKDIR>\.minecraft\libraries\io\netty\netty-resolver\4.1.77.Final\netty-resolver-4.1.77.Final.jar;<WORKDIR>\.minecraft\libraries\io\netty\netty-transport\4.1.77.Final\netty-transport-4.1.77.Final.jar;<WORKDIR>\.minecraft\libraries\io\netty\netty-transport-native-unix-common\4.1.77.Final\netty-transport-native-unix-common-4.1.77.Final.jar;<WORKDIR>\.minecraft\libraries\io\netty\netty-transport-classes-epoll\4.1.77.Final\netty-transport-classes-epoll-4.1.77.Final.jar;<WORKDIR>\.minecraft\libraries\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;<WORKDIR>\.minecraft\libraries\com\google\guava\guava\31.0.1-jre\guava-31.0.1-jre.jar;<WORKDIR>\.minecraft\libraries\org\apache\commons\commons-lang3\3.12.0\commons-lang3-3.12.0.jar;<WORKDIR>\.minecraft\libraries\commons-io\commons-io\2.11.0\commons-io-2.11.0.jar;<WORKDIR>\.minecraft\libraries\commons-codec\commons-codec\1.15\commons-codec-1.15.jar;<WORKDIR>\.minecraft\libraries\com\mojang\brigadier\1.0.18\brigadier-1.0.18.jar;<WORKDIR>\.minecraft\libraries\com\mojang\datafixerupper\5.0.28\datafixerupper-5.0.28.jar;<WORKDIR>\.minecraft\libraries\com\google\code\gson\gson\2.8.9\gson-2.8.9.jar;<WORKDIR>\.minecraft\libraries\com\mojang\authlib\3.11.49\authlib-3.11.49.jar;<WORKDIR>\.minecraft\libraries\org\apache\commons\commons-compress\1.21\commons-compress-1.21.jar;<WORKDIR>\.minecraft\libraries\org\apache\httpcomponents\httpclient\4.5.13\httpclient-4.5.13.jar;<WORKDIR>\.minecraft\libraries\commons-logging\commons-logging\1.2\commons-logging-1.2.jar;<WORKDIR>\.minecraft\libraries\org\apache\httpcomponents\httpcore\4.4.14\httpcore-4.4.14.jar;<WORKDIR>\.minecraft\libraries\it\unimi\dsi\fastutil\8.5.6\fastutil-8.5.6.jar;<WORKDIR>\.minecraft\libraries\org\apache\logging\log4j\log4j-api\2.17.0\log4j-api-2.17.0.jar;<WORKDIR>\.minecraft\libraries\org\apache\logging\log4j\log4j-core\2.17.0\log4j-core-2.17.0.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl\3.3.1\lwjgl-3.3.1.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl\3.3.1\lwjgl-3.3.1-natives-windows.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl\3.3.1\lwjgl-3.3.1-natives-windows-x86.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-jemalloc\3.3.1\lwjgl-jemalloc-3.3.1.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-jemalloc\3.3.1\lwjgl-jemalloc-3.3.1-natives-windows.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-jemalloc\3.3.1\lwjgl-jemalloc-3.3.1-natives-windows-x86.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-openal\3.3.1\lwjgl-openal-3.3.1.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-openal\3.3.1\lwjgl-openal-3.3.1-natives-windows.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-openal\3.3.1\lwjgl-openal-3.3.1-natives-windows-x86.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-opengl\3.3.1\lwjgl-opengl-3.3.1.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-opengl\3.3.1\lwjgl-opengl-3.3.1-natives-windows.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-opengl\3.3.1\lwjgl-opengl-3.3.1-natives-windows-x86.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-glfw\3.3.1\lwjgl-glfw-3.3.1.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-glfw\3.3.1\lwjgl-glfw-3.3.1-natives-windows.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-glfw\3.3.1\lwjgl-glfw-3.3.1-natives-windows-x86.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-stb\3.3.1\lwjgl-stb-3.3.1.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-stb\3.3.1\lwjgl-stb-3.3.1-natives-windows.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-stb\3.3.1\lwjgl-stb-3.3.1-natives-windows-x86.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-tinyfd\3.3.1\lwjgl-tinyfd-3.3.1.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-tinyfd\3.3.1\lwjgl-tinyfd-3.3.1-natives-windows.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-tinyfd\3.3.1\lwjgl-tinyfd-3.3.1-natives-windows-x86.jar;<WORKDIR>\.minecraft\libraries\com\mojang\text2speech\1.16.7\text2speech-1.16.7.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-glfw\3.3.1\lwjgl-glfw-3.3.1-natives-windows-arm64.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-jemalloc\3.3.1\lwjgl-jemalloc-3.3.1-natives-windows-arm64.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-openal\3.3.1\lwjgl-openal-3.3.1-natives-windows-arm64.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-opengl\3.3.1\lwjgl-opengl-3.3.1-natives-windows-arm64.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-stb\3.3.1\lwjgl-stb-3.3.1-natives-windows-arm64.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl-tinyfd\3.3.1\lwjgl-tinyfd-3.3.1-natives-windows-arm64.jar;<WORKDIR>\.minecraft\libraries\org\lwjgl\lwjgl\3.3.1\lwjgl-3.3.1-natives-windows-arm64.jar;<WORKDIR>\.minecraft\versions\1.19.2-forge-43.3.9\1.19.2-forge-43.3.9.jar [Info: 2024-03-27 11:57:19.2332255: JavaLaunchConfiguration.cpp(264)] Java argument:-Djava.net.preferIPv6Addresses=system [Info: 2024-03-27 11:57:19.2332368: JavaLaunchConfiguration.cpp(264)] Java argument:-DignoreList=bootstraplauncher,securejarhandler,asm-commons,asm-util,asm-analysis,asm-tree,asm,JarJarFileSystems,client-extra,fmlcore,javafmllanguage,lowcodelanguage,mclanguage,forge-,1.19.2-forge-43.3.9.jar [Info: 2024-03-27 11:57:19.2332469: JavaLaunchConfiguration.cpp(264)] Java argument:-DmergeModules=jna-5.10.0.jar,jna-platform-5.10.0.jar [Info: 2024-03-27 11:57:19.2332577: JavaLaunchConfiguration.cpp(264)] Java argument:-DlibraryDirectory=<WORKDIR>\.minecraft\libraries [Info: 2024-03-27 11:57:19.2332668: JavaLaunchConfiguration.cpp(264)] Java argument:-p [Info: 2024-03-27 11:57:19.2332910: JavaLaunchConfiguration.cpp(264)] Java argument:<WORKDIR>\.minecraft\libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar;<WORKDIR>\.minecraft\libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar;<WORKDIR>\.minecraft\libraries/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.jar;<WORKDIR>\.minecraft\libraries/org/ow2/asm/asm-util/9.6/asm-util-9.6.jar;<WORKDIR>\.minecraft\libraries/org/ow2/asm/asm-analysis/9.6/asm-analysis-9.6.jar;<WORKDIR>\.minecraft\libraries/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.jar;<WORKDIR>\.minecraft\libraries/org/ow2/asm/asm/9.6/asm-9.6.jar;<WORKDIR>\.minecraft\libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar [Info: 2024-03-27 11:57:19.2333070: JavaLaunchConfiguration.cpp(264)] Java argument:--add-modules [Info: 2024-03-27 11:57:19.2333154: JavaLaunchConfiguration.cpp(264)] Java argument:ALL-MODULE-PATH [Info: 2024-03-27 11:57:19.2333238: JavaLaunchConfiguration.cpp(264)] Java argument:--add-opens [Info: 2024-03-27 11:57:19.2333323: JavaLaunchConfiguration.cpp(264)] Java argument:java.base/java.util.jar=cpw.mods.securejarhandler [Info: 2024-03-27 11:57:19.2333411: JavaLaunchConfiguration.cpp(264)] Java argument:--add-opens [Info: 2024-03-27 11:57:19.2333495: JavaLaunchConfiguration.cpp(264)] Java argument:java.base/java.lang.invoke=cpw.mods.securejarhandler [Info: 2024-03-27 11:57:19.2333585: JavaLaunchConfiguration.cpp(264)] Java argument:--add-exports [Info: 2024-03-27 11:57:19.2333667: JavaLaunchConfiguration.cpp(264)] Java argument:java.base/sun.security.util=cpw.mods.securejarhandler [Info: 2024-03-27 11:57:19.2333754: JavaLaunchConfiguration.cpp(264)] Java argument:--add-exports [Info: 2024-03-27 11:57:19.2333834: JavaLaunchConfiguration.cpp(264)] Java argument:jdk.naming.dns/com.sun.jndi.dns=java.naming [Info: 2024-03-27 11:57:19.2333922: JavaLaunchConfiguration.cpp(264)] Java argument:-Xmx2G [Info: 2024-03-27 11:57:19.2334004: JavaLaunchConfiguration.cpp(264)] Java argument:-XX:+UnlockExperimentalVMOptions [Info: 2024-03-27 11:57:19.2334094: JavaLaunchConfiguration.cpp(264)] Java argument:-XX:+UseG1GC [Info: 2024-03-27 11:57:19.2334177: JavaLaunchConfiguration.cpp(264)] Java argument:-XX:G1NewSizePercent=20 [Info: 2024-03-27 11:57:19.2334273: JavaLaunchConfiguration.cpp(264)] Java argument:-XX:G1ReservePercent=20 [Info: 2024-03-27 11:57:19.2334359: JavaLaunchConfiguration.cpp(264)] Java argument:-XX:MaxGCPauseMillis=50 [Info: 2024-03-27 11:57:19.2334441: JavaLaunchConfiguration.cpp(264)] Java argument:-XX:G1HeapRegionSize=32M [Info: 2024-03-27 11:57:19.2334663: MinecraftJavaLoggingContext.cpp(65)] Launcher/launcher (main) Warn Version does not support log configuration, will assume one plaintext entry per line [Info: 2024-03-27 11:57:19.2340904: MinecraftJavaRunningContext.cpp(158)] Starting game in folder %USERPROFILE%\AppData\Roaming\.minecraft using java executable C:\...\javaw.exe [Info: 2024-03-27 11:57:19.2343928: Process_Windows.cpp(38)] Creating process C:\...\javaw.exe [Info: 2024-03-27 11:57:19.2353549: MinecraftJavaRunningContext.cpp(165)] Starting game with token 2 [Info: 2024-03-27 11:57:19.2354384: Process_Windows.cpp(111)] Starting process C:\...\javaw.exe [Info: 2024-03-27 11:57:19.2393356: root_window_manager.cpp(105)] A log window has been opened: 18E18A88 for instanceId 2 [Info: 2024-03-27 11:57:19.2399189: LauncherAppBrowser.cpp(82)] Will launch a Chromium subprocess with command line string: "<APPDIR>\Minecraft Launcher\MinecraftLauncher.exe" --type=renderer --log-severity=info --user-data-dir="%USERPROFILE%\AppData\Local\CEF\User Data" --launcherui --workdir="<WORKDIR>\.minecraft" [Info: 2024-03-27 11:57:19.2417826: Process_Windows.cpp(162)] Read thread is 4292 [Info: 2024-03-27 11:57:19.2391290: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.gameInstances"); [Info: 2024-03-27 11:57:19.2552376: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.gameInstances"); [Info: 2024-03-27 11:53:04.9086361: LauncherMain.cpp(112)] Initiated models [Info: 2024-03-27 11:53:04.9091482: LauncherController.cpp(665)] Constructing launcher controller with workDir: C:\...\.minecraft, isActive: 0 [Info: 2024-03-27 11:53:04.9176858: LauncherAppRenderer.cpp(177)] Javascript bridge extended in OnWebKitInitialized. [Info: 2024-03-27 11:57:19.2633174: LauncherAppRenderer.cpp(294)] MCLauncher.triggerUpdateEvent("coreEvent.gameInstances"); [Info: 2024-03-27 11:57:19.2945745: ControllerInterface.cpp(106)] Running method updateConfiguration [Info: 2024-03-27 11:57:19.2962860: ControllerInterface.cpp(106)] Running method updateForcedMigrationStates [Info: 2024-03-27 11:57:19.2966298: client_handler.cpp(862)] NotifyBrowserClosing [Info: 2024-03-27 11:57:19.2968059: browser_window.cpp(61)] OnBrowserClosing [Info: 2024-03-27 11:57:19.3008149: client_handler.cpp(891)] NotifyBrowserClosed [Info: 2024-03-27 11:57:19.3008678: browser_window.cpp(68)] OnBrowserClosed (with delegate) [Info: 2024-03-27 11:57:19.3010188: root_window_manager.cpp(303)] Main window has been closed: 042CB660 [Info: 2024-03-27 11:57:19.3325276: LauncherAppRenderer.cpp(325)] OnContextCreated: main frame. Url=https://mojang/launcher/log.html?token=2 browser id=2 [Info: 2024-03-27 11:57:19.3325954: LauncherAppRenderer.cpp(337)] OnContextCreated: Create JS bindings in main browser. [Info: 2024-03-27 11:57:19.4959732: client_handler.cpp(407)] Register game instance log listener using token: 2 [Info: 2024-03-27 11:57:20.8357612: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info 2024-03-27 18:57:20,821 main WARN Advanced terminal features are not available in this environment [Info: 2024-03-27 11:57:21.0318690: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:21] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, <MINECRAFT_PROFILE_NAME>, --version, 1.19.2-forge-43.3.9, --gameDir, <WORKDIR>\.minecraft, --assetsDir, <WORKDIR>\.minecraft\assets, --assetIndex, 1.19, --uuid, <MINECRAFT_PROFILE_ID>, --accessToken, ????????, --clientId, YzZiNmMyY2MtMTcyZC00NGZlLWEzMTYtZDI5NjU5NGY4MDEy, --xuid, <REMOTE_ID>, --userType, msa, --versionType, release, --launchTarget, forgeclient, --fml.forgeVersion, 43.3.9, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [Info: 2024-03-27 11:57:21.0401216: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:21] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.8 by Microsoft; OS Windows 10 arch amd64 version 10.0 [Info: 2024-03-27 11:57:22.7952011: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:22] [main/INFO] [op.OptiFineTransformationService/]: OptiFineTransformationService.onLoad [Info: 2024-03-27 11:57:22.7964779: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:22] [main/INFO] [op.OptiFineTransformationService/]: OptiFine ZIP file URL: union:/C:/Users/Administrator/AppData/Roaming/.minecraft/mods/OptiFine_1.19.2_HD_U_H9.jar%23390!/ [Info: 2024-03-27 11:57:22.8017529: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:22] [main/INFO] [op.OptiFineTransformationService/]: OptiFine ZIP file: <WORKDIR>\.minecraft\mods\OptiFine_1.19.2_HD_U_H9.jar [Info: 2024-03-27 11:57:22.8037133: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:22] [main/INFO] [op.OptiFineTransformer/]: Target.PRE_CLASS is available [Info: 2024-03-27 11:57:22.8466507: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:22] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Administrator/AppData/Roaming/.minecraft/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2397!/ Service=ModLauncher Env=CLIENT [Info: 2024-03-27 11:57:22.8521574: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:22] [main/INFO] [op.OptiFineTransformationService/]: OptiFineTransformationService.initialize [Info: 2024-03-27 11:57:23.5348211: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:23] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file <WORKDIR>\.minecraft\libraries\net\minecraftforge\fmlcore\1.19.2-43.3.9\fmlcore-1.19.2-43.3.9.jar is missing mods.toml file [Info: 2024-03-27 11:57:23.5382726: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:23] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file <WORKDIR>\.minecraft\libraries\net\minecraftforge\javafmllanguage\1.19.2-43.3.9\javafmllanguage-1.19.2-43.3.9.jar is missing mods.toml file [Info: 2024-03-27 11:57:23.5404873: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:23] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file <WORKDIR>\.minecraft\libraries\net\minecraftforge\lowcodelanguage\1.19.2-43.3.9\lowcodelanguage-1.19.2-43.3.9.jar is missing mods.toml file [Info: 2024-03-27 11:57:23.5430802: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:23] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file <WORKDIR>\.minecraft\libraries\net\minecraftforge\mclanguage\1.19.2-43.3.9\mclanguage-1.19.2-43.3.9.jar is missing mods.toml file [Info: 2024-03-27 11:57:23.7111835: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:23] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [Info: 2024-03-27 11:57:23.7112710: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:23] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [Info: 2024-03-27 11:57:23.7127213: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:23] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: <WORKDIR>\.minecraft\mods\resourcefullib-forge-1.19.2-1.1.24.jar [Info: 2024-03-27 11:57:23.7128333: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:23] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: l2library. Using Mod File: <WORKDIR>\.minecraft\mods\l2library-1.10.0.jar [Info: 2024-03-27 11:57:23.7129525: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:23] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 11 dependencies adding them to mods collection [Info: 2024-03-27 11:57:23.8102664: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:23] [main/ERROR] [ne.mi.fm.lo.ModSorter/LOADING]: Missing or unsupported mandatory dependencies: [Info: 2024-03-27 11:57:23.8103219: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info Mod ID: 'brewinandchewin', Requested by: 'italian_delight', Expected range: '[1.19-2.0,1.19-2.0]', Actual version: '[MISSING]' [Info: 2024-03-27 11:57:24.0803578: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:24] [main/INFO] [op.OptiFineTransformationService/]: OptiFineTransformationService.transformers [Info: 2024-03-27 11:57:24.0836368: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:24] [main/INFO] [op.OptiFineTransformer/]: Targets: 383 [Info: 2024-03-27 11:57:24.2461397: UserIdentity.cpp(1094)] Current token [with-refresh:false] - [notnull] [Info: 2024-03-27 11:57:24.2468304: TelemetryEventSink_PlayFab.cpp(131)] Posting 0 events. [Info: 2024-03-27 11:57:24.2469643: NetQueue.cpp(213)] NetQueue: Starting net action https://api.minecraftservices.com/events [Info: 2024-03-27 11:57:24.3870114: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:24] [main/INFO] [op.OptiFineTransformationService/]: additionalClassesLocator: [optifine., net.optifine.] [Info: 2024-03-27 11:57:24.5972004: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 13.107.246.59, Host: api.minecraftservices.com [Info: 2024-03-27 11:57:24.5972433: NetQueue.cpp(102)] NetQueue: Action finished: https://api.minecraftservices.com/events [Info: 2024-03-27 11:57:24.5972859: NetQueue.cpp(133)] Action finalized: https://api.minecraftservices.com/events [Info: 2024-03-27 11:57:26.0568211: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/ERROR] [mixin/]: Mixin config dynamiclightsreforged.mixins.json does not specify "minVersion" property [Info: 2024-03-27 11:57:26.0614807: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [Info: 2024-03-27 11:57:26.1132683: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/ERROR] [mixin/]: Mixin config mixins.oculus.compat.sodium.json does not specify "minVersion" property [Info: 2024-03-27 11:57:26.1660351: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/ERROR] [mixin/]: Mixin config firstperson.mixins.json does not specify "minVersion" property [Info: 2024-03-27 11:57:26.2698077: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [Info: 2024-03-27 11:57:26.2704243: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [ca.spottedleaf.starlight.mixin.MixinConnector] [Info: 2024-03-27 11:57:26.2708915: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.leobeliik.extremesoundmuffler.MixinConnector] [Info: 2024-03-27 11:57:26.2725110: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/INFO] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclient' with arguments [--version, 1.19.2-forge-43.3.9, --gameDir, <WORKDIR>\.minecraft, --assetsDir, <WORKDIR>\.minecraft\assets, --uuid, <MINECRAFT_PROFILE_ID>, --username, <MINECRAFT_PROFILE_NAME>, --assetIndex, 1.19, --accessToken, ????????, --clientId, YzZiNmMyY2MtMTcyZC00NGZlLWEzMTYtZDI5NjU5NGY4MDEy, --xuid, <REMOTE_ID>, --userType, msa, --versionType, release] [Info: 2024-03-27 11:57:26.2990776: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/INFO] [Rubidium/]: Loaded configuration file for Rubidium: 30 options available, 0 override(s) found [Info: 2024-03-27 11:57:26.3051924: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/WARN] [mixin/]: Reference map 'dustydecorations.refmap.json' for dustydecorations.mixins.json could not be read. If this is a development environment you can ignore this message [Info: 2024-03-27 11:57:26.3106194: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/WARN] [mixin/]: Reference map 'vinery-forge-refmap.json' for vinery.mixins.json could not be read. If this is a development environment you can ignore this message [Info: 2024-03-27 11:57:26.3237668: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/WARN] [mixin/]: Reference map 'morevillagers-forge-forge-refmap.json' for morevillagers.mixins.json could not be read. If this is a development environment you can ignore this message [Info: 2024-03-27 11:57:26.3418016: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/WARN] [mixin/]: Reference map 'cuisinedelight.refmap.json' for cuisinedelight.mixins.json could not be read. If this is a development environment you can ignore this message [Info: 2024-03-27 11:57:26.3650299: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/WARN] [mixin/]: Reference map '${refmap_target}refmap.json' for corgilib.forge.mixins.json could not be read. If this is a development environment you can ignore this message [Info: 2024-03-27 11:57:26.4101562: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/WARN] [mixin/]: Reference map 'naturalist-forge-forge-refmap.json' for naturalist.mixins.json could not be read. If this is a development environment you can ignore this message [Info: 2024-03-27 11:57:26.4118874: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/WARN] [mixin/]: Reference map 'candlelight-forge-refmap.json' for candlelight.mixins.json could not be read. If this is a development environment you can ignore this message [Info: 2024-03-27 11:57:26.4170252: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/WARN] [mixin/]: Reference map 'Bakery-forge-refmap.json' for bakery.mixins.json could not be read. If this is a development environment you can ignore this message [Info: 2024-03-27 11:57:26.4188765: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/WARN] [mixin/]: Reference map 'beachparty-forge-refmap.json' for beachparty.mixins.json could not be read. If this is a development environment you can ignore this message [Info: 2024-03-27 11:57:26.4307181: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/WARN] [mixin/]: Reference map 'meadow-forge-refmap.json' for meadow.mixins.json could not be read. If this is a development environment you can ignore this message [Info: 2024-03-27 11:57:26.4396533: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/WARN] [mixin/]: Reference map 'smallships-forge-refmap.json' for smallships.mixins.json could not be read. If this is a development environment you can ignore this message [Info: 2024-03-27 11:57:26.5138127: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/WARN] [mixin/]: Reference map 'immersive_paintings-common-refmap.json' for immersive_paintings.mixin.json could not be read. If this is a development environment you can ignore this message [Info: 2024-03-27 11:57:26.5381933: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:26] [main/WARN] [mixin/]: Reference map 'kawaiidishes.refmap.json' for KawaiiDishes.mixins.json could not be read. If this is a development environment you can ignore this message [Info: 2024-03-27 11:57:26.5571306: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.world.level.block.entity.BlockEntityType --- dev.lambdaurora.lambdynlights.mixin.BlockEntityTypeMixin [Info: 2024-03-27 11:57:26.5643335: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.client.multiplayer.ClientLevel --- dev.lambdaurora.lambdynlights.mixin.ClientWorldMixin [Info: 2024-03-27 11:57:26.5648947: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.client.renderer.LevelRenderer --- dev.lambdaurora.lambdynlights.mixin.CommonWorldRendererMixin [Info: 2024-03-27 11:57:26.5652838: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.client.gui.components.DebugScreenOverlay --- dev.lambdaurora.lambdynlights.mixin.DebugHudMixin [Info: 2024-03-27 11:57:26.5655920: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.client.renderer.entity.EntityRenderer --- dev.lambdaurora.lambdynlights.mixin.EntityRendererMixin [Info: 2024-03-27 11:57:26.5658573: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.world.entity.EntityType --- dev.lambdaurora.lambdynlights.mixin.EntityTypeMixin [Info: 2024-03-27 11:57:26.5661065: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.client.Minecraft --- dev.lambdaurora.lambdynlights.mixin.MinecraftClientMixin [Info: 2024-03-27 11:57:26.5664130: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.world.level.Level --- dev.lambdaurora.lambdynlights.mixin.WorldMixin [Info: 2024-03-27 11:57:26.5666172: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.client.renderer.LevelRenderer --- dev.lambdaurora.lambdynlights.mixin.WorldRendererMixin [Info: 2024-03-27 11:57:26.5668779: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.world.entity.decoration.HangingEntity --- dev.lambdaurora.lambdynlights.mixin.lightsource.AbstractDecorationEntityMixin [Info: 2024-03-27 11:57:26.5673234: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.world.entity.vehicle.AbstractMinecart --- dev.lambdaurora.lambdynlights.mixin.lightsource.AbstractMinecartEntityMixin [Info: 2024-03-27 11:57:26.5682220: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.world.level.block.entity.BlockEntity --- dev.lambdaurora.lambdynlights.mixin.lightsource.BlockEntityMixin [Info: 2024-03-27 11:57:26.5694165: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.world.entity.Entity --- dev.lambdaurora.lambdynlights.mixin.lightsource.EntityMixin [Info: 2024-03-27 11:57:26.5699337: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.world.entity.projectile.AbstractHurtingProjectile --- dev.lambdaurora.lambdynlights.mixin.lightsource.ExplosiveProjectileEntityMixin [Info: 2024-03-27 11:57:26.5704931: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.world.entity.LivingEntity --- dev.lambdaurora.lambdynlights.mixin.lightsource.LivingEntityMixin [Info: 2024-03-27 11:57:26.5709863: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.world.entity.player.Player --- dev.lambdaurora.lambdynlights.mixin.lightsource.PlayerEntityMixin [Info: 2024-03-27 11:57:26.5715391: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info net.minecraft.world.entity.item.PrimedTnt --- dev.lambdaurora.lambdynlights.mixin.lightsource.TntEntityMixin [Info: 2024-03-27 11:57:26.5722338: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info me.jellysquid.mods.sodium.client.gui.SodiumOptionsGUI --- dev.lambdaurora.lambdynlights.mixin.sodium.SodiumSettingsMixin [Info: 2024-03-27 11:57:27.0192652: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: Error loading class: vazkii/quark/content/tweaks/module/GoldToolsHaveFortuneModule (java.lang.ClassNotFoundException: vazkii.quark.content.tweaks.module.GoldToolsHaveFortuneModule) [Info: 2024-03-27 11:57:27.0513427: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: Error loading class: com/hollingsworth/arsnouveau/common/items/SpellCrossbow (java.lang.ClassNotFoundException: com.hollingsworth.arsnouveau.common.items.SpellCrossbow) [Info: 2024-03-27 11:57:27.0547174: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: Error loading class: com/rolfmao/upgradednetherite/content/UpgradedNetheriteCrossbow (java.lang.ClassNotFoundException: com.rolfmao.upgradednetherite.content.UpgradedNetheriteCrossbow) [Info: 2024-03-27 11:57:27.0568328: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: Error loading class: com/rolfmao/upgradednetherite_ultimate/content/UpgradedNetheriteCrossbow (java.lang.ClassNotFoundException: com.rolfmao.upgradednetherite_ultimate.content.UpgradedNetheriteCrossbow) [Info: 2024-03-27 11:57:27.0622444: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: Error loading class: vazkii/quark/content/client/tooltip/AttributeTooltips (java.lang.ClassNotFoundException: vazkii.quark.content.client.tooltip.AttributeTooltips) [Info: 2024-03-27 11:57:27.4751815: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: Error loading class: umpaz/brewinandchewin/common/block/entity/KegBlockEntity (java.lang.ClassNotFoundException: umpaz.brewinandchewin.common.block.entity.KegBlockEntity) [Info: 2024-03-27 11:57:27.4752924: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: @Mixin target umpaz.brewinandchewin.common.block.entity.KegBlockEntity was not found thirst.mixin.json:accessors.brewinandchewin.KegBlockEntityAccessor [Info: 2024-03-27 11:57:27.4790171: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: Error loading class: umpaz/brewinandchewin/common/block/entity/KegBlockEntity (java.lang.ClassNotFoundException: umpaz.brewinandchewin.common.block.entity.KegBlockEntity) [Info: 2024-03-27 11:57:27.4791009: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: @Mixin target umpaz.brewinandchewin.common.block.entity.KegBlockEntity was not found thirst.mixin.json:brewinandchewin.MixinKegBlockEntity [Info: 2024-03-27 11:57:27.4828781: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: Error loading class: plus/dragons/createcentralkitchen/content/logistics/block/mechanicalArm/KettlePoint (java.lang.ClassNotFoundException: plus.dragons.createcentralkitchen.content.logistics.block.mechanicalArm.KettlePoint) [Info: 2024-03-27 11:57:27.4829507: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: @Mixin target plus.dragons.createcentralkitchen.content.logistics.block.mechanicalArm.KettlePoint was not found thirst.mixin.json:createcenterkitchen.MixinKettlePoint [Info: 2024-03-27 11:57:27.4848191: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: Error loading class: toughasnails/item/EmptyCanteenItem (java.lang.ClassNotFoundException: toughasnails.item.EmptyCanteenItem) [Info: 2024-03-27 11:57:27.4849018: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: @Mixin target toughasnails.item.EmptyCanteenItem was not found thirst.mixin.json:toughasnails.MixinEmptyCanteenItem [Info: 2024-03-27 11:57:27.4861363: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: Error loading class: toughasnails/thirst/ThirstHandler (java.lang.ClassNotFoundException: toughasnails.thirst.ThirstHandler) [Info: 2024-03-27 11:57:27.4862100: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: @Mixin target toughasnails.thirst.ThirstHandler was not found thirst.mixin.json:toughasnails.MixinThirstHandler [Info: 2024-03-27 11:57:27.4874206: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: Error loading class: toughasnails/thirst/ThirstHelperImpl (java.lang.ClassNotFoundException: toughasnails.thirst.ThirstHelperImpl) [Info: 2024-03-27 11:57:27.4874793: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: @Mixin target toughasnails.thirst.ThirstHelperImpl was not found thirst.mixin.json:toughasnails.MixinThirstHelperImpl [Info: 2024-03-27 11:57:27.6484826: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: Error loading class: link/infra/indium/renderer/render/TerrainRenderContext (java.lang.ClassNotFoundException: link.infra.indium.renderer.render.TerrainRenderContext) [Info: 2024-03-27 11:57:27.8142632: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info Mixin for class net.minecraft.client.model.ElytraModel applied successfully [Info: 2024-03-27 11:57:27.8144135: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info Mixin for class net.minecraft.client.renderer.entity.layers.ElytraLayer applied successfully [Info: 2024-03-27 11:57:27.8146081: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info Mixin for class com.hidoni.customizableelytra.renderers.models.ElytraWingModel was not applied [Info: 2024-03-27 11:57:27.8147971: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info Mixin for class com.hidoni.customizableelytra.renderers.CustomizableElytraLayer was not applied [Info: 2024-03-27 11:57:27.8149394: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info Mixin for class net.minecraftcapes.player.render.ElytraLayer was not applied [Info: 2024-03-27 11:57:27.8150922: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info Mixin for class com.illusivesoulworks.elytraslot.client.ElytraSlotLayer was not applied [Info: 2024-03-27 11:57:27.8456524: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: Error loading class: com/min01/archaeology/item/BrushItem (java.lang.ClassNotFoundException: com.min01.archaeology.item.BrushItem) [Info: 2024-03-27 11:57:27.8458077: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [mixin/]: @Mixin target com.min01.archaeology.item.BrushItem was not found cataclysm.mixins.json:BrushItemMixin [Info: 2024-03-27 11:57:27.8539507: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/WARN] [IMixinConfigPlugin/]: Inventory Profiles Next: Doing our own dependency resolving! Because Forge is being Forge....: https://github.com/MinecraftForge/MinecraftForge/issues/9088 [Info: 2024-03-27 11:57:27.8540286: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:27] [main/INFO] [IMixinConfigPlugin/]: Inventory Profiles Next dependency resolution failed! Probably missing libIPN. [Info: 2024-03-27 11:57:28.2003755: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:28] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.2.1). [Info: 2024-03-27 11:57:29.1627147: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:29] [main/WARN] [mixin/]: Method overwrite conflict for getInventory in bettercombat.mixins.json:PlayerEntityAccessor, previously written by dev.tr7zw.firstperson.mixins.PlayerMixin. Skipping method. [Info: 2024-03-27 11:57:29.2384149: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:29] [main/WARN] [mixin/]: @Final field f_20945_:Ljava/util/Map; in vinery-common.mixins.json:LivingEntityMixin should be final [Info: 2024-03-27 11:57:29.6091563: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:29] [main/INFO] [mixin/]: BeforeConstant is searching for constants in method with descriptor (Lnet/minecraft/network/chat/Component;Z)V [Info: 2024-03-27 11:57:29.6093542: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:29] [main/INFO] [mixin/]: BeforeConstant found INTEGER constant: value = 0, intValue = null [Info: 2024-03-27 11:57:29.6094336: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:29] [main/INFO] [mixin/]: BeforeConstant found a matching constant TYPE at ordinal 0 [Info: 2024-03-27 11:57:29.6094736: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:29] [main/INFO] [mixin/]: BeforeConstant found Insn [ICONST_0] [Info: 2024-03-27 11:57:29.6094989: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:29] [main/INFO] [mixin/]: BeforeConstant found INTEGER constant: value = 60, intValue = null [Info: 2024-03-27 11:57:29.6095244: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:29] [main/INFO] [mixin/]: BeforeConstant found a matching constant TYPE at ordinal 1 [Info: 2024-03-27 11:57:29.6095606: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:29] [main/INFO] [mixin/]: BeforeConstant found IntInsn 60 [Info: 2024-03-27 11:57:29.8168030: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info [18:57:29] [main/WARN] [mixin/]: Static binding violation: PRIVATE @Overwrite method m_172993_ in rubidium.mixins.json:features.chunk_rendering.MixinWorldRenderer cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [Info: 2024-03-27 11:57:29.9808131: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info Exception in thread "main" java.lang.RuntimeException: java.lang.reflect.InvocationTargetException [Info: 2024-03-27 11:57:29.9809735: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:32) [Info: 2024-03-27 11:57:29.9810330: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [Info: 2024-03-27 11:57:29.9810519: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [Info: 2024-03-27 11:57:29.9810693: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [Info: 2024-03-27 11:57:29.9810854: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [Info: 2024-03-27 11:57:29.9811005: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [Info: 2024-03-27 11:57:29.9811200: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [Info: 2024-03-27 11:57:29.9811369: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [Info: 2024-03-27 11:57:29.9812703: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info Caused by: java.lang.reflect.InvocationTargetException [Info: 2024-03-27 11:57:29.9813038: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [Info: 2024-03-27 11:57:29.9813201: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) [Info: 2024-03-27 11:57:29.9813353: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [Info: 2024-03-27 11:57:29.9813499: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at java.base/java.lang.reflect.Method.invoke(Method.java:568) [Info: 2024-03-27 11:57:29.9813715: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:27) [Info: 2024-03-27 11:57:29.9813930: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [Info: 2024-03-27 11:57:29.9814087: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info ... 7 more [Info: 2024-03-27 11:57:29.9814247: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered [Info: 2024-03-27 11:57:29.9814388: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) [Info: 2024-03-27 11:57:29.9814553: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) [Info: 2024-03-27 11:57:29.9814758: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) [Info: 2024-03-27 11:57:29.9814906: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) [Info: 2024-03-27 11:57:29.9815051: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) [Info: 2024-03-27 11:57:29.9815247: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) [Info: 2024-03-27 11:57:29.9815389: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) [Info: 2024-03-27 11:57:29.9815535: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) [Info: 2024-03-27 11:57:29.9815679: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) [Info: 2024-03-27 11:57:29.9815848: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) [Info: 2024-03-27 11:57:29.9816003: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) [Info: 2024-03-27 11:57:29.9816252: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) [Info: 2024-03-27 11:57:29.9816391: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at cpw.mods.securejarhandler/cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) [Info: 2024-03-27 11:57:29.9816530: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) [Info: 2024-03-27 11:57:29.9816670: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at TRANSFORMER/net.optifine/net.optifine.reflect.Reflector.<clinit>(Reflector.java:278) [Info: 2024-03-27 11:57:29.9816833: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at TRANSFORMER/[email protected]/net.minecraft.CrashReport.m_127526_(CrashReport.java:175) [Info: 2024-03-27 11:57:29.9816974: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at TRANSFORMER/[email protected]/net.minecraft.CrashReport.m_127529_(CrashReport.java:345) [Info: 2024-03-27 11:57:29.9817107: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.m_239872_(Main.java:144) [Info: 2024-03-27 11:57:29.9817246: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.main(Main.java:51) [Info: 2024-03-27 11:57:29.9817379: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info ... 13 more [Info: 2024-03-27 11:57:29.9817557: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Critical injection failure: Redirector redirectGetFancyWeather()Z in rubidium.mixins.json:features.options.MixinWorldRenderer failed injection check, (0/1) succeeded. Scanned 1 target(s). Using refmap rubidium-mixins-refmap.json [Info: 2024-03-27 11:57:29.9817702: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.injection.struct.InjectionInfo.postInject(InjectionInfo.java:468) [Info: 2024-03-27 11:57:29.9817844: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1362) [Info: 2024-03-27 11:57:29.9818030: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1051) [Info: 2024-03-27 11:57:29.9818179: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:400) [Info: 2024-03-27 11:57:29.9818367: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:325) [Info: 2024-03-27 11:57:29.9818520: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383) [Info: 2024-03-27 11:57:29.9818673: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365) [Info: 2024-03-27 11:57:29.9818836: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info at MC-BOOTSTRAP/org.spongepowered.mixin/org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) [Info: 2024-03-27 11:57:29.9819045: MinecraftJavaLoggingContext.cpp(65)] Game/game () Info ... 31 more [Info: 2024-03-27 11:58:11.0469917: Xal.lib(0)] XAL: [op 185662640] GetTokenAndSignature being run for usertype: User [Info: 2024-03-27 11:58:11.0471121: Xal.lib(0)] XAL: [op 185662640] Operation GetTokenAndSignature is starting [Info: 2024-03-27 11:58:11.0472116: Xal.lib(0)] XAL: [op 185662640] with CV 's7uWKQ0ltxUQNmPM.17.1' [Info: 2024-03-27 11:58:11.0473526: Xal.lib(0)] XAL: [op 10006736] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:58:11.0474007: Xal.lib(0)] XAL: [op 10006736] with CV 's7uWKQ0ltxUQNmPM.17.1' [Info: 2024-03-27 11:58:11.0475386: Xal.lib(0)] XAL: [op 181895504] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:58:11.0475720: Xal.lib(0)] XAL: [op 181895504] with CV 's7uWKQ0ltxUQNmPM.17.1' [Info: 2024-03-27 11:58:11.0476032: Xal.lib(0)] XAL: [op 181895504] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:58:11.0478752: Xal.lib(0)] XAL: [op 180867560] Operation GetDtoken is starting [Info: 2024-03-27 11:58:11.0479190: Xal.lib(0)] XAL: [op 180867560] with CV 's7uWKQ0ltxUQNmPM.17.1' [Info: 2024-03-27 11:58:11.0479510: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000008CD14F69C0) [Info: 2024-03-27 11:58:11.0479916: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:54:57.6340000Z, systemNow:2024-03-27T11:58:11.0460000Z} [Info: 2024-03-27 11:58:11.0480415: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000008CD14F69C0) [Info: 2024-03-27 11:58:11.0480857: Xal.lib(0)] XAL: [op 180867560] Operation GetDtoken succeeded. [Info: 2024-03-27 11:58:11.0482577: Xal.lib(0)] XAL: [op 10006736] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:58:11.0489886: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000008CD15F3774) [Info: 2024-03-27 11:58:11.0490277: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Xtoken, relyingParty:http://xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:true hasData:true, isValid:true, xerr:0, expiry:2024-03-28T03:49:55.2170000Z, now:2024-03-27T11:54:57.6340000Z, systemNow:2024-03-27T11:58:11.0460000Z} [Info: 2024-03-27 11:58:11.0490525: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000008CD15F3774) [Info: 2024-03-27 11:58:11.0491274: Xal.lib(0)] XAL: [op 67818640] Operation GetXtoken is starting [Info: 2024-03-27 11:58:11.0491474: Xal.lib(0)] XAL: [op 67818640] with CV 's7uWKQ0ltxUQNmPM.17.1' [Info: 2024-03-27 11:58:11.0492188: Xal.lib(0)] XAL: [op 183214856] Operation InitializeTokenStack is starting [Info: 2024-03-27 11:58:11.0492392: Xal.lib(0)] XAL: [op 183214856] with CV 's7uWKQ0ltxUQNmPM.17.1' [Info: 2024-03-27 11:58:11.0493114: Xal.lib(0)] XAL: [op 181895504] Operation LoadDeviceIdentity is starting [Info: 2024-03-27 11:58:11.0493335: Xal.lib(0)] XAL: [op 181895504] with CV 's7uWKQ0ltxUQNmPM.17.1' [Info: 2024-03-27 11:58:11.0493511: Xal.lib(0)] XAL: [op 181895504] Operation LoadDeviceIdentity succeeded. [Info: 2024-03-27 11:58:11.0494660: Xal.lib(0)] XAL: [op 183101184] Operation GetDtoken is starting [Info: 2024-03-27 11:58:11.0494854: Xal.lib(0)] XAL: [op 183101184] with CV 's7uWKQ0ltxUQNmPM.17.1' [Info: 2024-03-27 11:58:11.0495044: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000008CD1672524) [Info: 2024-03-27 11:58:11.0495289: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2024-04-04T12:07:26.0240000Z, now:2024-03-27T11:54:57.6340000Z, systemNow:2024-03-27T11:58:11.0460000Z} [Info: 2024-03-27 11:58:11.0495532: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (0000008CD1672524) [Info: 2024-03-27 11:58:11.0495739: Xal.lib(0)] XAL: [op 183101184] Operation GetDtoken succeeded. [Info: 2024-03-27 11:58:11.0496398: Xal.lib(0)] XAL: [op 183214856] Operation InitializeTokenStack succeeded. [Info: 2024-03-27 11:58:11.0497085: Xal.lib(0)] XAL: [op 67818640] Operation GetXtoken succeeded. [Info: 2024-03-27 11:58:11.0497795: Xal.lib(0)] XAL: [op 185662640] Operation GetTokenAndSignature succeeded. [Info: 2024-03-27 11:58:11.0501075: NetQueue.cpp(213)] NetQueue: Starting net action userpresence.xboxlive.com [Info: 2024-03-27 11:58:12.0899834: CurlNetQueue.cpp(578)] NetQueue: Primary ip: 52.183.58.171, Host: userpresence.xboxlive.com [Info: 2024-03-27 11:58:12.0900513: NetQueue.cpp(102)] NetQueue: Action finished: userpresence.xboxlive.com [Info: 2024-03-27 11:58:12.0901268: NetQueue.cpp(133)] Action finalized: userpresence.xboxlive.com [Info: 2024-03-27 11:59:05.2526887: ProductInstance.cpp(138)] Do not allow remote update check, time is not due, [dungeons-retail-Piston] [Info: 2024-03-27 11:59:05.5563407: ProductInstance.cpp(114)] Allow remote update check, no entry found [java-retail-Piston] [Info: 2024-03-27 11:59:44.0237318: client_handler.cpp(862)] NotifyBrowserClosing [Info: 2024-03-27 11:59:44.0240912: browser_window.cpp(61)] OnBrowserClosing [Info: 2024-03-27 11:59:44.0324241: client_handler.cpp(891)] NotifyBrowserClosed [Info: 2024-03-27 11:59:44.0324722: browser_window.cpp(68)] OnBrowserClosed (with delegate) [Info: 2024-03-27 11:59:44.0325721: root_window_manager.cpp(288)] A log window has been closed: 18E18A88 [Info: 2024-03-27 11:59:44.0326122: root_window_manager.cpp(335)] All windows are gone. [Info: 2024-03-27 11:59:44.0326400: root_window_manager.cpp(337)] Checking if we can close the application... [Info: 2024-03-27 11:59:44.0326750: main_context.cpp(426)] Hiding launcher! [Info: 2024-03-27 11:59:44.0339965: LauncherAppBrowser.cpp(82)] Will launch a Chromium subprocess with command line string: "<APPDIR>\Minecraft Launcher\MinecraftLauncher.exe" --type=gpu-process --no-sandbox --log-severity=info --lang=en-US --user-data-dir="%USERPROFILE%\AppData\Local\CEF\User Data" --launcherui --workdir="<WORKDIR>\.minecraft" /prefetch:2 [Info: 2024-03-27 11:59:44.0349779: LauncherAppBrowser.cpp(82)] Will launch a Chromium subprocess with command line string: "<APPDIR>\Minecraft Launcher\MinecraftLauncher.exe" --type=utility --utility-sub-type=storage.mojom.StorageService --lang=en-US --service-sandbox-type=utility --no-sandbox --log-severity=info --lang=en-US --user-data-dir="%USERPROFILE%\AppData\Local\CEF\User Data" --launcherui --workdir="<WORKDIR>\.minecraft" /prefetch:8 -
when it's freeze, i can still move around(also FPS act normally), breaking block(i just can't get the block that i break), and the mob that spawn in the first few second that was't freeze yet they won't move and take damage I am playing 1.19.2 Forge:43.3.9, and it's a selfmake mod pack I had tried to remove every mod that could affect nether, but it still didn't work
-
I'm trying to create a mod for version 1.19 of Minecraft, but every time I run it I get this error, I'm new to this area... I've already reviewed the code several times and I can't find the problem. Can someone help me. Link for image error: image [21:26:44] [main/INFO]: ModLauncher running: args [--username, BielNTD64, --version, Test my MOD, --gameDir, D:\.minecraft\versions\Test my MOD, --assetsDir, D:\.minecraft\assets, --assetIndex, 1.19, --uuid, 53008a9d-c18d-11e8-8716-002590a1379b, --accessToken, ????????, --clientId, null, --xuid, null, --userType, mojang, --versionType, release, --width, 925, --height, 530, --launchTarget, forgeclient, --fml.forgeVersion, 41.1.0, --fml.mcVersion, 1.19, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220607.102129] [21:26:44] [main/INFO]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.3 by Microsoft; OS Windows 10 arch amd64 version 10.0 [21:26:44] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/D:/.minecraft/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2396!/ Service=ModLauncher Env=CLIENT [21:26:44] [main/ERROR]: Invalid modId found in file D:\.minecraft\versions\Test my MOD\mods\pasmod-0.0-1.jar - PasMod does not match the standard: ^[a-z][a-z0-9_]{1,63}$ [21:26:44] [main/ERROR]: Locator {mods folder locator at D:\.minecraft\versions\Test my MOD\mods} found an invalid mod file net.minecraftforge.fml.loading.moddiscovery.ModFileInfo@1f651cd8 net.minecraftforge.fml.loading.moddiscovery.InvalidModFileException: Invalid modId found : PasMod (pasmod-0.0-1.jar) at net.minecraftforge.fml.loading.moddiscovery.ModInfo.<init>(ModInfo.java:61) ~[fmlloader-1.19-41.1.0.jar%2399!/:?] at net.minecraftforge.fml.loading.moddiscovery.ModFileInfo.lambda$new$2(ModFileInfo.java:69) ~[fmlloader-1.19-41.1.0.jar%2399!/:?] at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?] at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?] at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?] at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?] at net.minecraftforge.fml.loading.moddiscovery.ModFileInfo.<init>(ModFileInfo.java:70) ~[fmlloader-1.19-41.1.0.jar%2399!/:?] at net.minecraftforge.fml.loading.moddiscovery.ModFileParser.modsTomlParser(ModFileParser.java:47) ~[fmlloader-1.19-41.1.0.jar%2399!/:?] at net.minecraftforge.fml.loading.moddiscovery.ModFileParser.readModList(ModFileParser.java:31) ~[fmlloader-1.19-41.1.0.jar%2399!/:?] at net.minecraftforge.fml.loading.moddiscovery.ModFile.<init>(ModFile.java:79) ~[fmlloader-1.19-41.1.0.jar%2399!/:?] at net.minecraftforge.fml.loading.moddiscovery.ModFile.<init>(ModFile.java:68) ~[fmlloader-1.19-41.1.0.jar%2399!/:?] at net.minecraftforge.fml.loading.moddiscovery.AbstractModProvider.createMod(AbstractModProvider.java:52) ~[fmlloader-1.19-41.1.0.jar%2399!/:?] at net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileModLocator.lambda$scanMods$0(AbstractJarFileModLocator.java:19) ~[fmlloader-1.19-41.1.0.jar%2399!/:?] at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?] at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?] at java.util.stream.SortedOps$RefSortingSink.end(SortedOps.java:395) ~[?:?] at java.util.stream.Sink$ChainedReference.end(Sink.java:258) ~[?:?] at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:510) ~[?:?] at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:575) ~[?:?] at java.util.stream.AbstractPipeline.evaluateToArrayNode(AbstractPipeline.java:260) ~[?:?] at java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:616) ~[?:?] at java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:622) ~[?:?] at java.util.stream.ReferencePipeline.toList(ReferencePipeline.java:627) ~[?:?] at net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileModLocator.scanMods(AbstractJarFileModLocator.java:19) ~[fmlloader-1.19-41.1.0.jar%2399!/:?] at net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer.discoverMods(ModDiscoverer.java:74) ~[fmlloader-1.19-41.1.0.jar%2399!/:?] at net.minecraftforge.fml.loading.FMLLoader.beginModScan(FMLLoader.java:166) ~[fmlloader-1.19-41.1.0.jar%2399!/:1.0] at net.minecraftforge.fml.loading.FMLServiceProvider.beginScanning(FMLServiceProvider.java:86) ~[fmlloader-1.19-41.1.0.jar%2399!/:1.0] at cpw.mods.modlauncher.TransformationServiceDecorator.runScan(TransformationServiceDecorator.java:112) ~[modlauncher-10.0.8.jar%2387!/:?] at cpw.mods.modlauncher.TransformationServicesHandler.lambda$runScanningTransformationServices$8(TransformationServicesHandler.java:100) ~[modlauncher-10.0.8.jar%2387!/:?] at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) [?:?] at java.util.HashMap$ValueSpliterator.forEachRemaining(HashMap.java:1779) [?:?] at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) [?:?] at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) [?:?] at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:575) [?:?] at java.util.stream.AbstractPipeline.evaluateToArrayNode(AbstractPipeline.java:260) [?:?] at java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:616) [?:?] at java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:622) [?:?] at java.util.stream.ReferencePipeline.toList(ReferencePipeline.java:627) [?:?] at cpw.mods.modlauncher.TransformationServicesHandler.runScanningTransformationServices(TransformationServicesHandler.java:102) [modlauncher-10.0.8.jar%2387!/:?] at cpw.mods.modlauncher.TransformationServicesHandler.initializeTransformationServices(TransformationServicesHandler.java:55) [modlauncher-10.0.8.jar%2387!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:87) [modlauncher-10.0.8.jar%2387!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2387!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2387!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2387!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] [21:26:44] [main/WARN]: Mod file D:\.minecraft\libraries\net\minecraftforge\fmlcore\1.19-41.1.0\fmlcore-1.19-41.1.0.jar is missing mods.toml file [21:26:44] [main/WARN]: Mod file D:\.minecraft\libraries\net\minecraftforge\javafmllanguage\1.19-41.1.0\javafmllanguage-1.19-41.1.0.jar is missing mods.toml file [21:26:44] [main/WARN]: Mod file D:\.minecraft\libraries\net\minecraftforge\lowcodelanguage\1.19-41.1.0\lowcodelanguage-1.19-41.1.0.jar is missing mods.toml file [21:26:44] [main/WARN]: Mod file D:\.minecraft\libraries\net\minecraftforge\mclanguage\1.19-41.1.0\mclanguage-1.19-41.1.0.jar is missing mods.toml file [21:26:44] [main/INFO]: Found mod file fmlcore-1.19-41.1.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@6f8d7714 [21:26:44] [main/INFO]: Found mod file javafmllanguage-1.19-41.1.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@6f8d7714 [21:26:44] [main/INFO]: Found mod file lowcodelanguage-1.19-41.1.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@6f8d7714 [21:26:44] [main/INFO]: Found mod file mclanguage-1.19-41.1.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@6f8d7714 [21:26:44] [main/INFO]: Found mod file client-1.19-20220607.102129-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@6f8d7714 [21:26:44] [main/INFO]: Found mod file forge-1.19-41.1.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@6f8d7714 [21:26:44] [main/INFO]: No dependencies to load found. Skipping! [21:26:46] [main/INFO]: Launching target 'forgeclient' with arguments [--version, Test my MOD, --gameDir, D:\.minecraft\versions\Test my MOD, --assetsDir, D:\.minecraft\assets, --uuid, 53008a9d-c18d-11e8-8716-002590a1379b, --username, BielNTD64, --assetIndex, 1.19, --accessToken, ????????, --clientId, null, --xuid, null, --userType, mojang, --versionType, release, --width, 925, --height, 530] [21:26:50] [pool-3-thread-1/INFO]: Building unoptimized datafixer [21:26:52] [Render thread/WARN]: Assets URL 'union:/D:/.minecraft/libraries/net/minecraft/client/1.19-20220607.102129/client-1.19-20220607.102129-srg.jar%23150!/assets/.mcassetsroot' uses unexpected schema [21:26:52] [Render thread/WARN]: Assets URL 'union:/D:/.minecraft/libraries/net/minecraft/client/1.19-20220607.102129/client-1.19-20220607.102129-srg.jar%23150!/data/.mcassetsroot' uses unexpected schema [21:26:52] [Render thread/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' [21:26:53] [Render thread/ERROR]: Failed to verify authentication com.mojang.authlib.exceptions.InvalidCredentialsException: Status: 401 at com.mojang.authlib.exceptions.MinecraftClientHttpException.toAuthenticationException(MinecraftClientHttpException.java:56) ~[authlib-3.5.41.jar%23126!/:?] at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:140) ~[authlib-3.5.41.jar%23126!/:?] at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.<init>(YggdrasilUserApiService.java:47) ~[authlib-3.5.41.jar%23126!/:?] at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.createUserApiService(YggdrasilAuthenticationService.java:158) ~[authlib-3.5.41.jar%23126!/:?] at net.minecraft.client.Minecraft.m_193585_(Minecraft.java:615) ~[client-1.19-20220607.102129-srg.jar%23150!/:?] at net.minecraft.client.Minecraft.<init>(Minecraft.java:392) ~[client-1.19-20220607.102129-srg.jar%23150!/:?] at net.minecraft.client.main.Main.main(Main.java:170) ~[client-1.19-20220607.102129-srg.jar%23150!/:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:27) ~[fmlloader-1.19-41.1.0.jar%2399!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2387!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2387!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2387!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2387!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2387!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2387!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2387!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] Caused by: com.mojang.authlib.exceptions.MinecraftClientHttpException: Status: 401 at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:85) ~[authlib-3.5.41.jar%23126!/:?] at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:48) ~[authlib-3.5.41.jar%23126!/:?] at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:121) ~[authlib-3.5.41.jar%23126!/:?] ... 18 more [21:26:53] [Render thread/INFO]: Setting user: BielNTD64 [21:26:53] [Render thread/INFO]: Backend library: LWJGL version 3.3.1 build 7 [21:26:54] [modloading-worker-0/INFO]: Forge mod loading, version 41.1.0, for MC 1.19 with MCP 20220607.102129 [21:26:54] [modloading-worker-0/INFO]: MinecraftForge v41.1.0 Initialized [21:26:55] [Worker-Main-1/ERROR]: Failed to retrieve profile key pair java.io.IOException: Could not retrieve profile key pair at net.minecraft.client.multiplayer.ProfileKeyPairManager.m_233789_(ProfileKeyPairManager.java:137) ~[client-1.19-20220607.102129-srg.jar%23150!/:?] at net.minecraft.client.multiplayer.ProfileKeyPairManager.m_233796_(ProfileKeyPairManager.java:63) ~[client-1.19-20220607.102129-srg.jar%23150!/:?] at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) [?:?] at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) [?:?] at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] [21:26:55] [Render thread/INFO]: Reloading ResourceManager: Default, Mod Resources [21:27:08] [Forge Version Check/INFO]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json [21:27:09] [Forge Version Check/INFO]: [forge] Found status: UP_TO_DATE Current: 41.1.0 Target: null [21:27:10] [Render thread/WARN]: Missing sound for event: minecraft:item.goat_horn.play [21:27:10] [Render thread/WARN]: Missing sound for event: minecraft:entity.goat.screaming.horn_break [21:27:10] [Render thread/INFO]: OpenAL initialized on device OpenAL Soft on Alto-falantes (3- Realtek High Definition Audio) [21:27:10] [Render thread/INFO]: Sound engine started [21:27:10] [Render thread/INFO]: Created: 1024x512x4 minecraft:textures/atlas/blocks.png-atlas [21:27:10] [Render thread/INFO]: Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas [21:27:10] [Render thread/INFO]: Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas [21:27:10] [Render thread/INFO]: Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas [21:27:10] [Render thread/INFO]: Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas [21:27:10] [Render thread/INFO]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas [21:27:10] [Render thread/INFO]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas [21:27:12] [Render thread/WARN]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. [21:27:12] [Render thread/INFO]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas [21:27:12] [Render thread/INFO]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas [21:27:12] [Render thread/INFO]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas
-
Sorry if this may not be a bug if its not can you correct me and ill post it in mod forums. But recently I started making a mod pack for me and my friends to play together on but when I went in the world to test it nothing took damage attacking wouldn't cause dmg, TNT explosions wouldn't cause dmg, lava wouldn't cause dmg what could be causing this can anybody help, the version is also 1.19.2. mods: Serene Seasons (by TheAdubbz) YUNG's API (Forge) (by YUNGNICKYOUNG) MrCrayfish's Furniture Mod (by MrCrayfish) Refined Storage (by raoulvdberge) Flux Networks (by sonar_sonic) Upgrade Aquatic (by TeamAbnormals) Konkrete [Forge] (by Keksuccino) Applied Energistics 2 (by thetechnici4n) ESSENTIAL Mod (by SparkUniverse_) Mowzie's Mobs (by bobmowzie) Blueprint (by TeamAbnormals) Traveler's Backpack (by Tiviacz1337) Iron Chests (by ProgWML6) Sullys Mod (by GoesBySully) YUNG's Better Ocean Monuments (Forge) (by YUNGNICKYOUNG) Mandala's GUI - Dark mode (by cesar_zorak) Cucumber Library (by BlakeBr0) PolyLib (by Official_CreeperHost) Nether's Delight (by lumpazl) FTB Library (Forge) (by FTB) Cloth Config API (Fabric/Forge/NeoForge) (by shedaniel) FTB Essentials (Forge & Fabric) (by FTB) Not Enough Animations (by tr7zw) Clumps (by Jaredlll08) YUNG's Extras (Forge) (by YUNGNICKYOUNG) Farmer's Delight (by vectorwing) Just Enough Mekanism Multiblocks (by gisellevonbingen) Configured (by MrCrayfish) Woodworks (by TeamAbnormals) Ender Storage 1.8.+ (by covers1624) Comforts (Fabric/Forge/Quilt) (by TheIllusiveC4) Industrial Foregoing (by Buuz135) Architectury API (Fabric/Forge/NeoForge) (by shedaniel) Construction Wand (by ThetaDev) Deeper and Darker (by KyaniteMods) Twigs (by ninnih_) FTB Teams (Forge) (by FTB) Ice and Fire: Dragons (by sbom_xela) Health Overlay (Forge) (by Terrails) Bookshelf (by DarkhaxDev) Mystical Agradditions (by BlakeBr0) Neat (by Vazkii) Crafting Tweaks (by BlayTheNinth) OpenBlocks Elevator (by vsngarcia) Enchantment Descriptions (by DarkhaxDev) Puzzles Lib [Forge & Fabric] (by Fuzs) playerAnimator (by KosmX) Forbidden and Arcanus (by cesar_zorak) FTB Quests (Forge) (by FTB) Fusion (Connected Textures) (by SuperMartijn642) Allurement (by TeamAbnormals) Melody (by Keksuccino) Mekanism Generators (by bradyaidanc) MEGA Cells (by ninety) CodeChicken Lib 1.8.+ (by covers1624) Thermal Systeams (by ChiefArug) Chisels & Bits - For Forge (by AlgorithmX2) Caverns & Chasms (by TeamAbnormals) Just Enough Items (JEI) (by mezz) FTB Team Dimensions (by FTB) FastWorkbench (by Shadows_of_Fire) SuperMartijn642's Core Lib (by SuperMartijn642) Curios API (Forge/NeoForge) (by TheIllusiveC4) Trading Post [Forge & Fabric] (by Fuzs) Paragliders (by Tictim) Artifacts (by ochotonida) Personality (by TeamAbnormals) Eclectic Trove (Legendary Tooltips) (by Grend_G) Resourceful Lib (by ThatGravyBoat) YUNG's Better End Island (Forge) (by YUNGNICKYOUNG) JourneyMap (by techbrew) Bad Wither No Cookie - Reloaded (by Kreezxil) Advancement Plaques [Forge] (by Grend_G) Skin Layers 3D (Fabric/Forge) (by tr7zw) MmmMmmMmmMmm (Target Dummy) (by MehVahdJukaar) Runelic (by DarkhaxDev) Fast Leaf Decay (by olafskiii) Neruina - Ticking Entity Fixer (by bawnorton) Just Enough Resources (JER) (by way2muchnoise) Ars Nouveau (by baileyholl2) Thermal Foundation (by TeamCoFH) YUNG's Bridges (Forge) (by YUNGNICKYOUNG) YUNG's Better Strongholds (Forge) (by YUNGNICKYOUNG) Nature's Compass (by Chaosyr) FastFurnace (by Shadows_of_Fire) Lootr (Forge & NeoForge) (by Noobanidus) Iron Furnaces [FORGE] (by XenoMustache) Chipped (by terrariumearth) Waystones (by BlayTheNinth) The Endergetic Expansion (by TeamAbnormals) Create Crafts & Additions (by MRHminer) Macaw's Bridges (by sketch_macaw) FTB Backups 2 (by FTB) Villager Names (by Serilum) Moonlight Lib (by MehVahdJukaar) Mystical Adaptations (by focamacho) CraftTweaker Sixik Utils FTB Quest (Outdated) (by Sixik) Savage & Ravage (by TeamAbnormals) Enhanced Boss Bars (by Nakuring) Towns and Towers (by Biban_Auriu) Environmental (by TeamAbnormals) CoFH Core (by TeamCoFH) Just Enough Breeding (JEBr) (by Christofmeg) Every Compat (Wood Good) (by MehVahdJukaar) Dungeon Crawl (by xiroc_) Jade (by Snownee) Goblin Traders (by MrCrayfish) Mekanism (by bradyaidanc) Trash Cans (by SuperMartijn642) Atmospheric (by TeamAbnormals) ProjectExtended (by pupnewfster) FerriteCore ((Neo)Forge) (by malte0811) Apotheosis (by Shadows_of_Fire) Easy Magic [Forge & Fabric] (by Fuzs) Better Third Person (by Socolio) Extended Crafting (by BlakeBr0) Corpse (by henkelmax) Valhelsia Core (by ValhelsiaTeam) Falling Leaves (Forge) (by Cheaterpaul) Thermal Expansion (by TeamCoFH) GeckoLib (by Gecko) Storage Drawers (by Texelsaur) Sophisticated Backpacks (by P3pp3rF1y) Prism [Forge] (by Grend_G) YUNG's Better Jungle Temples (Forge) (by YUNGNICKYOUNG) Item Collectors (by SuperMartijn642) The Twilight Forest (by Benimatic) Create (by simibubi) Sophisticated Core (by P3pp3rF1y) Boss Refreshed (by lukidon) Security Craft (by Geforce132) The Aether (by TheAetherTeam) Clayworks (by TeamAbnormals) Iceberg [Forge] (by Grend_G) Legendary Tooltips [Forge] (by Grend_G) Bygone Nether (by izofar) Team ProjectE (by 6LeoY) YUNG's Better Dungeons (Forge) (by YUNGNICKYOUNG) Embeddium (by embeddedt) AttributeFix (by DarkhaxDev) Mystical Customization (by BlakeBr0) XP Tome (by bl4ckscor3) Incubation (by TeamAbnormals) Reliquary Reincarnations (by P3pp3rF1y) ProjectE (by SinKillerJ) Blue Skies (by ModdingLegacy) Aquaculture 2 (by Shadow) Boatload (by TeamAbnormals) McJtyLib (by McJty) Thermal Locomotion (by TeamCoFH) Thermal Cultivation (by TeamCoFH) SwingThroughGrass (by exidex) Resourceful Config (by ThatGravyBoat) YUNG's Better Nether Fortresses (Forge) (by YUNGNICKYOUNG) Controlling (by Jaredlll08) Thermal Integration (by TeamCoFH) FancyMenu (by Keksuccino) ChoiceTheorem's Overhauled Village (by ChoiceTheorem) Explorer's Compass (by Chaosyr) ModernFix (by embeddedt) Abnormals Delight (by TeamAbnormals) Building Gadgets (by Direwolf20) When Dungeons Arise - Forge! (by Aureljz) Create: Steam 'n' Rails (by mattentosh) CraftTweaker (by Jaredlll08) SuperMartijn642's Config Lib (by SuperMartijn642) Connected Glass (by SuperMartijn642) STONEBORN - Modded Compatibility GUI - SBMC (by Fr_z_n) Explorify – Dungeons & Structures (by bebebea_loste) Ender's Delight (by Furti_Two) YUNG's Better Mineshafts (Forge) (by YUNGNICKYOUNG) Mystical Agriculture (by BlakeBr0) Pet Cemetery (by TeamAbnormals) Balm (Forge Edition) (by BlayTheNinth) Collective (by Serilum) Croptopia (by thethonk) Structory (by botanydev) FTB Ultimine (Forge) (by FTB) Cyclops Core (by kroeser) Citadel (by sbom_xela) Guard Villagers (by almightytallestred) Supplementaries (by MehVahdJukaar) Titanium (by Buuz135) Cosmetic Armor Reworked (by LainMI) Placebo (by Shadows_of_Fire) YUNG's Better Witch Huts (Forge) (by YUNGNICKYOUNG) Mouse Tweaks (by YaLTeR) Creeper Overhaul (by joosh_7889) Naturalist (by Starfish_Studios) Autumnity (by TeamAbnormals) Macaw's Windows (by sketch_macaw) Berry Good (by TeamAbnormals) TerraBlender (Forge) (by TheAdubbz) RFTools Power (by McJty) Biomes O' Plenty (by Forstride) ConnectedTexturesMod (by tterrag1098) AppleSkin (by squeek502) RFTools Base (by McJty) Extreme Reactors (by ZeroNoRyouki) Thermal Dynamics (by TeamCoFH) Neapolitan (by TeamAbnormals) Boss Refreshed + Fresh Animations (by lukidon) Almost Unified (by AlmostReliable) Alex's Mobs (by sbom_xela) Mekanism Tools (by bradyaidanc) Mahou Tsukai (by stepcros) Structure Gel API (by ModdingLegacy) Buzzier Bees (by TeamAbnormals) Simple Magnets (by SuperMartijn642) Embellished Stone (Advancement Plaques) (by Grend_G) ZeroCore 2 (by ZeroNoRyouki) Embeddium/Rubidium Dynamic Lights (by Anthxny) Item Filters (by LatvianModder) Patchouli (by Vazkii) Terralith (by Starmute) YUNG's Better Desert Temples (Forge) (by YUNGNICKYOUNG) Wildfire's Female Gender Mod (Forge) (by WildfireMC) The One Probe (by McJty) Thermal Innovation (by TeamCoFH)
-
I created a Minecraft mod in 1.19.2 using 377 mods, but when I created the world there was an error in the datapack.However, when I clicked into the datapack's folder it was empty.What do I have to do? Thank you in advance. here is latest log [20Mar2024 20:22:24.047] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, Gloryleend, --version, 1.19.2-forge-43.3.8, --gameDir, C:\Users\Admin\AppData\Roaming\.minecraft, --assetsDir, C:\Users\Admin\AppData\Roaming\.minecraft\assets, --assetIndex, 1.19, --uuid, 0def4f98b36449fe8709ec30c8aa52e5, --accessToken, ????????, --clientId, MTRjNzI2OWYtZTY4ZS00MzI1LWFjYTctZTlkNWZiNmZjNjVk, --xuid, 2535429852098531, --userType, msa, --versionType, release, --launchTarget, forgeclient, --fml.forgeVersion, 43.3.8, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [20Mar2024 20:22:24.053] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.8 by Microsoft; OS Windows 10 arch amd64 version 10.0 [20Mar2024 20:22:26.709] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/Admin/AppData/Roaming/.minecraft/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2397!/ Service=ModLauncher Env=CLIENT [20Mar2024 20:22:27.029] [main/INFO] [MoreCrashInfoTransformerService/]: MoreCrashInfo TransformationService: C:\Users\Admin\AppData\Roaming\.minecraft\tmp\MoreCrashInfo-Locator-1.19.2.jar [20Mar2024 20:22:27.087] [main/INFO] [MoreCrashInfoTransformerService/]: Added C:\Users\Admin\AppData\Roaming\.minecraft\tmp\MoreCrashInfo-Locator-1.19.2.jar to SERVICE with Rebuilt [20Mar2024 20:22:27.250] [main/INFO] [MoreCrashInfoModLocator/]: Minecraft version 1.19.2 major 19 [20Mar2024 20:22:27.383] [main/INFO] [MoreCrashInfoModLocator/]: MoreCrashInfo ModLocator: C:\Users\Admin\AppData\Roaming\.minecraft\tmp\MoreCrashInfo-Core-1.19.2.jar [20Mar2024 20:22:28.854] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\Admin\AppData\Roaming\.minecraft\libraries\net\minecraftforge\fmlcore\1.19.2-43.3.8\fmlcore-1.19.2-43.3.8.jar is missing mods.toml file [20Mar2024 20:22:28.857] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\Admin\AppData\Roaming\.minecraft\libraries\net\minecraftforge\javafmllanguage\1.19.2-43.3.8\javafmllanguage-1.19.2-43.3.8.jar is missing mods.toml file [20Mar2024 20:22:28.861] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\Admin\AppData\Roaming\.minecraft\libraries\net\minecraftforge\lowcodelanguage\1.19.2-43.3.8\lowcodelanguage-1.19.2-43.3.8.jar is missing mods.toml file [20Mar2024 20:22:28.864] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\Admin\AppData\Roaming\.minecraft\libraries\net\minecraftforge\mclanguage\1.19.2-43.3.8\mclanguage-1.19.2-43.3.8.jar is missing mods.toml file [20Mar2024 20:22:29.110] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [20Mar2024 20:22:29.112] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: C:\Users\Admin\AppData\Roaming\.minecraft\mods\resourcefullib-forge-1.19.2-1.1.24.jar [20Mar2024 20:22:29.112] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: curios. Using Mod File: C:\Users\Admin\AppData\Roaming\.minecraft\mods\curios-forge-1.19.2-5.1.6.1.jar [20Mar2024 20:22:29.112] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 20 dependencies adding them to mods collection [20Mar2024 20:22:29.286] [main/INFO] [Configured Defaults/]: Applying default files... [20Mar2024 20:22:36.494] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [20Mar2024 20:22:36.638] [main/ERROR] [mixin/]: Mixin config necronomicon.forge.mixins.json does not specify "minVersion" property [20Mar2024 20:22:36.640] [main/ERROR] [mixin/]: Mixin config luna.mixins.json does not specify "minVersion" property [20Mar2024 20:22:36.667] [main/ERROR] [mixin/]: Mixin config lambdynlights.mixins.json does not specify "minVersion" property [20Mar2024 20:22:36.713] [main/ERROR] [mixin/]: Mixin config entity_model_features-common.mixins.json does not specify "minVersion" property [20Mar2024 20:22:36.715] [main/ERROR] [mixin/]: Mixin config entity_model_features.mixins.json does not specify "minVersion" property [20Mar2024 20:22:36.895] [main/ERROR] [mixin/]: Mixin config debugify-common.mixins.json does not specify "minVersion" property [20Mar2024 20:22:36.896] [main/ERROR] [mixin/]: Mixin config debugify.mixins.json does not specify "minVersion" property [20Mar2024 20:22:36.939] [main/ERROR] [mixin/]: Mixin config rottencreatures-common.mixins.json does not specify "minVersion" property [20Mar2024 20:22:36.940] [main/ERROR] [mixin/]: Mixin config rottencreatures.mixins.json does not specify "minVersion" property [20Mar2024 20:22:36.944] [main/ERROR] [mixin/]: Mixin config spruceui.mixins.json does not specify "minVersion" property [20Mar2024 20:22:37.020] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [20Mar2024 20:22:37.021] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [ca.spottedleaf.starlight.mixin.MixinConnector] [20Mar2024 20:22:37.022] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.aizistral.enigmaticlegacy.MixinConnector] [20Mar2024 20:22:37.025] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclient' with arguments [--version, 1.19.2-forge-43.3.8, --gameDir, C:\Users\Admin\AppData\Roaming\.minecraft, --assetsDir, C:\Users\Admin\AppData\Roaming\.minecraft\assets, --uuid, 0def4f98b36449fe8709ec30c8aa52e5, --username, Gloryleend, --assetIndex, 1.19, --accessToken, ????????, --clientId, MTRjNzI2OWYtZTY4ZS00MzI1LWFjYTctZTlkNWZiNmZjNjVk, --xuid, 2535429852098531, --userType, msa, --versionType, release] [20Mar2024 20:22:37.109] [main/INFO] [ModernFix/]: Loaded configuration file for ModernFix 5.9.3+mc1.19.2: 75 options available, 1 override(s) found [20Mar2024 20:22:37.110] [main/WARN] [ModernFix/]: Option 'mixin.bugfix.item_cache_flag' overriden (by mods [canary]) to 'false' [20Mar2024 20:22:37.111] [main/INFO] [ModernFix/]: Applying Nashorn fix [20Mar2024 20:22:37.123] [main/INFO] [ModernFix/]: Applied Forge config corruption patch [20Mar2024 20:22:37.133] [main/WARN] [mixin/]: Reference map 'vinery-forge-refmap.json' for vinery.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.160] [main/INFO] [Embeddium/]: Loaded configuration file for Embeddium: 31 options available, 0 override(s) found [20Mar2024 20:22:37.167] [main/WARN] [mixin/]: Reference map 'morevillagers-forge-forge-refmap.json' for morevillagers.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.179] [main/WARN] [mixin/]: Reference map 'yungsextras.refmap.json' for yungsextras.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.181] [main/WARN] [mixin/]: Reference map 'yungsextras.refmap.json' for yungsextras_forge.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.186] [main/WARN] [mixin/]: Reference map 'nitrogen_internals.refmap.json' for nitrogen_internals.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.206] [main/WARN] [mixin/]: Reference map 'EpheroLib-refmap.json' for epherolib.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.214] [main/WARN] [mixin/]: Reference map '${refmap_target}refmap.json' for corgilib.forge.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.216] [main/WARN] [mixin/]: Reference map 'fastpaintings-forge-refmap.json' for fastpaintings-forge.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.263] [main/WARN] [mixin/]: Reference map 'insanelib.refmap.json' for insanelib.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.355] [main/WARN] [mixin/]: Reference map 'entity_model_features_forge_1.19.2-forge-refmap.json' for entity_model_features.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.402] [main/WARN] [mixin/]: Reference map 'simplyswords-common-refmap.json' for simplyswords-common.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.403] [main/WARN] [mixin/]: Reference map 'simplyswords-forge-refmap.json' for simplyswords.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.465] [main/WARN] [mixin/]: Reference map 'lmft-forge-refmap.json' for lmft.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.508] [main/WARN] [mixin/]: Reference map 'idas.refmap.json' for idas.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.561] [main/WARN] [CanaryConfig/]: Option 'mixin.world.block_entity_ticking.world_border' requires 'mixin.util.world_border_listener=true' but found 'false'. Setting 'mixin.world.block_entity_ticking.world_border=false'. [20Mar2024 20:22:37.562] [main/INFO] [Canary/]: Loaded configuration file for Canary: 124 options available, 0 override(s) found [20Mar2024 20:22:37.575] [main/WARN] [mixin/]: Reference map 'v_slab_compat-common-refmap.json' for v_slab_compat-common.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.618] [main/INFO] [Sodium Extra Config/]: Loaded configuration file for Sodium Extra: 28 options available, 0 override(s) found [20Mar2024 20:22:37.623] [main/WARN] [mixin/]: Reference map 'smallships-forge-refmap.json' for smallships.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.635] [main/WARN] [mixin/]: Reference map 'netherdepthsupgrade.refmap.json' for netherdepthsupgrade.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.652] [main/WARN] [mixin/]: Reference map 'rottencreatures-forge-refmap.json' for rottencreatures.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:37.666] [main/WARN] [mixin/]: Reference map 'mvs-forge-refmap.json' for mvs-forge.mixins.json could not be read. If this is a development environment you can ignore this message [20Mar2024 20:22:38.637] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/inventory/AnvilMenu [20Mar2024 20:22:38.663] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [20Mar2024 20:22:38.669] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [20Mar2024 20:22:38.683] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [20Mar2024 20:22:38.683] [main/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [20Mar2024 20:22:38.709] [main/WARN] [mixin/]: Error loading class: com/hollingsworth/arsnouveau/common/items/SpellCrossbow (java.lang.ClassNotFoundException: com.hollingsworth.arsnouveau.common.items.SpellCrossbow) [20Mar2024 20:22:39.331] [main/WARN] [mixin/]: Error loading class: net/minecraft/world/World (java.lang.ClassNotFoundException: net.minecraft.world.World) [20Mar2024 20:22:39.332] [main/WARN] [mixin/]: Error loading class: net/minecraft/class_1150 (java.lang.ClassNotFoundException: net.minecraft.class_1150) [20Mar2024 20:22:39.334] [main/WARN] [mixin/]: Error loading class: net/minecraft/src/C_4977_ (java.lang.ClassNotFoundException: net.minecraft.src.C_4977_) [20Mar2024 20:22:39.336] [main/WARN] [mixin/]: Error loading class: net/minecraft/server/world/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.server.world.ServerWorld) [20Mar2024 20:22:39.338] [main/WARN] [mixin/]: Error loading class: net/minecraft/world/server/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.world.server.ServerWorld) [20Mar2024 20:22:39.339] [main/WARN] [mixin/]: Error loading class: net/minecraft/class_3218 (java.lang.ClassNotFoundException: net.minecraft.class_3218) [20Mar2024 20:22:39.340] [main/WARN] [mixin/]: Error loading class: net/minecraft/src/C_12_ (java.lang.ClassNotFoundException: net.minecraft.src.C_12_) [20Mar2024 20:22:39.342] [main/WARN] [mixin/]: Error loading class: net/minecraft/unmapped/C_bdwnwhiu (java.lang.ClassNotFoundException: net.minecraft.unmapped.C_bdwnwhiu) [20Mar2024 20:22:39.458] [main/INFO] [com.cupboard.Cupboard/]: Loaded config for: structureessentials.json [20Mar2024 20:22:39.561] [main/WARN] [mixin/]: Error loading class: com/min01/archaeology/item/BrushItem (java.lang.ClassNotFoundException: com.min01.archaeology.item.BrushItem) [20Mar2024 20:22:39.561] [main/WARN] [mixin/]: @Mixin target com.min01.archaeology.item.BrushItem was not found cataclysm.mixins.json:BrushItemMixin [20Mar2024 20:22:40.199] [main/INFO] [com.cupboard.Cupboard/]: Loaded config for: recipeessentials.json [20Mar2024 20:22:40.319] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Patching FishingHook#catchingFish [20Mar2024 20:22:40.511] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#getMaxLevel() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [20Mar2024 20:22:40.511] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#isTreasureOnly() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [20Mar2024 20:22:40.511] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#isTradeable() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [20Mar2024 20:22:40.521] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/item/EnchantedBookItem [20Mar2024 20:22:40.532] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#getMaxLevel() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [20Mar2024 20:22:40.532] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#isDiscoverable() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [20Mar2024 20:22:40.564] [main/WARN] [mixin/]: Error loading class: noobanidus/mods/lootr/config/ConfigManager (java.lang.ClassNotFoundException: noobanidus.mods.lootr.config.ConfigManager) [20Mar2024 20:22:40.590] [main/WARN] [mixin/]: Error loading class: net/darkhax/darkutils/features/charms/CharmEffects (java.lang.ClassNotFoundException: net.darkhax.darkutils.features.charms.CharmEffects) [20Mar2024 20:22:40.592] [main/WARN] [mixin/]: Error loading class: com/brandon3055/csg/ModEventHandler (java.lang.ClassNotFoundException: com.brandon3055.csg.ModEventHandler) [20Mar2024 20:22:40.650] [main/INFO] [memoryleakfix/]: [MemoryLeakFix] Will be applying 4 memory leak fixes! [20Mar2024 20:22:40.650] [main/INFO] [memoryleakfix/]: [MemoryLeakFix] Currently enabled memory leak fixes: [targetEntityLeak, entityMemoriesLeak, biomeTemperatureLeak, hugeScreenshotLeak] [20Mar2024 20:22:40.785] [main/WARN] [mixin/]: Error loading class: net/minecraft/src/C_4977_ (java.lang.ClassNotFoundException: net.minecraft.src.C_4977_) [20Mar2024 20:22:40.787] [main/WARN] [mixin/]: Error loading class: net/minecraft/src/C_4977_ (java.lang.ClassNotFoundException: net.minecraft.src.C_4977_) [20Mar2024 20:22:40.789] [main/WARN] [mixin/]: Error loading class: net/minecraft/server/world/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.server.world.ServerWorld) [20Mar2024 20:22:40.791] [main/WARN] [mixin/]: Error loading class: net/minecraft/world/server/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.world.server.ServerWorld) [20Mar2024 20:22:40.792] [main/WARN] [mixin/]: Error loading class: net/minecraft/class_3218 (java.lang.ClassNotFoundException: net.minecraft.class_3218) [20Mar2024 20:22:40.793] [main/WARN] [mixin/]: Error loading class: net/minecraft/src/C_12_ (java.lang.ClassNotFoundException: net.minecraft.src.C_12_) [20Mar2024 20:22:40.795] [main/WARN] [mixin/]: Error loading class: net/minecraft/unmapped/C_bdwnwhiu (java.lang.ClassNotFoundException: net.minecraft.unmapped.C_bdwnwhiu) [20Mar2024 20:22:40.797] [main/WARN] [mixin/]: Error loading class: net/minecraft/server/world/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.server.world.ServerWorld) [20Mar2024 20:22:40.799] [main/WARN] [mixin/]: Error loading class: net/minecraft/world/server/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.world.server.ServerWorld) [20Mar2024 20:22:40.800] [main/WARN] [mixin/]: Error loading class: net/minecraft/class_3218 (java.lang.ClassNotFoundException: net.minecraft.class_3218) [20Mar2024 20:22:40.802] [main/WARN] [mixin/]: Error loading class: net/minecraft/src/C_12_ (java.lang.ClassNotFoundException: net.minecraft.src.C_12_) [20Mar2024 20:22:40.804] [main/WARN] [mixin/]: Error loading class: net/minecraft/unmapped/C_bdwnwhiu (java.lang.ClassNotFoundException: net.minecraft.unmapped.C_bdwnwhiu) [20Mar2024 20:22:41.043] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.2.0). [20Mar2024 20:22:41.044] [main/WARN] [MixinExtras|Service/]: Found problematic active MixinExtras instance at ca.fxco.memoryleakfix.mixinextras (version 0.2.0-beta.8) [20Mar2024 20:22:41.044] [main/WARN] [MixinExtras|Service/]: Versions from 0.2.0-beta.1 to 0.2.0-beta.9 have limited support and it is strongly recommended to update. [20Mar2024 20:22:42.613] [main/INFO] [mixin/]: Mixing MixinPlayer from enigmaticlegacy.mixins.json into net.minecraft.world.entity.player.Player [20Mar2024 20:22:42.827] [main/INFO] [mixin/]: Mixing MixinLivingEntity from enigmaticlegacy.mixins.json into net.minecraft.world.entity.LivingEntity [20Mar2024 20:22:42.836] [main/WARN] [mixin/]: @Final field f_20945_:Ljava/util/Map; in vinery-common.mixins.json:LivingEntityMixin should be final [20Mar2024 20:22:42.949] [main/WARN] [mixin/]: @Redirect conflict. Skipping debugify-common.mixins.json:basic.client.mc228976.LivingEntityMixin->@Redirect::searchEntities(Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; with priority 1000, already redirected by canary.mixins.json:entity.collisions.unpushable_cramming.LivingEntityMixin->@Redirect::getOtherPushableEntities(Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; with priority 1000 [20Mar2024 20:22:43.315] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Patching EffectRenderingInventoryScreen#renderEffects [20Mar2024 20:22:43.328] [main/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Patching EffectRenderingInventoryScreen#renderEffects [20Mar2024 20:22:43.386] [main/INFO] [mixin/]: BeforeConstant is searching for constants in method with descriptor (Lnet/minecraft/network/chat/Component;Z)V [20Mar2024 20:22:43.386] [main/INFO] [mixin/]: BeforeConstant found INTEGER constant: value = 0, intValue = null [20Mar2024 20:22:43.386] [main/INFO] [mixin/]: BeforeConstant found a matching constant TYPE at ordinal 0 [20Mar2024 20:22:43.386] [main/INFO] [mixin/]: BeforeConstant found Insn [ICONST_0] [20Mar2024 20:22:43.387] [main/INFO] [mixin/]: BeforeConstant found INTEGER constant: value = 60, intValue = null [20Mar2024 20:22:43.387] [main/INFO] [mixin/]: BeforeConstant found a matching constant TYPE at ordinal 1 [20Mar2024 20:22:43.387] [main/INFO] [mixin/]: BeforeConstant found IntInsn 60 [20Mar2024 20:22:43.410] [main/INFO] [MoreCrashInfo/]: MoreCrashInfo Mod Loaded [20Mar2024 20:22:43.418] [main/INFO] [MoreCrashInfo/]: Forge CoreMods: | ID | Name | Source | Status | | -------------------- | ----------------------------------------- | -------------------------------- | ------ | | openpartiesandclaims | xaeroparties_core | openpartiesandclaims_core.js | Loaded | | apotheosis | apotheosis_attr/potion_gui_tooltips | potion_gui_tooltips.js | Loaded | | apotheosis | apotheosis_ench/ench_info_loot_redirector | ench_info_loot_redirector.js | Loaded | | apotheosis | apotheosis_ench/ench_info_redirector | ench_info_redirector.js | Loaded | | apotheosis | apotheosis_ench/fishing_hook | fishing_hook.js | Loaded | | placebo | placebo_get_ench_level_event | get_ench_level_event.js | Loaded | | placebo | placebo_get_ench_level_event_specific | get_ench_level_event_specific.js | Loaded | | sereneseasons | biome_transformer | temperature.js | Loaded | | forge | field_to_method | field_to_method.js | Loaded | | forge | field_to_instanceof | field_to_instanceof.js | Loaded | | forge | add_bouncer_method | add_bouncer_method.js | Loaded | | xaerominimap | xaerominimap_core | xaerominimap_core.js | Loaded | | twilightforest | seed | seed.js | Loaded | | twilightforest | maprendercontext | maprendercontext.js | Loaded | | twilightforest | music | music.js | Loaded | | twilightforest | multipart | multipart.js | Loaded | | twilightforest | foliage | foliage.js | Loaded | | twilightforest | mount | mount.js | Loaded | | twilightforest | book | book.js | Loaded | Mixin Configs: | Name | Mixin Package | Priority | Required | Targets | | -------------------------------------------------------------------- | --------------------------------------------------------- | -------- | -------- | ------- | | betterdungeons.mixins.json | com.yungnickyoung.minecraft.betterdungeons.mixin. | 1000 | true | 6 | | betterdungeons_forge.mixins.json | com.yungnickyoung.minecraft.betterdungeons.mixin. | 1000 | true | 0 | | publicguiannouncement.mixins.json | subaraki.pga.mixin. | 1000 | true | 1 | | entitycollisionfpsfix.mixins.json | corgitaco.entitycollisionfpsfix.mixin. | 1000 | true | 2 | | entitycollisionfpsfix.forge.mixins.json | corgitaco.entitycollisionfpsfix.mixin. | 1000 | true | 0 | | strawgolem.mixins.json | com.t2pellet.strawgolem.mixin. | 1000 | true | 7 | | strawgolem.forge.mixins.json | com.t2pellet.strawgolem.mixin. | 1000 | true | 2 | | doapi-common.mixins.json | de.cristelknight.doapi.mixin. | 1000 | true | 3 | | doapi.mixins.json | de.cristelknight.doapi.forge.mixin. | 1000 | true | 7 | | modernfix-common.mixins.json | org.embeddedt.modernfix.common.mixin. | 1000 | true | 48 | | modernfix-forge.mixins.json | org.embeddedt.modernfix.forge.mixin. | 1000 | true | 27 | | yungsapi.mixins.json | com.yungnickyoung.minecraft.yungsapi.mixin. | 1000 | true | 8 | | yungsapi_forge.mixins.json | com.yungnickyoung.minecraft.yungsapi.mixin. | 1000 | true | 1 | | clientcrafting.mixins.json | com.clientcrafting.mixin. | 1000 | false | 1 | | vinery-common.mixins.json | satisfyu.vinery.mixin. | 1000 | true | 10 | | vinery.mixins.json | satisfyu.vinery.forge.mixin. | 1000 | true | 0 | | apotheosis.mixins.json | shadows.apotheosis.mixin. | 1000 | true | 35 | | savage_and_ravage.mixins.json | com.teamabnormals.savage_and_ravage.core.mixin. | 1000 | true | 6 | | pickupnotifier.common.mixins.json | fuzs.pickupnotifier.mixin. | 1000 | true | 2 | | snowrealmagic.mixins.json | snownee.snow.mixin. | 1000 | true | 19 | | whatareyouvotingfor.mixins.json | com.alexander.whatareyouvotingfor.mixin. | 1000 | true | 2 | | betterfortresses.mixins.json | com.yungnickyoung.minecraft.betterfortresses.mixin. | 1000 | true | 6 | | betterfortresses_forge.mixins.json | com.yungnickyoung.minecraft.betterfortresses.mixin. | 1000 | true | 0 | | revampedwolf.mixins.json | baguchan.revampedwolf.mixin. | 1000 | true | 4 | | supplementaries-common.mixins.json | net.mehvahdjukaar.supplementaries.mixins. | 1000 | true | 63 | | supplementaries.mixins.json | net.mehvahdjukaar.supplementaries.mixins.forge. | 1000 | true | 20 | | rubidium.mixins.json | me.jellysquid.mods.sodium.mixin. | 1000 | true | 45 | | structure_gel.mixins.json | com.legacy.structure_gel.core.mixin. | 1000 | true | 14 | | handcrafted-common.mixins.json | earth.terrarium.handcrafted.mixin. | 1000 | true | 2 | | handcrafted.mixins.json | earth.terrarium.handcrafted.mixin.forge. | 1000 | true | 2 | | bcc.mixins.json | dev.wuffs.bcc.mixins. | 1000 | true | 4 | | morevillagers-common.mixins.json | com.samebutdifferent.morevillagers.mixin. | 1000 | true | 2 | | morevillagers.mixins.json | com.samebutdifferent.morevillagers.mixin.forge. | 1000 | true | 0 | | repurposed_structures.mixins.json | com.telepathicgrunt.repurposedstructures.mixin. | 1000 | true | 26 | | dungeons_plus.mixins.json | com.legacy.dungeons_plus.mixin. | 1000 | true | 3 | | transparent-common.mixins.json | com.trikzon.transparent.mixin. | 1000 | true | 6 | | highlighter.mixins.json | com.anthonyhilyard.highlighter.mixin. | 1000 | true | 4 | | lightspeed.mixins.json | com.ccr4ft3r.lightspeed.mixin. | 1000 | true | 18 | | fabric-renderer-api-v1.mixins.json | net.fabricmc.fabric.mixin.renderer. | 1000 | true | 4 | | fabric-renderer-api-v1.debughud.mixins.json | net.fabricmc.fabric.mixin.renderer.client.debughud. | 1000 | false | 1 | | fabric-renderer-indigo.mixins.json | net.fabricmc.fabric.mixin.client.indigo.renderer. | 1000 | true | 0 | | reforgium.mixins.json | link.infra.indium.mixin. | 1000 | true | 6 | | compatibility.mixins.json | asek3.mixin.compatibility. | 1000 | true | 1 | | yungsextras.mixins.json | com.yungnickyoung.minecraft.yungsextras.mixin. | 1000 | true | 0 | | yungsextras_forge.mixins.json | com.yungnickyoung.minecraft.yungsextras.mixin. | 1000 | true | 0 | | everpotion.mixins.json | snownee.everpotion.mixin. | 1000 | true | 2 | | cumulus_menus.mixins.json | com.aetherteam.cumulus.mixin.mixins. | 1000 | true | 4 | | netherchested.common.mixins.json | fuzs.netherchested.mixin. | 1000 | true | 1 | | betterendisland.mixins.json | com.yungnickyoung.minecraft.betterendisland.mixin. | 1000 | true | 7 | | betterendisland_forge.mixins.json | com.yungnickyoung.minecraft.betterendisland.mixin. | 1000 | true | 0 | | nitrogen_internals.mixins.json | com.aetherteam.nitrogen.mixin.mixins. | 1000 | true | 0 | | l2library.mixins.json | dev.xkmc.l2library.mixin. | 1000 | true | 2 | | krypton.mixins.json | me.steinborn.krypton.mixin. | 1000 | true | 14 | | betterjungletemples.mixins.json | com.yungnickyoung.minecraft.betterjungletemples.mixin. | 1000 | true | 7 | | betterjungletemples_forge.mixins.json | com.yungnickyoung.minecraft.betterjungletemples.mixin. | 1000 | true | 0 | | kiwi.mixins.json | snownee.kiwi.mixin. | 1000 | true | 16 | | mining_helmet.mixins.json | com.legacy.mining_helmet.mixin. | 1000 | true | 3 | | attributefix.mixins.json | net.darkhax.attributefix.mixin. | 1000 | true | 1 | | visualworkbench.common.mixins.json | fuzs.visualworkbench.mixin. | 1000 | true | 2 | | goblintraders.mixins.json | com.mrcrayfish.goblintraders.mixin. | 1000 | true | 5 | | caelus.mixins.json | top.theillusivec4.caelus.mixin.core. | 1000 | true | 4 | | paxi.mixins.json | com.yungnickyoung.minecraft.paxi.mixin. | 1000 | true | 1 | | paxi_forge.mixins.json | com.yungnickyoung.minecraft.paxi.mixin. | 1000 | true | 1 | | immersive_weathering-common.mixins.json | com.ordana.immersive_weathering.mixins. | 1000 | true | 23 | | immersive_weathering.mixins.json | com.ordana.immersive_weathering.mixins.forge. | 1000 | true | 7 | | fullstackwatchdog-common.mixins.json | com.telepathicgrunt.fullstackwatchdog.mixins. | 1000 | true | 1 | | integrated_api.mixins.json | com.craisinlord.integrated_api.mixin. | 1000 | true | 18 | | epherolib.mixins.json | com.epherical.epherolib.mixin. | 1000 | true | 0 | | mixins.cofhcore.json | cofh.core.mixin. | 1000 | true | 3 | | smoothchunk.mixins.json | com.smoothchunk.mixin. | 1000 | false | 3 | | terrablender.mixins.json | terrablender.mixin. | 1000 | true | 4 | | terrablender_forge.mixins.json | terrablender.mixin. | 1000 | true | 1 | | necronomicon.forge.mixins.json | elocindev.necronomicon.mixin.forge. | 1000 | false | 1 | | luna.mixins.json | gg.lunapixel.luna.mixins. | 1000 | false | 3 | | corgilib.mixins.json | corgitaco.corgilib.mixin. | 1000 | true | 7 | | corgilib.forge.mixins.json | corgitaco.corgilib.mixin. | 1000 | true | 0 | | fastpaintings.mixins.json | net.mehvahdjukaar.fastpaintings.mixins. | 1000 | true | 3 | | fastpaintings-forge.mixins.json | net.mehvahdjukaar.fastpaintings.mixins.forge. | 1000 | true | 0 | | ksyxis.mixins.json | ru.vidtu.ksyxis.mixins. | 1000 | false | 2 | | personality.mixins.json | com.teamabnormals.personality.core.mixin. | 1000 | true | 9 | | betterfpsdist.mixins.json | com.betterfpsdist.mixin. | 1000 | false | 2 | | paintings.mixins.json | subaraki.paintings.mixin. | 1000 | true | 1 | | paintings.forge.mixins.json | subaraki.paintings.mixin. | 1000 | true | 0 | | flywheel.mixins.json | com.jozufozu.flywheel.mixin. | 1000 | true | 21 | | flywheel.sodium.mixins.json | com.jozufozu.flywheel.mixin.sodium. | 1000 | true | 1 | | notenoughanimations.mixins.json | dev.tr7zw.notenoughanimations.mixins. | 1000 | true | 8 | | almostunified-common.mixins.json | com.almostreliable.unified.mixin. | 1000 | true | 6 | | forge-immediatelyfast-forge.mixins.json | forge.net.raphimc.immediatelyfast.forge.injection.mixins. | 1000 | true | 2 | | forge-immediatelyfast-common.mixins.json | forge.net.raphimc.immediatelyfast.injection.mixins. | 1000 | true | 22 | | lambdynlights.mixins.json | dev.lambdaurora.lambdynlights.mixin. | 1000 | true | 17 | | reeses-sodium-options.mixins.json | me.flashyreese.mods.reeses_sodium_options.mixin. | 1000 | true | 7 | | rebind_narrator.mixins.json | agency.highlysuspect.rebindnarrator.mixin. | 1000 | true | 1 | | weaponmaster_ydm.mixins.json | com.minecraftserverzone.weaponmaster.mixin. | 1000 | true | 3 | | uniquedungeons.mixin.json | com.becks.uniquedungeons.mixin. | 1000 | true | 7 | | galosphere.mixins.json | net.orcinus.galosphere.mixin. | 1000 | true | 12 | | betteroceanmonuments.mixins.json | com.yungnickyoung.minecraft.betteroceanmonuments.mixin. | 1000 | true | 5 | | betteroceanmonuments_forge.mixins.json | com.yungnickyoung.minecraft.betteroceanmonuments.mixin. | 1000 | true | 0 | | gpumemleakfix.mixins.json | com.gpumemleakfix.mixin. | 1000 | false | 1 | | mixin.excavated_variants_forge.json | io.github.lukebemish.excavated_variants.forge.mixin. | 1000 | true | 1 | | mixin.excavated_variants.json | io.github.lukebemish.excavated_variants.mixin. | 1000 | true | 4 | | insanelib.mixins.json | insane96mcp.insanelib.mixin. | 1000 | true | 0 | | connectedness.mixins.json | me.pepperbell.continuity.client.mixin. | 1000 | true | 14 | | structureessentials.mixins.json | com.structureessentials.mixin. | 1000 | false | 7 | | villagernames_forge.mixins.json | com.natamus.villagernames_common_forge.mixin. | 1000 | true | 1 | | placebo.mixins.json | shadows.placebo.mixin. | 1000 | true | 5 | | lootintegrations.mixins.json | com.lootintegrations.mixin. | 1000 | false | 1 | | bookshelf.common.mixins.json | net.darkhax.bookshelf.mixin. | 1000 | true | 18 | | bookshelf.forge.mixins.json | net.darkhax.bookshelf.mixin. | 1000 | true | 1 | | dolt_compat.mixins.json | com.dolthhaven.doltcompat.core.mixin. | 1000 | true | 13 | | progressivebosses.mixins.json | insane96mcp.progressivebosses.mixin. | 1000 | true | 12 | | takesapillage.mixins.json | com.izofar.takesapillage.mixin. | 1000 | true | 3 | | bygonenether.mixins.json | com.izofar.bygonenether.mixin. | 1000 | true | 7 | | carryon.mixins.json | tschipp.carryon.mixin. | 1000 | true | 5 | | carryon.forge.mixins.json | tschipp.carryon.mixin. | 1000 | true | 0 | | shieldexp.mixins.json | org.infernalstudios.shieldexp.mixin. | 1000 | true | 2 | | dragonfight.mixins.json | com.dragonfight.mixin. | 1000 | false | 5 | | konkrete.mixin.json | de.keksuccino.konkrete.mixin.client. | 1000 | true | 4 | | equipmentcompare.mixins.json | com.anthonyhilyard.equipmentcompare.mixin. | 1000 | true | 1 | | entity_model_features-common.mixins.json | traben.entity_model_features.mixin. | 1000 | true | 24 | | entity_model_features.mixins.json | traben.entity_model_features.forge.mixin. | 1000 | true | 0 | | entity_texture_features-forge.mixins.json | traben.entity_texture_features.forge.mixin. | 1000 | true | 2 | | entity_texture_features-common.mixins.json | traben.entity_texture_features.mixin. | 1000 | true | 52 | | berrybush_magic.mixins.json | net.berrybush_magic_extra.mixin. | 1000 | true | 1 | | boatiview.mixins.json | me.soapsuds.boatiview.mixin. | 1000 | true | 1 | | eeeabsmobs.mixins.json | com.eeeab.eeeabsmobs.mixin. | 1000 | true | 1 | | bobby.mixins.json | de.johni0702.minecraft.bobby.mixin. | 1000 | true | 16 | | citadel.mixins.json | com.github.alexthe666.citadel.mixin. | 1000 | true | 17 | | cataclysm.mixins.json | com.github.L_Ender.cataclysm.mixin. | 1000 | true | 13 | | memorysettings.mixins.json | com.memorysettings.mixin. | 1000 | false | 1 | | servercountryflags.mixins.json | me.khajiitos.servercountryflags.common.mixin. | 1000 | true | 5 | | pet_cemetery.mixins.json | com.teamabnormals.pet_cemetery.core.mixin. | 1000 | true | 2 | | nightconfigfixes.forge.mixins.json | fuzs.nightconfigfixes.mixin. | 1000 | true | 2 | | spirit.common.mixins.json | me.codexadrian.spirit.mixin. | 1000 | true | 5 | | starterkit_forge.mixins.json | com.natamus.starterkit.forge.mixin. | 1000 | true | 0 | | twilightdelight.mixins.json | dev.xkmc.twilightdelight.mixin. | 1000 | true | 13 | | cherishedworlds.mixins.json | com.illusivesoulworks.cherishedworlds.mixin.core. | 1000 | true | 7 | | cupboard.mixins.json | com.cupboard.mixin. | 1000 | false | 5 | | serverbrowser.mixins.json | com.epherical.serverbrowser.mixin. | 1000 | true | 3 | | undergarden.mixins.json | quek.undergarden.mixin. | 1000 | true | 1 | | easymagic.common.mixins.json | fuzs.easymagic.mixin. | 1000 | true | 3 | | conjurer_illager.mixins.json | com.legacy.conjurer_illager.mixin. | 1000 | true | 1 | | obscure_api.mixins.json | com.obscuria.obscureapi.mixin. | 1000 | true | 6 | | clumps.mixins.json | com.blamejared.clumps.mixin. | 1000 | true | 1 | | decorative_blocks.mixins.json | lilypuree.decorative_blocks.mixin. | 1000 | true | 6 | | lazydfu.mixins.json | me.steinborn.lazydfu.mixin. | 1000 | true | 1 | | everycomp-common.mixins.json | net.mehvahdjukaar.every_compat.mixins. | 1000 | true | 1 | | mixins.bosses_of_mass_destruction.json | com.cerbon.bosses_of_mass_destruction.mixin. | 1000 | true | 14 | | mining-master.mixins.json | org.infernalstudios.miningmaster.mixin. | 1000 | true | 4 | | friendsandfoes-common.mixins.json | com.faboslav.friendsandfoes.mixin. | 1000 | true | 41 | | friendsandfoes.mixins.json | com.faboslav.friendsandfoes.mixin.forge. | 1000 | true | 1 | | simplyswords-common.mixins.json | net.sweenus.simplyswords.mixin. | 1000 | false | 0 | | simplyswords.mixins.json | net.sweenus.simplyswords.mixin.forge. | 1000 | false | 0 | | endermanoverhaul-common.mixins.json | tech.alexnijjar.endermanoverhaul.mixins. | 1000 | true | 3 | | endermanoverhaul.mixins.json | tech.alexnijjar.endermanoverhaul.mixins.forge. | 1000 | true | 2 | | creativecore.mixins.json | team.creative.creativecore.mixin. | 1000 | true | 3 | | creativecore.forge.mixins.json | team.creative.creativecore.mixin. | 1000 | true | 2 | | cull-less-leaves.mixins.json | dev.isxander.culllessleaves.mixins. | 1000 | true | 4 | | betterstats.client.mixin.json | io.github.thecsdev.betterstats.client.mixin. | 1000 | true | 3 | | betterstats.client.mixin.trackers.json | io.github.thecsdev.betterstats.client.mixin.trackers. | 1000 | true | 1 | | fastbench.mixins.json | shadows.fastbench.mixin. | 1000 | true | 4 | | abnormals_delight.mixins.json | com.teamabnormals.abnormals_delight.core.mixin. | 1000 | true | 1 | | diagonalfences.common.mixins.json | fuzs.diagonalfences.mixin. | 1000 | true | 8 | | diagonalfences.forge.mixins.json | fuzs.diagonalfences.mixin. | 1000 | true | 1 | | mixins.irons_spellbooks.json | io.redspace.ironsspellbooks.mixin. | 1000 | true | 20 | | fancymenu.general.mixin.json | de.keksuccino.fancymenu.mixin.client. | 1000 | true | 15 | | ferritecore.predicates.mixin.json | malte0811.ferritecore.mixin.predicates. | 1000 | true | 3 | | ferritecore.fastmap.mixin.json | malte0811.ferritecore.mixin.fastmap. | 1000 | true | 1 | | ferritecore.mrl.mixin.json | malte0811.ferritecore.mixin.mrl. | 1000 | true | 2 | | ferritecore.dedupmultipart.mixin.json | malte0811.ferritecore.mixin.dedupmultipart. | 1000 | true | 2 | | ferritecore.blockstatecache.mixin.json | malte0811.ferritecore.mixin.blockstatecache. | 1000 | true | 8 | | ferritecore.dedupbakedquad.mixin.json | malte0811.ferritecore.mixin.dedupbakedquad. | 1000 | true | 2 | | ferritecore.threaddetec.mixin.json | malte0811.ferritecore.mixin.threaddetec. | 1000 | true | 0 | | enhancedcelestials.mixins.json | corgitaco.enhancedcelestials.mixin. | 1000 | true | 28 | | enhancedcelestials.forge.mixins.json | corgitaco.enhancedcelestials.mixin. | 1000 | true | 0 | | enhancedcelestials_asm.mixins.json | corgitaco.enhancedcelestials.asm. | 1000 | true | 1 | | charmofundying.mixins.json | com.illusivesoulworks.charmofundying.mixin. | 1000 | true | 1 | | valhelsia_core.mixins.json | net.valhelsia.valhelsia_core.core.mixin. | 1000 | true | 11 | | easyanvils.common.mixins.json | fuzs.easyanvils.mixin. | 1000 | true | 5 | | easyanvils.forge.mixins.json | fuzs.easyanvils.mixin. | 1000 | true | 1 | | playerAnimator-common.mixins.json | dev.kosmx.playerAnim.mixin. | 1000 | true | 13 | | villagersplus.mixins.json | com.finallion.villagersplus.mixin. | 1000 | true | 2 | | environmental.mixins.json | com.teamabnormals.environmental.core.mixin. | 1000 | true | 10 | | resourcepackoverrides.common.mixins.json | fuzs.resourcepackoverrides.mixin. | 1000 | true | 6 | | resourcepackoverrides.forge.mixins.json | fuzs.resourcepackoverrides.mixin. | 1000 | true | 1 | | guardvillagers.mixins.json | tallestegg.guardvillagers.mixins. | 1000 | true | 2 | | tcdcommons.client.mixins.json | io.github.thecsdev.tcdcommons.client.mixin. | 1000 | true | 3 | | balm.mixins.json | net.blay09.mods.balm.mixin. | 1000 | true | 14 | | immersive_armors.mixins.json | immersive_armors.mixin. | 1000 | false | 10 | | leavesbegone.common.mixins.json | fuzs.leavesbegone.mixin. | 1000 | true | 3 | | upgradednetherite.mixins.json | com.rolfmao.upgradednetherite.mixin. | 1000 | true | 2 | | lmft-common.mixins.json | io.wispforest.lmft.mixin. | 1000 | true | 1 | | lmft.mixins.json | io.wispforest.lmft.forge.mixin. | 1000 | true | 0 | | goodending.mixins.json | net.orcinus.goodending.mixin. | 1000 | true | 11 | | curios.mixins.json | top.theillusivec4.curios.mixin.core. | 1000 | true | 8 | | skillslots.mixins.json | snownee.skillslots.mixin. | 1000 | true | 3 | | sparsestructuresreforged.mixins.json | com.teampotato.sparsestructuresreforged.mixin. | 1000 | true | 1 | | mutantmore.mixins.json | com.alexander.mutantmore.mixin. | 1000 | true | 5 | | windswept.mixins.json | com.rosemods.windswept.core.mixin. | 1000 | true | 18 | | bettermineshafts.mixins.json | com.yungnickyoung.minecraft.bettermineshafts.mixin. | 1000 | true | 4 | | bettermineshafts_forge.mixins.json | com.yungnickyoung.minecraft.bettermineshafts.mixin. | 1000 | true | 0 | | veinmining.mixins.json | com.illusivesoulworks.veinmining.mixin.core. | 1000 | true | 2 | | ftblibrary-common.mixins.json | dev.ftb.mods.ftblibrary.core.mixin.common. | 1000 | true | 5 | | upgrade_aquatic.mixins.json | com.teamabnormals.upgrade_aquatic.core.mixin. | 1000 | true | 8 | | epicfight.mixins.json | yesman.epicfight.mixin. | 1000 | true | 14 | | fallingleaves.mixins.json | de.cheaterpaul.fallingleaves.mixin. | 1000 | true | 5 | | sereneseasons.mixins.json | sereneseasons.mixin. | 1000 | true | 2 | | smarterfarmers-common.mixins.json | net.mehvahdjukaar.smarterfarmers.mixins. | 1000 | true | 3 | | smarterfarmers.mixins.json | net.mehvahdjukaar.smarterfarmers.mixins.forge. | 1000 | true | 1 | | neruina-common.mixins.json | com.bawnorton.neruina.mixin. | 1000 | true | 7 | | neruina.mixins.json | com.bawnorton.neruina.forge.mixin. | 1000 | true | 0 | | starlight.mixins.json | ca.spottedleaf.starlight.mixin. | 1000 | true | 13 | | memoryleakfix.mixins.json | ca.fxco.memoryleakfix.mixin. | 1000 | true | 5 | | idas.mixins.json | com.craisinlord.idas.mixin. | 1000 | true | 0 | | neapolitan.mixins.json | com.teamabnormals.neapolitan.core.mixin. | 1000 | true | 6 | | drippyloadingscreen.mixin.json | de.keksuccino.drippyloadingscreen.mixin.mixins. | 1000 | true | 12 | | bettercombat.mixins.json | net.bettercombat.mixin. | 1000 | true | 13 | | mousetweaks.mixins.json | yalter.mousetweaks.mixin. | 1000 | true | 1 | | whatareyouvotingfor2023.mixins.json | com.alexander.whatareyouvotingfor2023.mixin. | 1000 | true | 2 | | mindfuldarkness.common.mixins.json | fuzs.mindfuldarkness.mixin. | 1000 | true | 4 | | aeroblender.mixins.json | teamrazor.aeroblender.mixin. | 1000 | true | 7 | | ecologics-common.mixins.json | samebutdifferent.ecologics.mixin. | 1000 | true | 3 | | ecologics.mixins.json | samebutdifferent.ecologics.mixin.forge. | 1000 | true | 2 | | polymorph.mixins.json | com.illusivesoulworks.polymorph.mixin.core. | 1000 | true | 7 | | polymorph-integrations.forge.mixins.json | com.illusivesoulworks.polymorph.mixin.integration. | 1000 | false | 2 | | backpacked.mixins.json | com.mrcrayfish.backpacked.mixin. | 1000 | true | 13 | | entityculling.mixins.json | dev.tr7zw.entityculling.mixin. | 1000 | true | 7 | | mna.mixins.json | com.mna.mixins. | 1000 | true | 11 | | canary.mixins.json | com.abdelaziz.canary.mixin. | 1000 | true | 94 | | biomemusic.mixins.json | com.biomemusic.mixin. | 1000 | false | 5 | | visuality.mixins.json | plus.dragons.visuality.mixin. | 1000 | true | 4 | | puzzleslib.common.mixins.json | fuzs.puzzleslib.mixin. | 1000 | true | 1 | | puzzleslib.forge.mixins.json | fuzs.puzzleslib.mixin. | 1000 | true | 7 | | aether_redux.mixins.json | net.zepalesque.redux.mixin. | 1000 | true | 39 | | chunksending.mixins.json | com.chunksending.mixin. | 1000 | false | 2 | | aquamirae.mixins.json | com.obscuria.aquamirae.mixin. | 1000 | true | 1 | | tetra.mixins.json | se.mickelus.tetra.mixin. | 1000 | true | 8 | | blue_skies.mixins.json | com.legacy.blue_skies.mixin. | 1000 | true | 20 | | netherportalfix.mixins.json | net.blay09.mods.netherportalfix.mixin. | 1000 | true | 3 | | v_slab_compat-common.mixins.json | net.mehvahdjukaar.vsc.mixins. | 1000 | true | 0 | | v_slab_compat.mixins.json | net.mehvahdjukaar.vsc.mixins.forge. | 1000 | true | 1 | | betterwitchhuts.mixins.json | com.yungnickyoung.minecraft.betterwitchhuts.mixin. | 1000 | true | 5 | | betterwitchhuts_forge.mixins.json | com.yungnickyoung.minecraft.betterwitchhuts.mixin. | 1000 | true | 0 | | recipeessentials.mixins.json | com.recipeessentials.mixin. | 1000 | false | 14 | | aether.mixins.json | com.aetherteam.aether.mixin.mixins. | 1000 | true | 48 | | connectivity.mixins.json | com.connectivity.mixin. | 1000 | false | 16 | | kleeslabs.mixins.json | net.blay09.mods.kleeslabs.mixin. | 1000 | true | 1 | | controlling.mixins.json | com.blamejared.controlling.mixin. | 1000 | true | 5 | | controlling.forge.mixins.json | com.blamejared.controlling.mixin. | 1000 | true | 0 | | twigs.mixins.json | com.ninni.twigs.mixin. | 1000 | true | 5 | | dragonmounts.mixins.json | com.github.kay9.dragonmounts.mixins. | 1000 | true | 3 | | farmersdelight.mixins.json | vectorwing.farmersdelight.common.mixin. | 1000 | true | 9 | | endrem.mixins.json | com.teamremastered.endrem.mixin. | 1000 | true | 1 | | despawn_tweaker.mixins.json | com.teampotato.despawn_tweaker.mixin. | 1000 | true | 1 | | patchouli_xplat.mixins.json | vazkii.patchouli.mixin. | 1000 | true | 8 | | collective_forge.mixins.json | com.natamus.collective.forge.mixin. | 1000 | true | 2 | | betterstrongholds.mixins.json | com.yungnickyoung.minecraft.betterstrongholds.mixin. | 1000 | true | 3 | | betterstrongholds_forge.mixins.json | com.yungnickyoung.minecraft.betterstrongholds.mixin. | 1000 | true | 0 | | spartanweaponry.mixins.json | com.oblivioussp.spartanweaponry.mixin. | 1000 | true | 8 | | architectury.mixins.json | dev.architectury.mixin.forge. | 1000 | true | 8 | | architectury-common.mixins.json | dev.architectury.mixin. | 1000 | true | 9 | | boatbreakfix.mixins.json | elocindev.boatbreakfix.forge.mixin. | 1000 | true | 1 | | mixins.deeperdarker.json | com.kyanite.deeperdarker.mixin. | 1000 | true | 18 | | debugify-common.mixins.json | dev.isxander.debugify.mixins. | 1000 | true | 51 | | debugify.mixins.json | dev.isxander.debugify.forge.mixins. | 1000 | true | 1 | | sodium-extra.mixins.json | me.flashyreese.mods.sodiumextra.mixin. | 1000 | true | 28 | | smallships-common.mixins.json | com.talhanation.smallships.mixin. | 1000 | true | 12 | | smallships-common-soft.mixins.json | com.talhanation.smallships.mixin. | 1000 | false | 1 | | smallships.mixins.json | com.talhanation.smallships.mixin.forge. | 1000 | true | 0 | | incubation.mixins.json | com.teamabnormals.incubation.core.mixin. | 1000 | true | 1 | | yeetusexperimentus.mixins.json | com.sunekaer.yeetusexperimentus.mixin. | 1000 | true | 3 | | voidtotem.mixins.json | com.affehund.voidtotem.mixin. | 1000 | true | 2 | | tradingpost.common.mixins.json | fuzs.tradingpost.mixin. | 1000 | true | 5 | | bhmenu.mixins.json | com.bisecthosting.mods.bhmenu.mixins. | 1000 | true | 2 | | buzzier_bees.mixins.json | com.teamabnormals.buzzier_bees.core.mixin. | 1000 | true | 3 | | itemfilters-common.mixins.json | dev.latvian.mods.itemfilters.core.mixin.common. | 1000 | true | 1 | | waystones.mixins.json | net.blay09.mods.waystones.mixin. | 1000 | true | 3 | | fastsuite.mixins.json | shadows.fastsuite.mixin. | 1000 | true | 3 | | comforts.mixins.json | com.illusivesoulworks.comforts.mixin. | 1000 | true | 1 | | alternate-current.mixins.json | alternate.current.mixin. | 1000 | true | 2 | | mahoutsukai.mixins.json | stepsword.mahoutsukai.mixin. | 1000 | true | 2 | | netherdepthsupgrade.mixins.json | com.scouter.netherdepthsupgrade.mixin. | 1000 | true | 0 | | blueprint.mixins.json | com.teamabnormals.blueprint.core.mixin. | 1000 | true | 31 | | toofast.mixins.json | noobanidus.mods.toofast.mixins. | 1000 | true | 1 | | illagersweararmor.mixins.json | tallestegg.illagersweararmor.mixins. | 1000 | true | 3 | | mixin.dynamic_asset_generator_forge.json | io.github.lukebemish.dynamic_asset_generator.forge.mixin. | 1000 | true | 1 | | mixin.dynamic_asset_generator.json | io.github.lukebemish.dynamic_asset_generator.mixin. | 1000 | true | 4 | | moonlight-common.mixins.json | net.mehvahdjukaar.moonlight.core.mixins. | 1000 | true | 26 | | moonlight.mixins.json | net.mehvahdjukaar.moonlight.core.mixins.forge. | 1000 | true | 10 | | magnumtorch.common.mixins.json | fuzs.magnumtorch.mixin. | 1000 | true | 1 | | snowyspirit-common.mixins.json | net.mehvahdjukaar.snowyspirit.mixins. | 1000 | true | 5 | | snowyspirit.mixins.json | net.mehvahdjukaar.snowyspirit.mixins.forge. | 1000 | true | 2 | | forbidden_arcanus.mixins.json | com.stal111.forbidden_arcanus.core.mixin. | 1000 | true | 12 | | nethersdelight.mixins.json | umpaz.nethersdelight.common.mixin. | 1000 | true | 4 | | barteringstation.common.mixins.json | fuzs.barteringstation.mixin. | 1000 | true | 1 | | rottencreatures-common.mixins.json | com.github.teamfusion.rottencreatures.mixin. | 1000 | true | 13 | | rottencreatures.mixins.json | com.github.teamfusion.rottencreatures.mixin.forge. | 1000 | true | 0 | | iceberg.mixins.json | com.anthonyhilyard.iceberg.mixin. | 1000 | true | 5 | | quark.mixins.json | vazkii.quark.mixin. | 1000 | true | 105 | | quark_integrations.mixins.json | vazkii.quark.integration.mixin. | 1000 | false | 0 | | spruceui.mixins.json | dev.lambdaurora.spruceui.mixin. | 1000 | true | 1 | | betterchunkloading.mixins.json | com.betterchunkloading.mixin. | 1000 | false | 4 | | bettertridents.common.mixins.json | fuzs.bettertridents.mixin. | 1000 | true | 7 | | mvs-common.mixins.json | com.finndog.mvs.mixins. | 1000 | true | 12 | | mvs-forge.mixins.json | com.finndog.mvs.mixins. | 1000 | true | 0 | | expandability.mixins.json | be.florens.expandability.mixin.forge. | 1000 | true | 4 | | expandability-common.mixins.json | be.florens.expandability.mixin. | 1000 | true | 7 | | mixinextras.init.mixins.json | com.llamalad7.mixinextras.platform.forge.mixins. | 1000 | false | 0 | | mixinsquared.init.mixins.json | com.bawnorton.mixinsquared.platform.forge.mixins. | 1000 | false | 0 | | assets/sound_physics_remastered/sound_physics_remastered.mixins.json | com.sonicether.soundphysics.mixin. | 1000 | true | 7 | | enigmaticlegacy.mixins.json | com.aizistral.enigmaticlegacy.mixin. | 1000 | true | 30 | | mixins.weaponmaster.json | com.sky.weaponmaster.mixins. | 1004 | true | 5 | | create.mixins.json | com.simibubi.create.foundation.mixin. | 1100 | true | 25 | [20Mar2024 20:22:43.453] [pool-4-thread-1/INFO] [net.minecraft.server.Bootstrap/]: ModernFix reached bootstrap stage (22.01 s after launch) [20Mar2024 20:22:43.566] [pool-4-thread-1/WARN] [mixin/]: @Inject(@At("INVOKE")) Shift.BY=2 on everycomp-common.mixins.json:LootTableHackMixin::handler$daa000$addSimpleFastECdrops exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. [20Mar2024 20:22:43.589] [pool-4-thread-1/INFO] [ModernFix/]: Injecting BlockStateBase cache population hook into getNeighborPathNodeType from com.abdelaziz.canary.mixin.ai.pathing.BlockStateBaseMixin [20Mar2024 20:22:43.589] [pool-4-thread-1/INFO] [ModernFix/]: Injecting BlockStateBase cache population hook into getPathNodeType from com.abdelaziz.canary.mixin.ai.pathing.BlockStateBaseMixin [20Mar2024 20:22:43.589] [pool-4-thread-1/INFO] [ModernFix/]: Injecting BlockStateBase cache population hook into m_60823_ from com.abdelaziz.canary.mixin.block.flatten_states.BlockStateBaseMixin [20Mar2024 20:22:43.589] [pool-4-thread-1/INFO] [ModernFix/]: Injecting BlockStateBase cache population hook into getOpacityIfCached from ca.spottedleaf.starlight.mixin.common.blockstate.BlockStateBaseMixin [20Mar2024 20:22:43.589] [pool-4-thread-1/INFO] [ModernFix/]: Injecting BlockStateBase cache population hook into isConditionallyFullOpaque from ca.spottedleaf.starlight.mixin.common.blockstate.BlockStateBaseMixin [20Mar2024 20:22:43.589] [pool-4-thread-1/INFO] [ModernFix/]: Injecting BlockStateBase cache population hook into getAllFlags from com.abdelaziz.canary.mixin.util.block_tracking.BlockStateBaseMixin [20Mar2024 20:22:43.637] [pool-4-thread-1/WARN] [mixin/]: Error loading class: net/minecraft/server/world/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.server.world.ServerWorld) [20Mar2024 20:22:43.639] [pool-4-thread-1/WARN] [mixin/]: Error loading class: net/minecraft/world/server/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.world.server.ServerWorld) [20Mar2024 20:22:43.640] [pool-4-thread-1/WARN] [mixin/]: Error loading class: net/minecraft/class_3218 (java.lang.ClassNotFoundException: net.minecraft.class_3218) [20Mar2024 20:22:43.642] [pool-4-thread-1/WARN] [mixin/]: Error loading class: net/minecraft/src/C_12_ (java.lang.ClassNotFoundException: net.minecraft.src.C_12_) [20Mar2024 20:22:43.644] [pool-4-thread-1/WARN] [mixin/]: Error loading class: net/minecraft/unmapped/C_bdwnwhiu (java.lang.ClassNotFoundException: net.minecraft.unmapped.C_bdwnwhiu) [20Mar2024 20:22:43.882] [pool-4-thread-1/INFO] [mixin/]: Mixing MixinMobEffect from enigmaticlegacy.mixins.json into net.minecraft.world.effect.MobEffect [20Mar2024 20:22:44.981] [pool-4-thread-1/INFO] [com.cupboard.Cupboard/]: Loaded config for: biomemusic.json [20Mar2024 20:22:45.119] [pool-4-thread-1/INFO] [net.minecraft.server.Bootstrap/]: Vanilla bootstrap took 1663 milliseconds [20Mar2024 20:22:45.768] [pool-4-thread-1/INFO] [Diagonal Fences/]: Constructing shapes for nodeWith 2.0, extensionWidth 2.0, nodeHeight 24.0, extensionBottom 0.0, extensionHeight 24.0 took 138 milliseconds [20Mar2024 20:22:45.850] [pool-4-thread-1/INFO] [Diagonal Fences/]: Constructing shapes for nodeWith 2.0, extensionWidth 2.0, nodeHeight 16.0, extensionBottom 0.0, extensionHeight 16.0 took 81 milliseconds [20Mar2024 20:22:46.005] [pool-4-thread-1/INFO] [Diagonal Fences/]: Constructing shapes for nodeWith 2.0, extensionWidth 1.0, nodeHeight 16.0, extensionBottom 6.0, extensionHeight 15.0 took 152 milliseconds [20Mar2024 20:22:46.108] [pool-4-thread-1/INFO] [mixin/]: Mixing MixinEnchantmentContainer from enigmaticlegacy.mixins.json into net.minecraft.world.inventory.EnchantmentMenu [20Mar2024 20:22:46.108] [pool-4-thread-1/INFO] [mixin/]: Renaming synthetic method lambda$onEnchantedItem$0(Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/EnchantmentMenu;ILnet/minecraft/world/entity/player/Player;ILnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V to md8928a1$lambda$onEnchantedItem$0$0 in enigmaticlegacy.mixins.json:MixinEnchantmentContainer [20Mar2024 20:22:46.178] [pool-4-thread-1/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 5 calls to Enchantment#getMaxLevel() in vazkii/quark/content/tools/module/AncientTomesModule [20Mar2024 20:22:46.182] [pool-4-thread-1/INFO] [mixin/]: Mixing MixinItemStack from enigmaticlegacy.mixins.json into net.minecraft.world.item.ItemStack [20Mar2024 20:22:46.202] [pool-4-thread-1/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [20Mar2024 20:22:46.203] [pool-4-thread-1/INFO] [net.minecraftforge.coremod.CoreMod.placebo/COREMODLOG]: Patching IForgeItemStack#getEnchantmentLevel [20Mar2024 20:22:46.258] [pool-4-thread-1/WARN] [mixin/]: @Final field f_31427_:[I in epicfight.mixins.json:MixinWitherBoss should be final [20Mar2024 20:22:46.258] [pool-4-thread-1/WARN] [mixin/]: @Final field f_31428_:[I in epicfight.mixins.json:MixinWitherBoss should be final [20Mar2024 20:22:46.286] [pool-4-thread-1/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/inventory/AnvilMenu [20Mar2024 20:22:46.287] [pool-4-thread-1/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#getMaxLevel() in com/mrcrayfish/goblintraders/Hooks [20Mar2024 20:22:46.948] [pool-4-thread-1/INFO] [mixin/]: Mixing AccessorAbstractArrowEntity from enigmaticlegacy.mixins.json into net.minecraft.world.entity.projectile.AbstractArrow [20Mar2024 20:22:47.218] [pool-4-thread-1/INFO] [mixin/]: Mixing MixinEnderDragon from enigmaticlegacy.mixins.json into net.minecraft.world.entity.boss.enderdragon.EnderDragon [20Mar2024 20:22:47.218] [pool-4-thread-1/INFO] [mixin/]: Renaming synthetic method lambda$onTickDeath$0(Lnet/minecraft/server/level/ServerPlayer;)V to md8928a1$lambda$onTickDeath$0$0 in enigmaticlegacy.mixins.json:MixinEnderDragon [20Mar2024 20:22:47.573] [pool-4-thread-1/INFO] [mixin/]: Mixing MixinShulker from enigmaticlegacy.mixins.json into net.minecraft.world.entity.monster.Shulker [20Mar2024 20:22:47.803] [pool-4-thread-1/INFO] [mixin/]: Mixing MixinVillagerEntity from enigmaticlegacy.mixins.json into net.minecraft.world.entity.npc.Villager [20Mar2024 20:22:47.804] [pool-4-thread-1/INFO] [mixin/]: Mixing MixinVillager from enigmaticlegacy.mixins.json into net.minecraft.world.entity.npc.Villager [20Mar2024 20:22:47.944] [pool-4-thread-1/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Patching FishingHook#catchingFish [20Mar2024 20:22:48.259] [pool-4-thread-1/WARN] [mixin/]: @ModifyConstant conflict. Skipping integrated_api.mixins.json:structures.StructurePoolMixin->@ModifyConstant::integrated_api_increaseWeightLimitDev(I)I with priority 1000, already redirected by yungsapi_forge.mixins.json:IncreaseStructureWeightLimitMixinForge->@ModifyConstant::yungsapi_increaseWeightLimit(I)I with priority 1000 [20Mar2024 20:22:48.388] [pool-4-thread-1/WARN] [mixin/]: Static binding violation: PRIVATE @Overwrite method m_47505_ in modernfix-common.mixins.json:perf.remove_biome_temperature_cache.BiomeMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [20Mar2024 20:22:48.932] [pool-4-thread-1/WARN] [mixin/]: Mixin villagersplus.mixins.json:EntityBucketItemMixin has multiple constructors, (Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/world/item/Item$Properties;)V was selected [20Mar2024 20:22:48.975] [pool-4-thread-1/INFO] [mixin/]: Mixing MixinEnderEyeItem from enigmaticlegacy.mixins.json into net.minecraft.world.item.EnderEyeItem [20Mar2024 20:22:48.990] [pool-4-thread-1/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 2 calls to Enchantment#getMaxLevel() in net/minecraft/world/item/EnchantedBookItem [20Mar2024 20:22:48.998] [pool-4-thread-1/WARN] [mixin/]: Method overwrite conflict for getEquipmentSlot in personality.mixins.json:BannerItemMixin, previously written by com.teamabnormals.savage_and_ravage.core.mixin.BannerItemMixin. Skipping method. [20Mar2024 20:22:49.016] [pool-4-thread-1/WARN] [mixin/]: Method overwrite conflict for m_6832_ in bettertridents.common.mixins.json:TridentItemMixin, previously written by com.teamabnormals.upgrade_aquatic.core.mixin.TridentItemMixin. Skipping method. [20Mar2024 20:22:49.024] [pool-4-thread-1/INFO] [mixin/]: Mixing MixinCrossbowItem from enigmaticlegacy.mixins.json into net.minecraft.world.item.CrossbowItem [20Mar2024 20:22:49.357] [pool-4-thread-1/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#getMaxLevel() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [20Mar2024 20:22:49.357] [pool-4-thread-1/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#isDiscoverable() in net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction [20Mar2024 20:22:49.490] [pool-4-thread-1/ERROR] [net.minecraft.Util/]: Registry 'integrated_api:json_conditions' was empty after loading [20Mar2024 20:22:49.688] [main/INFO] [mixin/]: Mixing MixinItemRenderer from enigmaticlegacy.mixins.json into net.minecraft.client.renderer.entity.ItemRenderer [20Mar2024 20:22:49.888] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/C:/Users/Admin/AppData/Roaming/.minecraft/libraries/net/minecraft/client/1.19.2-20220805.130853/client-1.19.2-20220805.130853-srg.jar%23906!/assets/.mcassetsroot' uses unexpected schema [20Mar2024 20:22:49.888] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/C:/Users/Admin/AppData/Roaming/.minecraft/libraries/net/minecraft/client/1.19.2-20220805.130853/client-1.19.2-20220805.130853-srg.jar%23906!/data/.mcassetsroot' uses unexpected schema [20Mar2024 20:22:49.964] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' [20Mar2024 20:22:50.540] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Gloryleend [20Mar2024 20:22:50.621] [Render thread/INFO] [ModernFix/]: Bypassed Mojang DFU [20Mar2024 20:22:50.773] [Render thread/ERROR] [Resource Pack Overrides/]: Failed to read resourcepackoverrides.json in config directory: java.io.FileNotFoundException: C:\Users\Admin\AppData\Roaming\.minecraft\config\resourcepackoverrides.json (The system cannot find the file specified) [20Mar2024 20:22:50.778] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.1 build 7 [20Mar2024 20:22:51.149] [Render thread/INFO] [ImmediatelyFast/]: Initializing ImmediatelyFast 1.2.7+1.19.2 on NVIDIA GeForce GTX 1650 SUPER/PCIe/SSE2 (NVIDIA Corporation) with OpenGL 3.2.0 NVIDIA 551.76 [20Mar2024 20:22:51.572] [modloading-worker-0/INFO] [strawgolem/]: Pre-init started! [20Mar2024 20:22:51.572] [modloading-worker-0/INFO] [strawgolem/]: Registering config [20Mar2024 20:22:51.621] [modloading-worker-0/WARN] [mixin/]: Error loading class: net/minecraft/src/C_4977_ (java.lang.ClassNotFoundException: net.minecraft.src.C_4977_) [20Mar2024 20:22:51.680] [modloading-worker-0/INFO] [mixin/]: Mixing MixinPlayerList from enigmaticlegacy.mixins.json into net.minecraft.server.players.PlayerList [20Mar2024 20:22:51.693] [modloading-worker-0/INFO] [strawgolem/]: Registering particles [20Mar2024 20:22:51.695] [modloading-worker-0/INFO] [strawgolem/]: Registering items [20Mar2024 20:22:51.696] [modloading-worker-0/INFO] [strawgolem/]: Registering entities [20Mar2024 20:22:51.714] [modloading-worker-0/INFO] [strawgolem/]: Registering sounds [20Mar2024 20:22:51.715] [modloading-worker-0/INFO] [strawgolem/]: Registering capabilities [20Mar2024 20:22:51.731] [modloading-worker-0/INFO] [strawgolem/]: Client init started! [20Mar2024 20:22:51.732] [modloading-worker-0/INFO] [strawgolem/]: Registering particle factory [20Mar2024 20:22:51.747] [modloading-worker-0/INFO] [strawgolem/]: Registering entity renderers [20Mar2024 20:22:51.752] [modloading-worker-0/INFO] [mixin/]: Mixing MixinEntityRenderer from enigmaticlegacy.mixins.json into net.minecraft.client.renderer.entity.EntityRenderer [20Mar2024 20:22:51.789] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing client components for mod pickupnotifier [20Mar2024 20:22:51.938] [modloading-worker-0/INFO] [dev.wuffs.bcc.BCC/]: Better Compatibility Checker loading [20Mar2024 20:22:52.015] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod pickupnotifier [20Mar2024 20:22:52.107] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing client components for mod netherchested [20Mar2024 20:22:52.108] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod netherchested [20Mar2024 20:22:52.156] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing client components for mod enchantinginfuser [20Mar2024 20:22:52.184] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod enchantinginfuser [20Mar2024 20:22:52.202] [modloading-worker-0/INFO] [com.yellowbrossproductions.illageandspillage.IllageAndSpillage/]: Loading config: C:\Users\Admin\AppData\Roaming\.minecraft\config\illageandspillage-client.toml [20Mar2024 20:22:52.203] [modloading-worker-0/INFO] [com.yellowbrossproductions.illageandspillage.IllageAndSpillage/]: Built config: C:\Users\Admin\AppData\Roaming\.minecraft\config\illageandspillage-client.toml [20Mar2024 20:22:52.206] [modloading-worker-0/INFO] [com.yellowbrossproductions.illageandspillage.IllageAndSpillage/]: Loaded config: C:\Users\Admin\AppData\Roaming\.minecraft\config\illageandspillage-client.toml [20Mar2024 20:22:52.207] [modloading-worker-0/INFO] [com.yellowbrossproductions.illageandspillage.IllageAndSpillage/]: Loading config: C:\Users\Admin\AppData\Roaming\.minecraft\config\illageandspillage-common.toml [20Mar2024 20:22:52.207] [modloading-worker-0/INFO] [com.yellowbrossproductions.illageandspillage.IllageAndSpillage/]: Built config: C:\Users\Admin\AppData\Roaming\.minecraft\config\illageandspillage-common.toml [20Mar2024 20:22:52.208] [modloading-worker-0/INFO] [com.yellowbrossproductions.illageandspillage.IllageAndSpillage/]: Loaded config: C:\Users\Admin\AppData\Roaming\.minecraft\config\illageandspillage-common.toml [20Mar2024 20:22:52.248] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing client components for mod visualworkbench [20Mar2024 20:22:52.250] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod visualworkbench [20Mar2024 20:22:52.265] [modloading-worker-0/INFO] [com.jtorleonstudios.libraryferret.LibraryFerret/]: Initialize mod Library Ferret [20Mar2024 20:22:52.315] [modloading-worker-0/INFO] [com.jtorleonstudios.libraryferret.LibraryFerret/]: Initialized mod Library Ferret [20Mar2024 20:22:52.391] [modloading-worker-0/INFO] [Ksyxis/]: Ksyxis found Mixin library. [20Mar2024 20:22:52.391] [modloading-worker-0/INFO] [Ksyxis/]: Ksyxis will speedup your world loading, but may break everything :P [20Mar2024 20:22:52.415] [modloading-worker-0/INFO] [epicfight/]: register skill wom:ender_step [20Mar2024 20:22:52.417] [modloading-worker-0/INFO] [epicfight/]: register skill wom:ender_obscuris [20Mar2024 20:22:52.419] [modloading-worker-0/INFO] [epicfight/]: register skill wom:dodge_master [20Mar2024 20:22:52.419] [modloading-worker-0/INFO] [epicfight/]: register skill wom:precise_roll [20Mar2024 20:22:52.442] [modloading-worker-0/INFO] [epicfight/]: register skill wom:shadow_step [20Mar2024 20:22:52.451] [modloading-worker-0/INFO] [epicfight/]: register skill wom:bull_charge [20Mar2024 20:22:52.458] [modloading-worker-0/INFO] [paintings/]: loading json file and contents for paintings. [20Mar2024 20:22:52.458] [modloading-worker-0/INFO] [paintings/]: **Paintings++ no longer copies the base file outside if the mod. ** [20Mar2024 20:22:52.460] [modloading-worker-0/INFO] [epicfight/]: register skill wom:demon_mark_passive [20Mar2024 20:22:52.461] [modloading-worker-0/INFO] [paintings/]: Loaded json painting abstract_blue , 16 x 16 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting abstract_rainbow , 16 x 16 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting abstract_red , 16 x 16 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting abstract_sunset , 16 x 16 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting arachnophobe , 32 x 16 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting barn_owl , 32 x 16 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting big_z , 16 x 16 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting blue_bird , 32 x 16 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting bluesclues , 32 x 16 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting borgia , 16 x 32 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting cane , 16 x 32 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting cat_black , 16 x 16 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting cat_gray , 16 x 16 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting cat_orange , 16 x 16 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting cat , 32 x 16 [20Mar2024 20:22:52.462] [modloading-worker-0/INFO] [paintings/]: Loaded json painting colorful_squares , 32 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting crest , 32 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting danger_zone , 32 x 32 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting decorative_gun , 32 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting exit_down , 32 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting exit_up , 32 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting exit_left , 32 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting exit_right , 32 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting face_bat , 16 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting face_chicken , 16 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting face_cow , 16 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting face_creeper , 16 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting face_dog , 16 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting face_enderman , 16 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting face_pig , 16 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting face_pigman , 16 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting face_silverfish , 16 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting face_skeleton , 16 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting face_squid , 16 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting face_zombie , 16 x 16 [20Mar2024 20:22:52.463] [modloading-worker-0/INFO] [paintings/]: Loaded json painting fishes , 32 x 16 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting flowers , 32 x 16 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting fruits , 32 x 16 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting ghost , 16 x 32 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting glowlamp , 32 x 32 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting glowstone_hourglass , 16 x 32 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting iluvmc , 32 x 16 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting link , 32 x 16 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting mine_prosperity , 32 x 16 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting no_trespassing_for_mobs , 32 x 16 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting ocelot , 16 x 16 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting penguin , 32 x 16 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting pig_on_a_cliff , 32 x 32 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting pkmn_blue , 32 x 16 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting pkmn_red , 32 x 16 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting pkmn_green , 32 x 16 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting plains_hut , 32 x 16 [20Mar2024 20:22:52.464] [modloading-worker-0/INFO] [paintings/]: Loaded json painting portrait_2 , 16 x 16 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting portrait , 32 x 32 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting prison , 16 x 32 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting prosperity , 16 x 32 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting rest , 32 x 16 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting skeleton , 16 x 32 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting sky , 32 x 32 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting skyblock , 32 x 32 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting snake , 16 x 32 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting snow_landscape , 32 x 16 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting subaraki , 32 x 16 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting synth_city , 16 x 16 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting tapistry_a , 32 x 16 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting tapistry_b , 16 x 32 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting tapistry_purple , 16 x 32 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting torched , 32 x 16 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting waterfall , 32 x 16 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting whale , 32 x 16 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting wheat_field , 32 x 16 [20Mar2024 20:22:52.465] [modloading-worker-0/INFO] [paintings/]: Loaded json painting wolf_in_wheat , 32 x 16 [20Mar2024 20:22:52.466] [modloading-worker-0/INFO] [epicfight/]: register skill wom:torment_passive [20Mar2024 20:22:52.468] [modloading-worker-0/INFO] [epicfight/]: register skill wom:ruine_passive [20Mar2024 20:22:52.469] [modloading-worker-0/INFO] [epicfight/]: register skill wom:lunar_echo_passive [20Mar2024 20:22:52.470] [modloading-worker-0/INFO] [epicfight/]: register skill wom:satsujin_passive [20Mar2024 20:22:52.471] [modloading-worker-0/INFO] [epicfight/]: register skill wom:charybdis [20Mar2024 20:22:52.474] [modloading-worker-0/INFO] [epicfight/]: register skill wom:agony_plunge [20Mar2024 20:22:52.476] [modloading-worker-0/INFO] [epicfight/]: register skill wom:true_berserk [20Mar2024 20:22:52.479] [modloading-worker-0/INFO] [epicfight/]: register skill wom:plunder_perdition [20Mar2024 20:22:52.498] [modloading-worker-0/INFO] [epicfight/]: register skill wom:sakura_state [20Mar2024 20:22:52.523] [modloading-worker-0/INFO] [epicfight/]: register skill wom:ender_blast [20Mar2024 20:22:52.526] [modloading-worker-0/INFO] [epicfight/]: register skill wom:ender_fusion [20Mar2024 20:22:52.533] [modloading-worker-0/INFO] [epicfight/]: register skill wom:demonic_ascension [20Mar2024 20:22:52.536] [modloading-worker-0/INFO] [epicfight/]: register skill wom:regierung [20Mar2024 20:22:52.539] [modloading-worker-0/INFO] [epicfight/]: register skill wom:lunar_eclipse [20Mar2024 20:22:52.557] [modloading-worker-0/INFO] [com.jozufozu.flywheel.backend.Backend/]: No shaders mod detected. [20Mar2024 20:22:52.576] [modloading-worker-0/INFO] [epicfight/]: register skill wom:counter_attack [20Mar2024 20:22:52.582] [modloading-worker-0/INFO] [epicfight/]: register skill wom:perfect_bulwark [20Mar2024 20:22:52.584] [modloading-worker-0/INFO] [epicfight/]: register skill wom:vengeful_parry [20Mar2024 20:22:52.585] [modloading-worker-0/INFO] [epicfight/]: register skill wom:arrow_tenacity [20Mar2024 20:22:52.587] [modloading-worker-0/INFO] [epicfight/]: register skill wom:pain_anticipation [20Mar2024 20:22:52.590] [modloading-worker-0/INFO] [epicfight/]: register skill wom:latent_retribution [20Mar2024 20:22:52.591] [modloading-worker-0/INFO] [epicfight/]: register skill wom:vampirize [20Mar2024 20:22:52.592] [modloading-worker-0/INFO] [epicfight/]: register skill wom:critical_knowledge [20Mar2024 20:22:52.594] [modloading-worker-0/INFO] [epicfight/]: register skill wom:heart_shield [20Mar2024 20:22:52.603] [modloading-worker-0/INFO] [epicfight/]: register skill wom:mindset [20Mar2024 20:22:52.604] [modloading-worker-0/INFO] [epicfight/]: register skill wom:adrenaline [20Mar2024 20:22:52.606] [modloading-worker-0/INFO] [epicfight/]: register skill wom:dancing_blade [20Mar2024 20:22:52.608] [modloading-worker-0/INFO] [epicfight/]: register skill wom:meditation [20Mar2024 20:22:52.707] [modloading-worker-0/INFO] [de.isuewo.euphoria_patcher.EuphoriaPatcher/]: Initializing Euphoria Patcher... [20Mar2024 20:22:52.708] [modloading-worker-0/INFO] [de.isuewo.euphoria_patcher.EuphoriaPatcher/]: EuphoriaPatches have already been applied or you need to have a version of ComplementaryShaders installed. Please download it from https://www.complementary.dev/, place it into your shaderpacks folder and restart Minecraft. [20Mar2024 20:22:52.717] [modloading-worker-0/INFO] [ryoamiclights/]: [LambDynLights] Initializing LambDynamicLights... [20Mar2024 20:22:52.720] [modloading-worker-0/INFO] [ryoamiclights/]: [LambDynLights] Configuration loaded. [20Mar2024 20:22:52.958] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.insanelib.module.base.feature.TagsFeature [20Mar2024 20:22:52.966] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.insanelib.module.base.feature.FixFeature [20Mar2024 20:22:52.969] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.insanelib.module.base.feature.AEC3DFeature [20Mar2024 20:22:53.050] [modloading-worker-0/INFO] [Collective/]: [Collective] JSON file 'entity_names.json' generation requested by mod 'villagernames'. [20Mar2024 20:22:53.149] [modloading-worker-0/INFO] [mixin/]: Mixing MixinEnterBlockTrigger from enigmaticlegacy.mixins.json into net.minecraft.advancements.critereon.EnterBlockTrigger [20Mar2024 20:22:53.153] [modloading-worker-0/INFO] [mixin/]: Mixing MixinInventoryChangeTrigger from enigmaticlegacy.mixins.json into net.minecraft.advancements.critereon.InventoryChangeTrigger [20Mar2024 20:22:53.164] [modloading-worker-0/INFO] [mixin/]: Mixing MixinSummonedEntityTrigger from enigmaticlegacy.mixins.json into net.minecraft.advancements.critereon.SummonedEntityTrigger [20Mar2024 20:22:53.238] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:pufferfish_bucket is now minecraft:bucket. [20Mar2024 20:22:53.238] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:salmon_bucket is now minecraft:bucket. [20Mar2024 20:22:53.238] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:cod_bucket is now minecraft:bucket. [20Mar2024 20:22:53.238] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:tropical_fish_bucket is now minecraft:bucket. [20Mar2024 20:22:53.238] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:axolotl_bucket is now minecraft:bucket. [20Mar2024 20:22:53.238] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:powder_snow_bucket is now minecraft:bucket. [20Mar2024 20:22:53.238] [modloading-worker-0/INFO] [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:tadpole_bucket is now minecraft:bucket. [20Mar2024 20:22:53.256] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.wither.feature.RewardFeature [20Mar2024 20:22:53.259] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.wither.feature.ResistancesFeature [20Mar2024 20:22:53.262] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.wither.feature.MiscFeature [20Mar2024 20:22:53.269] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.wither.feature.MinionFeature [20Mar2024 20:22:53.274] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.wither.feature.HealthFeature [20Mar2024 20:22:53.276] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.wither.feature.DifficultyFeature [20Mar2024 20:22:53.280] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.wither.feature.AttackFeature [20Mar2024 20:22:53.303] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.elderguardian.feature.RewardFeature [20Mar2024 20:22:53.306] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.elderguardian.feature.ResistancesFeature [20Mar2024 20:22:53.310] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.elderguardian.feature.MinionFeature [20Mar2024 20:22:53.315] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.elderguardian.feature.HealthFeature [20Mar2024 20:22:53.319] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.elderguardian.feature.BaseFeature [20Mar2024 20:22:53.324] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.elderguardian.feature.AttackFeature [20Mar2024 20:22:53.326] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.dragon.feature.RewardFeature [20Mar2024 20:22:53.329] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.dragon.feature.ResistancesFeature [20Mar2024 20:22:53.374] [modloading-worker-0/WARN] [mixin/]: @Final field f_31201_:Lorg/slf4j/Logger; in progressivebosses.mixins.json:DragonChargePlayerPhaseMixin should be final [20Mar2024 20:22:53.379] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.dragon.feature.MinionFeature [20Mar2024 20:22:53.383] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.dragon.feature.LarvaFeature [20Mar2024 20:22:53.386] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.dragon.feature.HealthFeature [20Mar2024 20:22:53.390] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.dragon.feature.DifficultyFeature [20Mar2024 20:22:53.394] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.dragon.feature.CrystalFeature [20Mar2024 20:22:53.397] [modloading-worker-0/INFO] [insane96mcp.insanelib.InsaneLib/]: Found (COMMON) InsaneLib Feature class insane96mcp.progressivebosses.module.dragon.feature.AttackFeature [20Mar2024 20:22:53.423] [modloading-worker-0/INFO] [traben.entity_model_features.EMFClient/]: Loading Entity Model Features, 100% of the time it works 90% of the time! [20Mar2024 20:22:53.428] [modloading-worker-0/WARN] [mixin/]: Static binding violation: PRIVATE @Overwrite method m_104290_ in rubidium.mixins.json:features.entity.fast_render.MixinModelPart cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. [20Mar2024 20:22:53.429] [modloading-worker-0/INFO] [Entity Texture Features/]: Loading Entity Texture Features, also known as ETF! [20Mar2024 20:22:53.452] [modloading-worker-0/INFO] [de.keksuccino.konkrete.Konkrete/]: [KONKRETE] Successfully initialized! [20Mar2024 20:22:53.453] [modloading-worker-0/INFO] [de.keksuccino.konkrete.Konkrete/]: [KONKRETE] Server-side libs ready to use! [20Mar2024 20:22:53.581] [modloading-worker-0/INFO] [com.cupboard.Cupboard/]: Loaded config for: memorysettings.json [20Mar2024 20:22:53.582] [modloading-worker-0/WARN] [com.memorysettings.MemorysettingsMod/]: You have more memory allocated(18432mb) than recommended for this pack, the maximum is: 8500mb. The recommended amount for your system is: 8500 mb. [20Mar2024 20:22:53.697] [modloading-worker-0/INFO] [com.cupboard.Cupboard/]: Loaded config for: cupboard.json [20Mar2024 20:22:53.719] [modloading-worker-0/INFO] [Kiwi/Init]: Processing 7 KiwiModule annotations [20Mar2024 20:22:53.793] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing client components for mod easymagic [20Mar2024 20:22:53.801] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod easymagic [20Mar2024 20:22:53.849] [modloading-worker-0/INFO] [Kiwi/]: Loading config from file: C:\Users\Admin\AppData\Roaming\.minecraft\config\everpotion-common.toml [20Mar2024 20:22:54.195] [modloading-worker-0/INFO] [Kiwi/]: Loading config from file: C:\Users\Admin\AppData\Roaming\.minecraft\config\kiwi-client.toml [20Mar2024 20:22:54.207] [modloading-worker-0/INFO] [Kiwi/]: Loading config from file: C:\Users\Admin\AppData\Roaming\.minecraft\config\skillslots-common.toml [20Mar2024 20:22:54.210] [modloading-worker-0/INFO] [Kiwi/]: Loading config from file: C:\Users\Admin\AppData\Roaming\.minecraft\config\snowrealmagic-client.toml [20Mar2024 20:22:54.212] [modloading-worker-0/INFO] [Kiwi/]: Loading config from file: C:\Users\Admin\AppData\Roaming\.minecraft\config\snowrealmagic-common.toml [20Mar2024 20:22:54.480] [modloading-worker-0/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Loaded EveryCompat Decorative Blocks Module [20Mar2024 20:22:54.480] [modloading-worker-0/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Loaded EveryCompat Friendsandfoes Module [20Mar2024 20:22:54.481] [modloading-worker-0/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Loaded EveryCompat Twigs Module [20Mar2024 20:22:54.514] [modloading-worker-0/INFO] [org.infernalstudios.miningmaster.MiningMaster/]: Mining Master: Blocks Registered! [20Mar2024 20:22:54.515] [modloading-worker-0/INFO] [org.infernalstudios.miningmaster.MiningMaster/]: Mining Master: Items Registered! [20Mar2024 20:22:54.528] [modloading-worker-0/INFO] [org.infernalstudios.miningmaster.MiningMaster/]: Mining Master: Enchantments Registered! [20Mar2024 20:22:54.549] [modloading-worker-0/INFO] [org.infernalstudios.miningmaster.MiningMaster/]: Mining Master: Recipes Registered! [20Mar2024 20:22:54.551] [modloading-worker-0/INFO] [org.infernalstudios.miningmaster.MiningMaster/]: Mining Master: Container Types Registered! [20Mar2024 20:22:54.555] [modloading-worker-0/INFO] [org.infernalstudios.miningmaster.MiningMaster/]: Mining Master: Tile Entity Types Registered! [20Mar2024 20:22:54.560] [modloading-worker-0/INFO] [org.infernalstudios.miningmaster.MiningMaster/]: Mining Master: Sounds Registered! [20Mar2024 20:22:54.563] [modloading-worker-0/INFO] [org.infernalstudios.miningmaster.MiningMaster/]: Mining Master: Loot Modifiers Registered! [20Mar2024 20:22:54.568] [modloading-worker-0/INFO] [org.infernalstudios.miningmaster.MiningMaster/]: Mining Master: Features Registered! [20Mar2024 20:22:54.670] [ForkJoinPool.commonPool-worker-1/INFO] [friendsandfoes/]: [Friends&Foes] An update is available! You are using 1.8.10 version, but the latest version is 1.8.11. [20Mar2024 20:22:54.721] [modloading-worker-0/INFO] [betterstats/]: Initializing 'Better Statistics Screen' as 'BetterStatsClient'. [20Mar2024 20:22:54.733] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod diagonalfences [20Mar2024 20:22:54.771] [modloading-worker-0/ERROR] [net.minecraft.Util/]: Registry 'enhancedcelestials:lunar/event' was empty after loading [20Mar2024 20:22:54.771] [modloading-worker-0/ERROR] [net.minecraft.Util/]: Registry 'enhancedcelestials:lunar/dimension_settings' was empty after loading [20Mar2024 20:22:54.958] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing client components for mod easyanvils [20Mar2024 20:22:54.970] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod easyanvils [20Mar2024 20:22:55.082] [modloading-worker-0/INFO] [tcdcommons/]: Initializing 'TCDCommons API' as 'TCDCommonsClient'. [20Mar2024 20:22:55.161] [modloading-worker-0/INFO] [fancymenu/FancyMenu/]: [FANCYMENU] Loading v2.14.9 in client-side mode! [20Mar2024 20:22:55.161] [modloading-worker-0/INFO] [fancymenu/FancyMenu/]: [FANCYMENU] Level registry interactions allowed! [20Mar2024 20:22:55.235] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod leavesbegone [20Mar2024 20:22:55.239] [modloading-worker-0/INFO] [io.wispforest.lmft.LMFTCommon/]: [LMFT]: Loaded Config File! [20Mar2024 20:22:55.649] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod stoneworks [20Mar2024 20:22:55.690] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 43.3.8, for MC 1.19.2 with MCP 20220805.130853 [20Mar2024 20:22:55.690] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v43.3.8 Initialized [20Mar2024 20:22:55.740] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:basic_attack [20Mar2024 20:22:55.742] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:air_attack [20Mar2024 20:22:55.742] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:roll [20Mar2024 20:22:55.743] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:step [20Mar2024 20:22:55.744] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:knockdown_wakeup [20Mar2024 20:22:55.744] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:guard [20Mar2024 20:22:55.746] [modloading-worker-0/INFO] [mixin/]: Mixing MixinForgeHooksClient from enigmaticlegacy.mixins.json into net.minecraftforge.client.ForgeHooksClient [20Mar2024 20:22:55.746] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:parrying [20Mar2024 20:22:55.746] [modloading-worker-0/INFO] [mixin/]: Renaming synthetic method lambda$onGatherTooltipComponents$4(Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent; to md8928a1$lambda$onGatherTooltipComponents$4$0 in enigmaticlegacy.mixins.json:MixinForgeHooksClient [20Mar2024 20:22:55.746] [modloading-worker-0/INFO] [mixin/]: Renaming synthetic method lambda$onGatherTooltipComponents$3(Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent; to md8928a1$lambda$onGatherTooltipComponents$3$1 in enigmaticlegacy.mixins.json:MixinForgeHooksClient [20Mar2024 20:22:55.746] [modloading-worker-0/INFO] [mixin/]: Renaming synthetic method lambda$onGatherTooltipComponents$2(Lnet/minecraft/client/gui/Font;Lcom/mojang/datafixers/util/Either;)I to md8928a1$lambda$onGatherTooltipComponents$2$2 in enigmaticlegacy.mixins.json:MixinForgeHooksClient [20Mar2024 20:22:55.746] [modloading-worker-0/INFO] [mixin/]: Renaming synthetic method lambda$onGatherTooltipComponents$1(Lnet/minecraft/world/inventory/tooltip/TooltipComponent;)Ljava/lang/Integer; to md8928a1$lambda$onGatherTooltipComponents$1$3 in enigmaticlegacy.mixins.json:MixinForgeHooksClient [20Mar2024 20:22:55.747] [modloading-worker-0/INFO] [mixin/]: Renaming synthetic method lambda$onGatherTooltipComponents$0(Ljava/util/List;Lnet/minecraft/world/inventory/tooltip/TooltipComponent;)V to md8928a1$lambda$onGatherTooltipComponents$0$4 in enigmaticlegacy.mixins.json:MixinForgeHooksClient [20Mar2024 20:22:55.757] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:impact_guard [20Mar2024 20:22:55.759] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:berserker [20Mar2024 20:22:55.760] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:death_harvest [20Mar2024 20:22:55.763] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:emergency_escape [20Mar2024 20:22:55.765] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:endurance [20Mar2024 20:22:55.766] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:forbidden_strength [20Mar2024 20:22:55.769] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:hypervitality [20Mar2024 20:22:55.772] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:stamina_pillager [20Mar2024 20:22:55.773] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:swordmaster [20Mar2024 20:22:55.775] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:technician [20Mar2024 20:22:55.776] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:sweeping_edge [20Mar2024 20:22:55.776] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:dancing_edge [20Mar2024 20:22:55.825] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:the_guillotine [20Mar2024 20:22:55.826] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:grasping_spire [20Mar2024 20:22:55.827] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:heartpiercer [20Mar2024 20:22:55.828] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:steel_whirlwind [20Mar2024 20:22:55.829] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:battojutsu [20Mar2024 20:22:55.830] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:battojutsu_passive [20Mar2024 20:22:55.831] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:rushing_tempo [20Mar2024 20:22:55.831] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:relentless_combo [20Mar2024 20:22:55.833] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:liechtenauer [20Mar2024 20:22:55.833] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:sharp_stab [20Mar2024 20:22:55.835] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:eviscerate [20Mar2024 20:22:55.868] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:blade_rush [20Mar2024 20:22:55.869] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:wrathful_lighting [20Mar2024 20:22:55.870] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:tsunami [20Mar2024 20:22:55.872] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:everlasting_allegiance [20Mar2024 20:22:55.877] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:meteor_slam [20Mar2024 20:22:55.881] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:revelation [20Mar2024 20:22:55.884] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:demolition_leap [20Mar2024 20:22:55.886] [modloading-worker-0/INFO] [epicfight/]: register skill epicfight:phantom_ascent [20Mar2024 20:22:55.896] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod mindfuldarkness [20Mar2024 20:22:55.902] [modloading-worker-0/INFO] [thedarkcolour.kotlinforforge.test.KotlinForForge/]: Kotlin For Forge Enabled! [20Mar2024 20:22:56.030] [modloading-worker-0/INFO] [com.mna.ManaAndArtifice/]: M&A -> Config Loaded [20Mar2024 20:22:56.065] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod puzzleslib [20Mar2024 20:22:56.069] [modloading-worker-0/INFO] [Visuality/]: Visuality has initialized, have fun with more particles! [20Mar2024 20:22:56.339] [Modding Legacy/blue_skies/Supporters thread/INFO] [ModdingLegacy/blue_skies/Supporter/]: Attempting to load the Modding Legacy supporters list from https://moddinglegacy.com/supporters-changelogs/supporters.txt [20Mar2024 20:22:57.073] [modloading-worker-0/INFO] [Collective/]: Loading Collective version 7.40. [20Mar2024 20:22:57.106] [modloading-worker-0/INFO] [Spartan Weaponry/]: Constructing Mod: Spartan Weaponry [20Mar2024 20:22:57.106] [modloading-worker-0/INFO] [Spartan Weaponry/]: Initialising API! Version: 9 [20Mar2024 20:22:57.110] [modloading-worker-0/INFO] [Spartan Weaponry/]: Spartan Weaponry API version 9 has been initalized! [20Mar2024 20:22:57.118] [modloading-worker-0/INFO] [Enigmatic Legacy/INFO]: Constructing mod instance... [20Mar2024 20:22:57.197] [Modding Legacy/blue_skies/Supporters thread/INFO] [ModdingLegacy/blue_skies/Supporter/]: Successfully loaded the Modding Legacy supporters list. [20Mar2024 20:22:57.263] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id architectury:sync_ids [20Mar2024 20:22:57.264] [modloading-worker-0/INFO] [com.sunekaer.sdrp.discord.RPClient/]: Setting up discord client [20Mar2024 20:22:57.264] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id architectury:sync_ids [20Mar2024 20:22:57.286] [pool-5-thread-1/ERROR] [com.sunekaer.sdrp.discord.RPClient/]: Unable to connect to the discord client com.jagrosh.discordipc.exceptions.NoDiscordClientException: null at com.jagrosh.discordipc.entities.pipe.Pipe.openPipe(Pipe.java:113) ~[SimpleDiscordRichPresence-forge-3.0.5-build.37+mc1.19.2.jar%23807!/:?] at com.jagrosh.discordipc.IPCClient.connect(IPCClient.java:118) ~[SimpleDiscordRichPresence-forge-3.0.5-build.37+mc1.19.2.jar%23807!/:?] at com.sunekaer.sdrp.discord.RPClient.connectClient(RPClient.java:68) ~[SimpleDiscordRichPresence-forge-3.0.5-build.37+mc1.19.2.jar%23807!/:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) [?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:264) [?:?] at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) [?:?] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?] at java.lang.Thread.run(Thread.java:833) [?:?] [20Mar2024 20:22:57.312] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftblibrary:edit_nbt [20Mar2024 20:22:57.315] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftblibrary:edit_nbt_response [20Mar2024 20:22:57.317] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftblibrary:sync_known_server_registries [20Mar2024 20:22:57.348] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbteams:sync_teams [20Mar2024 20:22:57.349] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbteams:sync_message_history [20Mar2024 20:22:57.350] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:open_gui [20Mar2024 20:22:57.351] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbteams:open_my_team_gui [20Mar2024 20:22:57.353] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:update_settings [20Mar2024 20:22:57.354] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbteams:update_settings_response [20Mar2024 20:22:57.355] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:send_message [20Mar2024 20:22:57.356] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbteams:send_message_response [20Mar2024 20:22:57.357] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbteams:update_presence [20Mar2024 20:22:57.358] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:create_party [20Mar2024 20:22:57.361] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbteams:player_gui_operation [20Mar2024 20:22:57.374] [modloading-worker-0/INFO] [Void Totem/]: Loading up Void Totem (Forge) [20Mar2024 20:22:57.392] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing client components for mod tradingpost [20Mar2024 20:22:57.396] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod tradingpost [20Mar2024 20:22:57.456] [modloading-worker-0/INFO] [FTB XMod Compat/]: Chose [Entity Tags] as the active game stages implementation [20Mar2024 20:22:57.458] [modloading-worker-0/INFO] [FTB XMod Compat/]: Chose [FALLBACK] as the active permissions implementation [20Mar2024 20:22:57.460] [modloading-worker-0/INFO] [FTB XMod Compat/]: [FTB Quests] recipe helper provider is [JEI] [20Mar2024 20:22:57.479] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id itemfilters:main/14e7fa1454283aec8ae811ef844ada28 [20Mar2024 20:22:57.479] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id itemfilters:main/14e7fa1454283aec8ae811ef844ada28 [20Mar2024 20:22:57.480] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id itemfilters:main/8f6a899247753217b9d86ab427a2b279 [20Mar2024 20:22:57.480] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id itemfilters:main/8f6a899247753217b9d86ab427a2b279 [20Mar2024 20:22:57.545] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:sync_quests [20Mar2024 20:22:57.546] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:sync_team_data [20Mar2024 20:22:57.547] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:update_task_progress [20Mar2024 20:22:57.549] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:submit_task [20Mar2024 20:22:57.550] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:claim_reward [20Mar2024 20:22:57.551] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:claim_reward_response [20Mar2024 20:22:57.552] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:sync_editing_mode [20Mar2024 20:22:57.553] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:get_emergency_items [20Mar2024 20:22:57.554] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:create_other_team_data [20Mar2024 20:22:57.556] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:claim_all_rewards [20Mar2024 20:22:57.557] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:claim_choice_reward [20Mar2024 20:22:57.558] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:display_completion_toast [20Mar2024 20:22:57.558] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:display_reward_toast [20Mar2024 20:22:57.560] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:display_item_reward_toast [20Mar2024 20:22:57.561] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:toggle_pinned [20Mar2024 20:22:57.562] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:toggle_pinned_response [20Mar2024 20:22:57.563] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:toggle_chapter_pinned [20Mar2024 20:22:57.565] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:toggle_chapter_pinned_response [20Mar2024 20:22:57.566] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:toggle_editing_mode [20Mar2024 20:22:57.567] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:force_save [20Mar2024 20:22:57.568] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:update_team_data [20Mar2024 20:22:57.570] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:set_custom_image [20Mar2024 20:22:57.571] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:object_started [20Mar2024 20:22:57.572] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:object_completed [20Mar2024 20:22:57.574] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:object_started_reset [20Mar2024 20:22:57.576] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:object_completed_reset [20Mar2024 20:22:57.578] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:sync_lock [20Mar2024 20:22:57.579] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:reset_reward [20Mar2024 20:22:57.580] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:team_data_changed [20Mar2024 20:22:57.581] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:task_screen_config_req [20Mar2024 20:22:57.583] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:task_screen_config_resp [20Mar2024 20:22:57.589] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:change_progress [20Mar2024 20:22:57.590] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:create_object [20Mar2024 20:22:57.591] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:create_object_response [20Mar2024 20:22:57.593] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:create_task_at [20Mar2024 20:22:57.595] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:delete_object [20Mar2024 20:22:57.597] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:delete_object_response [20Mar2024 20:22:57.598] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:edit_object [20Mar2024 20:22:57.599] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:edit_object_response [20Mar2024 20:22:57.601] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:move_chapter [20Mar2024 20:22:57.602] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:move_chapter_response [20Mar2024 20:22:57.603] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:move_quest [20Mar2024 20:22:57.605] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:move_quest_response [20Mar2024 20:22:57.606] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:change_chapter_group [20Mar2024 20:22:57.608] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:change_chapter_group_response [20Mar2024 20:22:57.610] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:move_chapter_group [20Mar2024 20:22:57.611] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:move_chapter_group_response [20Mar2024 20:22:57.612] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:sync_reward_blocking [20Mar2024 20:22:57.614] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:copy_quest [20Mar2024 20:22:57.617] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:copy_chapter_image [20Mar2024 20:22:57.618] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering C2S receiver with id ftbquests:sync_structures_request [20Mar2024 20:22:57.619] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:sync_structures_response [20Mar2024 20:22:57.621] [modloading-worker-0/INFO] [dev.architectury.networking.forge.NetworkManagerImpl/]: Registering S2C receiver with id ftbquests:open_quest_book [20Mar2024 20:22:57.651] [modloading-worker-0/INFO] [Dungeon Crawl/]: Here we go! Launching Dungeon Crawl 2.3.12... [20Mar2024 20:22:57.708] [modloading-worker-0/INFO] [com.scouter.netherdepthsupgrade.modcompat.FarmersDelightCompat/]: Setting up compat for Farmers Delight [20Mar2024 20:22:57.729] [Thread-0/INFO] [ModernFix/]: Please use /mfrc to reload any changed mod config files [20Mar2024 20:22:57.839] [modloading-worker-0/INFO] [Enigmatic Legacy/INFO]: Mod instance constructed successfully. [20Mar2024 20:22:58.096] [modloading-worker-0/INFO] [com.mna.ManaAndArtifice/]: M&A -> Mod Event Bus Handlers Registered [20Mar2024 20:22:58.161] [modloading-worker-0/INFO] [Enchantment Descriptions/]: Loaded config file. [20Mar2024 20:22:58.161] [modloading-worker-0/INFO] [Enchantment Descriptions/]: Saved config file. [20Mar2024 20:22:58.315] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod magnumtorch [20Mar2024 20:22:58.524] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing client components for mod barteringstation [20Mar2024 20:22:58.528] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod barteringstation [20Mar2024 20:22:58.598] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.VariantSelectorModule [20Mar2024 20:22:58.611] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.NarratorReadoutModule [20Mar2024 20:22:58.612] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.ClimateControlRemoverModule [20Mar2024 20:22:58.614] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.EnchantmentsBegoneModule [20Mar2024 20:22:58.617] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.GameNerfsModule [20Mar2024 20:22:58.618] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.SpawnerReplacerModule [20Mar2024 20:22:58.619] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.AdjustableChatModule [20Mar2024 20:22:58.621] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.VillagerRerollingReworkModule [20Mar2024 20:22:58.624] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.OverlayShaderModule [20Mar2024 20:22:58.626] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.experimental.module.EnchantmentPredicatesModule [20Mar2024 20:22:58.626] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantLaddersModule [20Mar2024 20:22:58.626] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantBookshelvesModule [20Mar2024 20:22:58.627] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.BambooBackportModule [20Mar2024 20:22:58.630] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.CompressedBlocksModule [20Mar2024 20:22:58.632] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MorePottedPlantsModule [20Mar2024 20:22:58.633] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.DuskboundBlocksModule [20Mar2024 20:22:58.633] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.WoodenPostsModule [20Mar2024 20:22:58.635] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.ThatchModule [20Mar2024 20:22:58.636] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MoreStoneVariantsModule [20Mar2024 20:22:58.637] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.ShearVinesModule [20Mar2024 20:22:58.639] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.NetherBrickFenceGateModule [20Mar2024 20:22:58.641] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.GoldBarsModule [20Mar2024 20:22:58.642] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.RopeModule [20Mar2024 20:22:58.645] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.CelebratoryLampsModule [20Mar2024 20:22:58.648] [modloading-worker-0/WARN] [mixin/]: @Final field f_116493_:Lnet/minecraft/resources/ResourceLocation; in revampedwolf.mixins.json:client.WolfRendererMixin should be final [20Mar2024 20:22:58.648] [modloading-worker-0/WARN] [mixin/]: @Final field f_116494_:Lnet/minecraft/resources/ResourceLocation; in revampedwolf.mixins.json:client.WolfRendererMixin should be final [20Mar2024 20:22:58.648] [modloading-worker-0/WARN] [mixin/]: @Final field f_116495_:Lnet/minecraft/resources/ResourceLocation; in revampedwolf.mixins.json:client.WolfRendererMixin should be final [20Mar2024 20:22:58.649] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.SoulSandstoneModule [20Mar2024 20:22:58.650] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantChestsModule [20Mar2024 20:22:58.658] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.LeafCarpetModule [20Mar2024 20:22:58.660] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.FramedGlassModule [20Mar2024 20:22:58.661] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VerticalPlanksModule [20Mar2024 20:22:58.662] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VariantFurnacesModule [20Mar2024 20:22:58.664] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.HedgesModule [20Mar2024 20:22:58.665] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.HollowLogsModule [20Mar2024 20:22:58.667] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MidoriModule [20Mar2024 20:22:58.668] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.RainbowLampsModule [20Mar2024 20:22:58.669] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.VerticalSlabsModule [20Mar2024 20:22:58.684] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.ShinglesModule [20Mar2024 20:22:58.686] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.SturdyStoneModule [20Mar2024 20:22:58.689] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.StoolsModule [20Mar2024 20:22:58.690] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.RawMetalBricksModule [20Mar2024 20:22:58.692] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MoreMudBlocksModule [20Mar2024 20:22:58.694] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.GrateModule [20Mar2024 20:22:58.699] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.JapanesePaletteModule [20Mar2024 20:22:58.701] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.MoreBrickTypesModule [20Mar2024 20:22:58.702] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.GlassItemFrameModule [20Mar2024 20:22:58.706] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.building.module.IndustrialPaletteModule [20Mar2024 20:22:58.708] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.NetherObsidianSpikesModule [20Mar2024 20:22:58.711] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.PermafrostModule [20Mar2024 20:22:58.714] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.FairyRingsModule [20Mar2024 20:22:58.717] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.BigStoneClustersModule [20Mar2024 20:22:58.726] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.SpiralSpiresModule [20Mar2024 20:22:58.730] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.AncientWoodModule [20Mar2024 20:22:58.734] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.NewStoneTypesModule [20Mar2024 20:22:58.740] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.BlossomTreesModule [20Mar2024 20:22:58.744] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.GlimmeringWealdModule [20Mar2024 20:22:58.753] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.MonsterBoxModule [20Mar2024 20:22:58.755] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.AzaleaWoodModule [20Mar2024 20:22:58.756] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.NoMoreLavaPocketsModule [20Mar2024 20:22:58.758] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.CorundumModule [20Mar2024 20:22:58.761] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.world.module.ChorusVegetationModule [20Mar2024 20:22:58.764] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.CameraModule [20Mar2024 20:22:58.765] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing client components for mod bettertridents [20Mar2024 20:22:58.766] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.ElytraIndicatorModule [20Mar2024 20:22:58.768] [modloading-worker-0/INFO] [Puzzles Lib/]: Constructing common components for mod bettertridents [20Mar2024 20:22:58.768] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.ImprovedTooltipsModule [20Mar2024 20:22:58.770] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.GreenerGrassModule [20Mar2024 20:22:58.781] [modloading-worker-0/INFO] [be.florens.expandability.ExpandAbility/]: ExpandAbility here, who dis? [20Mar2024 20:22:58.788] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.BucketsShowInhabitantsModule [20Mar2024 20:22:58.789] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.SoulCandlesModule [20Mar2024 20:22:58.790] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.AutoWalkKeybindModule [20Mar2024 20:22:58.792] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.VariantAnimalTexturesModule [20Mar2024 20:22:58.795] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.MicrocraftingHelperModule [20Mar2024 20:22:58.802] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.UsesForCursesModule [20Mar2024 20:22:58.803] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.WoolShutsUpMinecartsModule [20Mar2024 20:22:58.804] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.BackButtonKeybindModule [20Mar2024 20:22:58.808] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.ChestSearchingModule [20Mar2024 20:22:58.808] [modloading-worker-0/INFO] [mixin/]: Mixing MixinMiniInventoryButton from enigmaticlegacy.mixins.json into vazkii.quark.content.management.client.screen.widgets.MiniInventoryButton [20Mar2024 20:22:58.815] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.LongRangePickBlockModule [20Mar2024 20:22:58.816] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.client.module.UsageTickerModule [20Mar2024 20:22:58.818] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.PistonsMoveTileEntitiesModule [20Mar2024 20:22:58.819] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.EnderWatcherModule [20Mar2024 20:22:58.825] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.RedstoneRandomizerModule [20Mar2024 20:22:58.829] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.FeedingTroughModule [20Mar2024 20:22:58.832] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.MetalButtonsModule [20Mar2024 20:22:58.833] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.IronRodModule [20Mar2024 20:22:58.835] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.ObsidianPlateModule [20Mar2024 20:22:58.839] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.ChainsConnectBlocksModule [20Mar2024 20:22:58.840] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.GravisandModule [20Mar2024 20:22:58.841] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.JukeboxAutomationModule [20Mar2024 20:22:58.842] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.DispensersPlaceBlocksModule [20Mar2024 20:22:58.844] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.automation.module.ChuteModule [20Mar2024 20:22:58.846] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.QuickArmorSwappingModule [20Mar2024 20:22:58.848] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.ItemSharingModule [20Mar2024 20:22:58.850] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.AutomaticToolRestockModule [20Mar2024 20:22:58.853] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.ExpandedItemInteractionsModule [20Mar2024 20:22:58.855] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.InventorySortingModule [20Mar2024 20:22:58.856] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.HotbarChangerModule [20Mar2024 20:22:58.858] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.management.module.EasyTransferingModule [20Mar2024 20:22:58.862] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.GoldToolsHaveFortuneModule [20Mar2024 20:22:58.863] [modloading-worker-0/INFO] [mixin/]: Mixing MixinAutomaticRecipeUnlockModule from enigmaticlegacy.mixins.json into vazkii.quark.content.tweaks.module.AutomaticRecipeUnlockModule [20Mar2024 20:22:58.863] [modloading-worker-0/INFO] [mixin/]: Renaming synthetic method lambda$onAwardRecipes$0(Lnet/minecraft/world/item/crafting/Recipe;)Z to md8928a1$lambda$onAwardRecipes$0$0 in enigmaticlegacy.mixins.json:MixinAutomaticRecipeUnlockModule [20Mar2024 20:22:58.865] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.AutomaticRecipeUnlockModule [20Mar2024 20:22:58.867] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.UtilityRecipesModule [20Mar2024 20:22:58.868] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.PoisonPotatoUsageModule [20Mar2024 20:22:58.868] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.BetterElytraRocketModule [20Mar2024 20:22:58.869] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.RenewableSporeBlossomsModule [20Mar2024 20:22:58.870] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.CoralOnCactusModule [20Mar2024 20:22:58.871] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.GlassShardModule [20Mar2024 20:22:58.874] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.PigLittersModule [20Mar2024 20:22:58.876] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.CampfiresBoostElytraModule [20Mar2024 20:22:58.877] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.DyeableItemFramesModule [20Mar2024 20:22:58.879] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SlabsToBlocksModule [20Mar2024 20:22:58.880] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.MapWashingModule [20Mar2024 20:22:58.882] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.EnhancedLaddersModule [20Mar2024 20:22:58.883] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ReacharoundPlacingModule [20Mar2024 20:22:58.884] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.HorsesSwimModule [20Mar2024 20:22:58.885] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SpongeOnWaterPlacementModule [20Mar2024 20:22:58.885] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ArmedArmorStandsModule [20Mar2024 20:22:58.887] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.DoubleDoorOpeningModule [20Mar2024 20:22:58.888] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ZombieVillagersOnNormalModule [20Mar2024 20:22:58.890] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.HoeHarvestingModule [20Mar2024 20:22:58.892] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.EmotesModule [20Mar2024 20:22:58.895] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SlimesToMagmaCubesModule [20Mar2024 20:22:58.896] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SnowGolemPlayerHeadsModule [20Mar2024 20:22:58.896] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.VexesDieWithTheirMastersModule [20Mar2024 20:22:58.897] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.MoreNoteBlockSoundsModule [20Mar2024 20:22:58.899] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.PatTheDogsModule [20Mar2024 20:22:58.901] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.GrabChickensModule [20Mar2024 20:22:58.902] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.MoreBannerLayersModule [20Mar2024 20:22:58.903] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ReplaceScaffoldingModule [20Mar2024 20:22:58.905] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.DiamondRepairModule [20Mar2024 20:22:58.906] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SaferCreaturesModule [20Mar2024 20:22:58.906] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.LockRotationModule [20Mar2024 20:22:58.907] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.VillagersFollowEmeraldsModule [20Mar2024 20:22:58.908] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.CompassesWorkEverywhereModule [20Mar2024 20:22:58.910] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.NoDurabilityOnCosmeticsModule [20Mar2024 20:22:58.910] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SpongesBetterModule [20Mar2024 20:22:58.911] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SignEditingModule [20Mar2024 20:22:58.913] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.SimpleHarvestModule [20Mar2024 20:22:58.915] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.DragonScalesModule [20Mar2024 20:22:58.916] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tweaks.module.ShulkerPackingModule [20Mar2024 20:22:58.917] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.FoxhoundModule [20Mar2024 20:22:58.919] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.WraithModule [20Mar2024 20:22:58.921] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.CrabsModule [20Mar2024 20:22:58.923] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.ForgottenModule [20Mar2024 20:22:58.927] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.ShibaModule [20Mar2024 20:22:58.928] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.StonelingsModule [20Mar2024 20:22:58.930] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.mobs.module.ToretoiseModule [20Mar2024 20:22:58.932] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.BeaconRedirectionModule [20Mar2024 20:22:58.933] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.AmbientDiscsModule [20Mar2024 20:22:58.936] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.PathfinderMapsModule [20Mar2024 20:22:58.940] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.ColorRunesModule [20Mar2024 20:22:58.943] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.PickarangModule [20Mar2024 20:22:58.948] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.ParrotEggsModule [20Mar2024 20:22:58.949] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.TrowelModule [20Mar2024 20:22:58.953] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.AbacusModule [20Mar2024 20:22:58.955] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.BottledCloudModule [20Mar2024 20:22:58.957] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.TorchArrowModule [20Mar2024 20:22:58.961] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.BundleRecipeModule [20Mar2024 20:22:58.987] [modloading-worker-0/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 5 calls to Enchantment#getMaxLevel() in vazkii/quark/content/tools/module/AncientTomesModule [20Mar2024 20:22:58.990] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.AncientTomesModule [20Mar2024 20:22:58.995] [modloading-worker-0/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 3 calls to Enchantment#getMaxLevel() in vazkii/quark/content/tools/item/AncientTomeItem [20Mar2024 20:22:58.998] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.EndermoshMusicDiscModule [20Mar2024 20:22:58.999] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.SeedPouchModule [20Mar2024 20:22:59.003] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.SkullPikesModule [20Mar2024 20:22:59.006] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.content.tools.module.SlimeInABucketModule [20Mar2024 20:22:59.008] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.PipesModule [20Mar2024 20:22:59.014] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.BackpackModule [20Mar2024 20:22:59.017] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.TinyPotatoModule [20Mar2024 20:22:59.022] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.MatrixEnchantingModule [20Mar2024 20:22:59.025] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.TotemOfHoldingModule [20Mar2024 20:22:59.027] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.CrateModule [20Mar2024 20:22:59.029] [modloading-worker-0/INFO] [quark/]: Found Quark module class vazkii.quark.addons.oddities.module.MagnetsModule [20Mar2024 20:22:59.032] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step CONSTRUCT [20Mar2024 20:22:59.149] [modloading-worker-0/INFO] [quark/]: Loading Module Pistons Move Tile Entities [20Mar2024 20:22:59.151] [modloading-worker-0/INFO] [quark/]: Loading Module Ender Watcher [20Mar2024 20:22:59.152] [modloading-worker-0/INFO] [quark/]: Loading Module Redstone Randomizer [20Mar2024 20:22:59.152] [modloading-worker-0/INFO] [quark/]: Loading Module Feeding Trough [20Mar2024 20:22:59.154] [modloading-worker-0/INFO] [quark/]: Loading Module Metal Buttons [20Mar2024 20:22:59.154] [modloading-worker-0/INFO] [quark/]: Loading Module Iron Rod [20Mar2024 20:22:59.154] [modloading-worker-0/INFO] [quark/]: Loading Module Obsidian Plate [20Mar2024 20:22:59.154] [modloading-worker-0/INFO] [quark/]: Loading Module Chains Connect Blocks [20Mar2024 20:22:59.154] [modloading-worker-0/INFO] [quark/]: Loading Module Gravisand [20Mar2024 20:22:59.154] [modloading-worker-0/INFO] [quark/]: Loading Module Jukebox Automation [20Mar2024 20:22:59.155] [modloading-worker-0/INFO] [quark/]: Loading Module Dispensers Place Blocks [20Mar2024 20:22:59.155] [modloading-worker-0/INFO] [quark/]: Loading Module Chute [20Mar2024 20:22:59.156] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Ladders [20Mar2024 20:22:59.156] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Bookshelves [20Mar2024 20:22:59.156] [modloading-worker-0/INFO] [quark/]: Loading Module Bamboo Backport [20Mar2024 20:22:59.156] [modloading-worker-0/INFO] [quark/]: Loading Module Compressed Blocks [20Mar2024 20:22:59.156] [modloading-worker-0/INFO] [quark/]: Loading Module More Potted Plants [20Mar2024 20:22:59.156] [modloading-worker-0/INFO] [quark/]: Loading Module Duskbound Blocks [20Mar2024 20:22:59.156] [modloading-worker-0/INFO] [quark/]: Loading Module Wooden Posts [20Mar2024 20:22:59.156] [modloading-worker-0/INFO] [quark/]: Loading Module Thatch [20Mar2024 20:22:59.156] [modloading-worker-0/INFO] [quark/]: Loading Module More Stone Variants [20Mar2024 20:22:59.157] [modloading-worker-0/INFO] [quark/]: Loading Module Shear Vines [20Mar2024 20:22:59.157] [modloading-worker-0/INFO] [quark/]: Loading Module Nether Brick Fence Gate [20Mar2024 20:22:59.157] [modloading-worker-0/INFO] [quark/]: Loading Module Gold Bars [20Mar2024 20:22:59.158] [modloading-worker-0/INFO] [quark/]: Loading Module Rope [20Mar2024 20:22:59.158] [modloading-worker-0/INFO] [quark/]: Loading Module Celebratory Lamps [20Mar2024 20:22:59.158] [modloading-worker-0/INFO] [quark/]: Loading Module Soul Sandstone [20Mar2024 20:22:59.159] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Chests [20Mar2024 20:22:59.159] [modloading-worker-0/INFO] [quark/]: Loading Module Leaf Carpet [20Mar2024 20:22:59.159] [modloading-worker-0/INFO] [quark/]: Loading Module Framed Glass [20Mar2024 20:22:59.159] [modloading-worker-0/INFO] [quark/]: Loading Module Vertical Planks [20Mar2024 20:22:59.159] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Furnaces [20Mar2024 20:22:59.159] [modloading-worker-0/INFO] [quark/]: Loading Module Hedges [20Mar2024 20:22:59.159] [modloading-worker-0/INFO] [quark/]: Loading Module Hollow Logs [20Mar2024 20:22:59.160] [modloading-worker-0/INFO] [quark/]: Loading Module Midori [20Mar2024 20:22:59.160] [modloading-worker-0/INFO] [quark/]: Loading Module Rainbow Lamps [20Mar2024 20:22:59.160] [modloading-worker-0/INFO] [quark/]: Loading Module Vertical Slabs [20Mar2024 20:22:59.161] [modloading-worker-0/INFO] [quark/]: Loading Module Shingles [20Mar2024 20:22:59.161] [modloading-worker-0/INFO] [quark/]: Loading Module Sturdy Stone [20Mar2024 20:22:59.161] [modloading-worker-0/INFO] [quark/]: Loading Module Stools [20Mar2024 20:22:59.163] [modloading-worker-0/INFO] [quark/]: Loading Module Raw Metal Bricks [20Mar2024 20:22:59.163] [modloading-worker-0/INFO] [quark/]: Loading Module More Mud Blocks [20Mar2024 20:22:59.163] [modloading-worker-0/INFO] [quark/]: Loading Module Grate [20Mar2024 20:22:59.163] [modloading-worker-0/INFO] [quark/]: Loading Module Japanese Palette [20Mar2024 20:22:59.163] [modloading-worker-0/INFO] [quark/]: Loading Module More Brick Types [20Mar2024 20:22:59.163] [modloading-worker-0/INFO] [quark/]: Loading Module Glass Item Frame [20Mar2024 20:22:59.163] [modloading-worker-0/INFO] [quark/]: Loading Module Industrial Palette [20Mar2024 20:22:59.163] [modloading-worker-0/INFO] [quark/]: Loading Module Quick Armor Swapping [20Mar2024 20:22:59.164] [modloading-worker-0/INFO] [quark/]: Loading Module Item Sharing [20Mar2024 20:22:59.167] [modloading-worker-0/INFO] [quark/]: Loading Module Automatic Tool Restock [20Mar2024 20:22:59.171] [modloading-worker-0/INFO] [quark/]: Loading Module Expanded Item Interactions [20Mar2024 20:22:59.173] [modloading-worker-0/INFO] [quark/]: Loading Module Inventory Sorting [20Mar2024 20:22:59.173] [modloading-worker-0/INFO] [quark/]: Loading Module Hotbar Changer [20Mar2024 20:22:59.175] [modloading-worker-0/INFO] [quark/]: Loading Module Easy Transfering [20Mar2024 20:22:59.175] [modloading-worker-0/INFO] [quark/]: Loading Module Beacon Redirection [20Mar2024 20:22:59.175] [modloading-worker-0/INFO] [quark/]: Loading Module Ambient Discs [20Mar2024 20:22:59.176] [modloading-worker-0/INFO] [quark/]: Loading Module Pathfinder Maps [20Mar2024 20:22:59.179] [modloading-worker-0/INFO] [quark/]: Loading Module Color Runes [20Mar2024 20:22:59.181] [modloading-worker-0/INFO] [quark/]: Loading Module Pickarang [20Mar2024 20:22:59.181] [modloading-worker-0/INFO] [quark/]: Loading Module Parrot Eggs [20Mar2024 20:22:59.240] [modloading-worker-0/INFO] [quark/]: Loading Module Trowel [20Mar2024 20:22:59.240] [modloading-worker-0/INFO] [quark/]: Loading Module Abacus [20Mar2024 20:22:59.242] [modloading-worker-0/INFO] [quark/]: Loading Module Bottled Cloud [20Mar2024 20:22:59.243] [modloading-worker-0/INFO] [quark/]: Loading Module Torch Arrow [20Mar2024 20:22:59.243] [modloading-worker-0/INFO] [quark/]: Loading Module Bundle Recipe [20Mar2024 20:22:59.243] [modloading-worker-0/INFO] [quark/]: Loading Module Ancient Tomes [20Mar2024 20:22:59.247] [modloading-worker-0/INFO] [quark/]: Loading Module Endermosh Music Disc [20Mar2024 20:22:59.248] [modloading-worker-0/INFO] [quark/]: Loading Module Seed Pouch [20Mar2024 20:22:59.249] [modloading-worker-0/INFO] [quark/]: Loading Module Skull Pikes [20Mar2024 20:22:59.250] [modloading-worker-0/INFO] [quark/]: Loading Module Slime In A Bucket [20Mar2024 20:22:59.251] [modloading-worker-0/INFO] [quark/]: Loading Module Gold Tools Have Fortune [20Mar2024 20:22:59.252] [modloading-worker-0/INFO] [quark/]: Loading Module Automatic Recipe Unlock [20Mar2024 20:22:59.254] [modloading-worker-0/INFO] [quark/]: Loading Module Utility Recipes [20Mar2024 20:22:59.255] [modloading-worker-0/INFO] [quark/]: Loading Module Poison Potato Usage [20Mar2024 20:22:59.256] [modloading-worker-0/INFO] [quark/]: Loading Module Better Elytra Rocket [20Mar2024 20:22:59.257] [modloading-worker-0/INFO] [quark/]: Loading Module Renewable Spore Blossoms [20Mar2024 20:22:59.258] [modloading-worker-0/INFO] [quark/]: Loading Module Coral On Cactus [20Mar2024 20:22:59.258] [modloading-worker-0/INFO] [quark/]: Loading Module Glass Shard [20Mar2024 20:22:59.258] [modloading-worker-0/INFO] [quark/]: Loading Module Pig Litters [20Mar2024 20:22:59.259] [modloading-worker-0/INFO] [quark/]: Loading Module Campfires Boost Elytra [20Mar2024 20:22:59.260] [modloading-worker-0/INFO] [quark/]: Loading Module Dyeable Item Frames [20Mar2024 20:22:59.261] [modloading-worker-0/INFO] [quark/]: Loading Module Slabs To Blocks [20Mar2024 20:22:59.264] [modloading-worker-0/INFO] [quark/]: Loading Module Map Washing [20Mar2024 20:22:59.264] [modloading-worker-0/INFO] [quark/]: Loading Module Enhanced Ladders [20Mar2024 20:22:59.266] [modloading-worker-0/INFO] [quark/]: Loading Module Reacharound Placing [20Mar2024 20:22:59.268] [modloading-worker-0/INFO] [quark/]: Loading Module Horses Swim [20Mar2024 20:22:59.268] [modloading-worker-0/INFO] [quark/]: Loading Module Sponge On Water Placement [20Mar2024 20:22:59.269] [modloading-worker-0/INFO] [quark/]: Loading Module Armed Armor Stands [20Mar2024 20:22:59.270] [modloading-worker-0/INFO] [quark/]: Loading Module Double Door Opening [20Mar2024 20:22:59.271] [modloading-worker-0/INFO] [quark/]: Loading Module Zombie Villagers On Normal [20Mar2024 20:22:59.273] [modloading-worker-0/INFO] [quark/]: Loading Module Hoe Harvesting [20Mar2024 20:22:59.273] [modloading-worker-0/INFO] [quark/]: Loading Module Emotes [20Mar2024 20:22:59.277] [modloading-worker-0/INFO] [quark/]: Loading Module Slimes To Magma Cubes [20Mar2024 20:22:59.277] [modloading-worker-0/INFO] [quark/]: Loading Module Snow Golem Player Heads [20Mar2024 20:22:59.278] [modloading-worker-0/INFO] [quark/]: Loading Module Vexes Die With Their Masters [20Mar2024 20:22:59.279] [modloading-worker-0/INFO] [quark/]: Loading Module More Note Block Sounds [20Mar2024 20:22:59.279] [modloading-worker-0/INFO] [quark/]: Loading Module Pat The Dogs [20Mar2024 20:22:59.280] [modloading-worker-0/INFO] [quark/]: Loading Module Grab Chickens [20Mar2024 20:22:59.282] [modloading-worker-0/INFO] [quark/]: Loading Module More Banner Layers [20Mar2024 20:22:59.282] [modloading-worker-0/INFO] [quark/]: Loading Module Replace Scaffolding [20Mar2024 20:22:59.282] [modloading-worker-0/INFO] [quark/]: Loading Module Diamond Repair [20Mar2024 20:22:59.283] [modloading-worker-0/INFO] [quark/]: Loading Module Safer Creatures [20Mar2024 20:22:59.283] [modloading-worker-0/INFO] [quark/]: Loading Module Lock Rotation [20Mar2024 20:22:59.285] [modloading-worker-0/INFO] [quark/]: Loading Module Villagers Follow Emeralds [20Mar2024 20:22:59.286] [modloading-worker-0/INFO] [quark/]: Loading Module Compasses Work Everywhere [20Mar2024 20:22:59.286] [modloading-worker-0/INFO] [quark/]: Loading Module No Durability On Cosmetics [20Mar2024 20:22:59.287] [modloading-worker-0/INFO] [quark/]: Loading Module Sponges Better [20Mar2024 20:22:59.287] [modloading-worker-0/INFO] [quark/]: Loading Module Sign Editing [20Mar2024 20:22:59.288] [modloading-worker-0/INFO] [quark/]: Loading Module Simple Harvest [20Mar2024 20:22:59.290] [modloading-worker-0/INFO] [quark/]: Loading Module Dragon Scales [20Mar2024 20:22:59.290] [modloading-worker-0/INFO] [quark/]: Loading Module Shulker Packing [20Mar2024 20:22:59.291] [modloading-worker-0/INFO] [quark/]: Loading Module Nether Obsidian Spikes [20Mar2024 20:22:59.291] [modloading-worker-0/INFO] [quark/]: Loading Module Permafrost [20Mar2024 20:22:59.291] [modloading-worker-0/INFO] [quark/]: Loading Module Fairy Rings [20Mar2024 20:22:59.291] [modloading-worker-0/INFO] [quark/]: Loading Module Big Stone Clusters [20Mar2024 20:22:59.291] [modloading-worker-0/INFO] [quark/]: Loading Module Spiral Spires [20Mar2024 20:22:59.292] [modloading-worker-0/INFO] [quark/]: Loading Module Ancient Wood [20Mar2024 20:22:59.293] [modloading-worker-0/INFO] [quark/]: Loading Module New Stone Types [20Mar2024 20:22:59.293] [modloading-worker-0/INFO] [quark/]: Loading Module Blossom Trees [20Mar2024 20:22:59.294] [modloading-worker-0/INFO] [quark/]: Loading Module Glimmering Weald [20Mar2024 20:22:59.294] [modloading-worker-0/INFO] [quark/]: Loading Module Monster Box [20Mar2024 20:22:59.294] [modloading-worker-0/INFO] [quark/]: Loading Module Azalea Wood [20Mar2024 20:22:59.294] [modloading-worker-0/INFO] [quark/]: Loading Module No More Lava Pockets [20Mar2024 20:22:59.295] [modloading-worker-0/INFO] [quark/]: Loading Module Corundum [20Mar2024 20:22:59.295] [modloading-worker-0/INFO] [quark/]: Loading Module Chorus Vegetation [20Mar2024 20:22:59.295] [modloading-worker-0/INFO] [quark/]: Loading Module Foxhound [20Mar2024 20:22:59.299] [modloading-worker-0/INFO] [quark/]: Loading Module Wraith [20Mar2024 20:22:59.299] [modloading-worker-0/INFO] [quark/]: Loading Module Crabs [20Mar2024 20:22:59.302] [modloading-worker-0/INFO] [quark/]: Loading Module Forgotten [20Mar2024 20:22:59.303] [modloading-worker-0/INFO] [quark/]: Loading Module Shiba [20Mar2024 20:22:59.303] [modloading-worker-0/INFO] [quark/]: Loading Module Stonelings [20Mar2024 20:22:59.306] [modloading-worker-0/INFO] [quark/]: Loading Module Toretoise [20Mar2024 20:22:59.309] [modloading-worker-0/INFO] [quark/]: Loading Module Camera [20Mar2024 20:22:59.312] [modloading-worker-0/INFO] [quark/]: Loading Module Elytra Indicator [20Mar2024 20:22:59.313] [modloading-worker-0/INFO] [quark/]: Loading Module Improved Tooltips [20Mar2024 20:22:59.314] [modloading-worker-0/INFO] [quark/]: Loading Module Greener Grass [20Mar2024 20:22:59.315] [modloading-worker-0/INFO] [quark/]: Loading Module Buckets Show Inhabitants [20Mar2024 20:22:59.315] [modloading-worker-0/INFO] [quark/]: Loading Module Soul Candles [20Mar2024 20:22:59.315] [modloading-worker-0/INFO] [quark/]: Loading Module Auto Walk Keybind [20Mar2024 20:22:59.317] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Animal Textures [20Mar2024 20:22:59.318] [modloading-worker-0/INFO] [quark/]: Loading Module Microcrafting Helper [20Mar2024 20:22:59.330] [modloading-worker-0/INFO] [quark/]: Loading Module Uses For Curses [20Mar2024 20:22:59.331] [modloading-worker-0/INFO] [quark/]: Loading Module Wool Shuts Up Minecarts [20Mar2024 20:22:59.331] [modloading-worker-0/INFO] [quark/]: Loading Module Back Button Keybind [20Mar2024 20:22:59.332] [modloading-worker-0/INFO] [quark/]: Loading Module Chest Searching [20Mar2024 20:22:59.334] [modloading-worker-0/INFO] [quark/]: Loading Module Long Range Pick Block [20Mar2024 20:22:59.334] [modloading-worker-0/INFO] [quark/]: Loading Module Usage Ticker [20Mar2024 20:22:59.335] [modloading-worker-0/INFO] [quark/]: Loading Module Variant Selector [20Mar2024 20:22:59.335] [modloading-worker-0/INFO] [quark/]: Loading Module Narrator Readout [20Mar2024 20:22:59.335] [modloading-worker-0/INFO] [quark/]: Loading Module Climate Control Remover [20Mar2024 20:22:59.335] [modloading-worker-0/INFO] [quark/]: Loading Module Enchantments Begone [20Mar2024 20:22:59.335] [modloading-worker-0/INFO] [quark/]: Loading Module Game Nerfs [20Mar2024 20:22:59.335] [modloading-worker-0/INFO] [quark/]: Loading Module Spawner Replacer [20Mar2024 20:22:59.336] [modloading-worker-0/INFO] [quark/]: Loading Module Adjustable Chat [20Mar2024 20:22:59.336] [modloading-worker-0/INFO] [quark/]: Loading Module Villager Rerolling Rework [20Mar2024 20:22:59.336] [modloading-worker-0/INFO] [quark/]: Loading Module Overlay Shader [20Mar2024 20:22:59.336] [modloading-worker-0/INFO] [quark/]: Loading Module Enchantment Predicates [20Mar2024 20:22:59.336] [modloading-worker-0/INFO] [quark/]: Loading Module Pipes [20Mar2024 20:22:59.336] [modloading-worker-0/INFO] [quark/]: Loading Module Backpack [20Mar2024 20:22:59.336] [modloading-worker-0/INFO] [quark/]: Loading Module Tiny Potato [20Mar2024 20:22:59.336] [modloading-worker-0/INFO] [quark/]: Loading Module Matrix Enchanting [20Mar2024 20:22:59.336] [modloading-worker-0/INFO] [quark/]: Loading Module Totem Of Holding [20Mar2024 20:22:59.336] [modloading-worker-0/INFO] [quark/]: Loading Module Crate [20Mar2024 20:22:59.336] [modloading-worker-0/INFO] [quark/]: Loading Module Magnets [20Mar2024 20:22:59.350] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step CONSTRUCT_CLIENT [20Mar2024 20:23:12.741] [modloading-worker-0/INFO] [com.sky.weaponmaster.WeaponMaster/]: Total varients loaded: 6425544 [20Mar2024 20:23:12.741] [modloading-worker-0/INFO] [com.sky.weaponmaster.WeaponMaster/]: Total varients loaded (inc. passives + abilities): 3675411168 [20Mar2024 20:23:12.835] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Finished registering registries! [20Mar2024 20:23:13.063] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:13.063] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:13.064] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:13.064] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:13.084] [Render thread/INFO] [quark/]: Dispatching Module Step REGISTER [20Mar2024 20:23:13.725] [Render thread/INFO] [quark/]: Dispatching Module Step POST_REGISTER [20Mar2024 20:23:14.079] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:14.079] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:14.079] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:14.079] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:15.683] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:15.684] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:15.684] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:15.684] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:17.917] [Render thread/INFO] [net.mehvahdjukaar.vsc.VSC/]: Initialized slab sets in: 27 ms [20Mar2024 20:23:17.918] [Render thread/WARN] [moonlight/]: Failed to find custom wood type twigs:bamboo [20Mar2024 20:23:17.945] [Render thread/INFO] [moonlight/]: Initialized block sets in 56ms [20Mar2024 20:23:17.974] [Render thread/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Registering Compat Wood Blocks [20Mar2024 20:23:18.210] [Render thread/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Registering Compat Leaves Blocks [20Mar2024 20:23:20.809] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:20.809] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:20.809] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:20.809] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:20.866] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:20.866] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:20.866] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:20.866] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:20.900] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:20.900] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:20.900] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:20.900] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:20.968] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:20.968] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:20.968] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:20.968] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:21.002] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:21.002] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:21.002] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:21.002] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:21.010] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:21.010] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:21.010] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:21.010] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:21.025] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:21.025] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:21.025] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:21.025] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:21.139] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:21.139] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:21.139] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:21.139] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:21.385] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:21.385] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:21.385] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:21.385] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:22.159] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:22.159] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:22.159] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:22.159] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:22.176] [Render thread/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#getMaxLevel() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [20Mar2024 20:23:22.176] [Render thread/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#isTreasureOnly() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [20Mar2024 20:23:22.176] [Render thread/INFO] [net.minecraftforge.coremod.CoreMod.apotheosis/COREMODLOG]: Replaced 1 calls to Enchantment#isTradeable() in net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds [20Mar2024 20:23:23.143] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:23.143] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:23.143] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:23.143] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:23.153] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:23.153] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:23.153] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:23.153] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:23.173] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:23.173] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:23.174] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:23.174] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:23.200] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:23.200] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:23.200] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:23.200] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:23.209] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:23.209] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:23.209] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:23.209] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:23.220] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:23.220] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:23.220] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:23.220] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:23.248] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:23.248] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:23.248] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:23.248] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:23.312] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:23.312] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:23.312] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:23.312] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:23.332] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:23.332] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:23.332] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:23.332] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:23.348] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:23.348] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:23.348] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:23.348] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:23.356] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:23.356] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:23.356] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:23.356] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:23.363] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:23.364] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:23.364] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:23.364] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:23.376] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:23.376] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:23.376] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:23.376] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:24.208] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:24.208] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:24.208] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:24.211] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:24.806] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:24.807] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:24.807] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:24.807] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:24.814] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:24.815] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:24.815] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:24.815] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:24.841] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:24.841] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:24.841] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:24.841] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:24.854] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:24.854] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:24.854] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:24.854] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:24.936] [Render thread/INFO] [ModernFix/]: Instantiating Mojang DFU [20Mar2024 20:23:25.320] [Render thread/INFO] [net.minecraft.util.datafix.DataFixers/]: Building unoptimized datafixer [20Mar2024 20:23:25.387] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:25.387] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:25.387] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:25.387] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant abstract_blue [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant abstract_rainbow [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant abstract_red [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant abstract_sunset [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant arachnophobe [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant barn_owl [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant big_z [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant blue_bird [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant bluesclues [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant borgia [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant cane [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant cat_black [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant cat_gray [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant cat_orange [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant cat [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant colorful_squares [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant crest [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant danger_zone [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant decorative_gun [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant exit_down [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant exit_up [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant exit_left [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant exit_right [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant face_bat [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant face_chicken [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant face_cow [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant face_creeper [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant face_dog [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant face_enderman [20Mar2024 20:23:25.510] [Render thread/INFO] [paintings/]: Registered variant face_pig [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant face_pigman [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant face_silverfish [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant face_skeleton [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant face_squid [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant face_zombie [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant fishes [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant flowers [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant fruits [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant ghost [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant glowlamp [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant glowstone_hourglass [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant iluvmc [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant link [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant mine_prosperity [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant no_trespassing_for_mobs [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant ocelot [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant penguin [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant pig_on_a_cliff [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant pkmn_blue [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant pkmn_red [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant pkmn_green [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant plains_hut [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant portrait_2 [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant portrait [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant prison [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant prosperity [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant rest [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant skeleton [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant sky [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant skyblock [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant snake [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant snow_landscape [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant subaraki [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant synth_city [20Mar2024 20:23:25.511] [Render thread/INFO] [paintings/]: Registered variant tapistry_a [20Mar2024 20:23:25.512] [Render thread/INFO] [paintings/]: Registered variant tapistry_b [20Mar2024 20:23:25.512] [Render thread/INFO] [paintings/]: Registered variant tapistry_purple [20Mar2024 20:23:25.512] [Render thread/INFO] [paintings/]: Registered variant torched [20Mar2024 20:23:25.512] [Render thread/INFO] [paintings/]: Registered variant waterfall [20Mar2024 20:23:25.512] [Render thread/INFO] [paintings/]: Registered variant whale [20Mar2024 20:23:25.512] [Render thread/INFO] [paintings/]: Registered variant wheat_field [20Mar2024 20:23:25.512] [Render thread/INFO] [paintings/]: Registered variant wolf_in_wheat [20Mar2024 20:23:25.517] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:25.517] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:25.518] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:25.518] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:25.526] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:25.527] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:25.527] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:25.527] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:25.534] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:25.534] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:25.534] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:25.535] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:25.542] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:25.542] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:25.543] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:25.543] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:25.551] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:25.551] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:25.551] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:25.551] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:25.559] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:25.559] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:25.559] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:25.559] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:25.825] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:25.843] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:25.843] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:25.843] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:25.921] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:25.921] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:25.921] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:25.921] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:25.997] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:25.998] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:25.998] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:25.998] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.065] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.065] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.065] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.065] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.088] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.088] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.088] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.088] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.103] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.104] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.104] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.104] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.118] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.118] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.118] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.118] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.144] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.144] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.144] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.144] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.159] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.159] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.159] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.159] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.169] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.170] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.170] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.170] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.178] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.178] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.178] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.178] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.193] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.193] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.193] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.193] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.215] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.216] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.216] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.216] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.234] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.234] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.234] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.234] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.243] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.243] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.243] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.243] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.252] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.252] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.252] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.252] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.261] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.261] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.261] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.261] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.270] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.270] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.270] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.270] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.279] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.279] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.279] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.279] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.288] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.288] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.288] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.288] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.298] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.298] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.298] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.298] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.319] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.319] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.319] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.320] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.357] [Render thread/ERROR] [net.minecraft.Util/]: Adding duplicate key 'ResourceKey[minecraft:worldgen/structure_type / bosses_of_mass_destruction:void_blossom]' to registry [20Mar2024 20:23:26.357] [Render thread/ERROR] [net.minecraft.Util/]: Adding duplicate value 'com.cerbon.bosses_of_mass_destruction.structure.BMDStructures$$Lambda$42903/0x000000080556d0c0@31e75caf' to registry [20Mar2024 20:23:26.358] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.358] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.358] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.358] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.375] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.375] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.375] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.375] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.387] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.387] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.387] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.387] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.397] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.397] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.397] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.397] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.423] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.423] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.423] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.423] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.442] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.442] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.442] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.442] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.454] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.454] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.454] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.454] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.476] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.476] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.476] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.476] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.484] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.484] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.484] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.484] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.493] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.493] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.493] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.493] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.503] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.503] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.503] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.503] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.513] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.513] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.513] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.513] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.521] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.521] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.521] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.521] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.529] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.529] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.530] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.530] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.538] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.538] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.538] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.538] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.546] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.546] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.546] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.546] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.553] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.554] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.554] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.554] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.561] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.561] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.561] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.562] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.569] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.570] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.570] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.570] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.577] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.577] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.577] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.577] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.585] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.585] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.585] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.585] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.597] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.598] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.598] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.598] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.605] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.605] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.605] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.606] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.633] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.633] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.633] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.633] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.641] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.641] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.641] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.641] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.650] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.650] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.650] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.650] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.658] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.659] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.659] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.659] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.667] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.667] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.667] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.667] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.685] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.685] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.685] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.685] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.695] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.695] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.695] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.695] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.726] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.726] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.726] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.726] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.742] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.742] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.742] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.742] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.753] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.753] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.753] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.753] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.778] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.778] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.778] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.778] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.820] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.820] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.820] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.820] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.829] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.829] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.829] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.829] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.837] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.837] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.837] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.837] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.845] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.845] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.845] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.845] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.852] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.852] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.852] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.852] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.860] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.860] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.860] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.860] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.868] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.868] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.868] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.868] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.876] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.877] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.883] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.883] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.891] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.891] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.891] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.891] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.898] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.898] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.898] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.898] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.932] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.933] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.933] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.933] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.940] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.941] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.941] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.941] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.948] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.948] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.948] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.948] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.956] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.957] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.957] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.957] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.964] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.964] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.964] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.964] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.971] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.971] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.972] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.972] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.981] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.981] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.981] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.981] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:26.999] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:26.999] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:26.999] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:26.999] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:27.007] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:27.007] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:27.007] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:27.007] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:27.014] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Ritual Effects Registered [20Mar2024 20:23:27.015] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Containers Registered [20Mar2024 20:23:27.015] [Render thread/INFO] [com.mna.ManaAndArtifice/]: Mana and Artifice >> Registered Construct Tasks [20Mar2024 20:23:27.015] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Block Items Registered [20Mar2024 20:23:27.026] [Render thread/INFO] [mixin/]: Mixing MixinForgeHooks from enigmaticlegacy.mixins.json into net.minecraftforge.common.ForgeHooks [20Mar2024 20:23:27.135] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class com.mrbysco.raided.entity.Inquisitor from class com.mrbysco.raided.entity.Necromancer [20Mar2024 20:23:27.183] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class com.mna.entities.boss.BossMonster from class com.mna.entities.boss.Odin [20Mar2024 20:23:27.183] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class com.mna.entities.boss.BossMonster from class com.mna.entities.boss.Odin [20Mar2024 20:23:27.234] [Render thread/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class net.minecraft.world.entity.GlowSquid from class com.nitespring.monsterplus.common.entity.GlowSkeleton [20Mar2024 20:23:27.293] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file YungsBetterDungeons-1.19.2-Forge-3.2.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.295] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file open-parties-and-claims-forge-1.19.2-0.20.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Public GUI Announcement-forge-1.19.2-4.3.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file keebszs_battle_towers-0.5.0-1.19.x.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Entity_Collision_FPS_Fix-forge-1.19-2.0.0.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Strawgolem-forge-1.19.2-2.0.0-beta.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file modernfix-forge-5.9.3+mc1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file YungsApi-1.19.2-Forge-3.8.10.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file clientcrafting-1.19.2-1.6.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Apotheosis-1.19.2-6.5.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file PickUpNotifier-v4.2.4-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file SnowRealMagic-1.19.2-forge-6.5.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file whatareyouvotingfor2022-1.19.2-1.9.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file YungsBetterNetherFortresses-1.19.2-Forge-1.0.6.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file gwyn mod 1.19.2 (v3).jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file cloth-config-8.3.115-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file revampedwolf-1.19.2-4.0.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file embeddium-0.2.9+mc1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file structure_gel-1.19.2-2.7.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.296] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file explorations-forge-1.19.2-1.5.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file corpse-1.19.2-1.0.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file TaxOceanVillager+M.1.19+ForM-1.1.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file handcrafted-forge-1.19.2-2.0.6.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file repurposed_structures_forge-6.3.28+1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file morevillagers-forge-1.19-4.0.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file BetterCompatibilityChecker-1.0.10-build.50+mc1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file dungeons_plus-1.19.2-1.3.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file simply_swords_with_epicfight_mod_1.19.2 (v3).jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file transparent-5.1.2+1.19-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Highlighter-1.19.1-1.1.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file spark-1.10.37-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Philips-Ruins1.19.2-7.8.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file lightspeed-1.19.2-1.0.5.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file soul_like_boss_mod_1.19.2_(v72).jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file reforgium-1.0.12a.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file YungsExtras-1.19.2-Forge-3.1.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file EverPotion-1.19.2-forge-5.0.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file cumulus_menus-1.19.2-1.0.0-beta.1-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file NetherChested-v4.0.4-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.297] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file YungsBetterEndIsland-1.19.2-Forge-1.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file nitrogen_internals-1.19.2-0.1.0-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file FallingTree-1.19.2-3.10.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file KryptonReforged-0.2.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file l2library-1.9.7.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file illageandspillage-1.19.2-1.2.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file EnchantingInfuser-v4.2.2-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file NekosEnchantedBooks-1.19-1.8.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file YungsBetterJungleTemples-1.19.2-Forge-1.0.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Kiwi-1.19.2-forge-8.3.6.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file mining_helmet-1.19-2.1.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file VisualWorkbench-v4.2.4-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file AttributeFix-Forge-1.19.2-17.2.8.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file WeaponsOfMiracles-19.1.7.37.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file libraryferret-forge-1.19.2-4.0.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file goblintraders-1.8.0-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file caelus-forge-1.19.2-3.0.0.6.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Paxi-1.19.2-Forge-3.0.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file immersive_weathering-1.19.2-1.2.10-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file fullstackwatchdog-1.0.1+1.19.2-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file awesomedungeon-forge-1.19.2-3.2.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.298] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file integrated_api_forge-1.2.7+1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file EpheroLib-1.19.2-FORGE-1.0.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file snowundertrees-1.19.2-1.3.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file DungeonsArise-1.19.2-2.1.56-beta.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file awesomedungeonocean-forge-1.19.2-3.3.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file tectonic-mod-1.19.2-v2.2.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file hearths-v1.0.0-mc1.19u1.19.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file dungeons_1.17_mc1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file smoothchunk-1.19.2-3.5.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file TerraBlender-forge-1.19.2-2.0.1.166.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Necronomicon-Forge-1.3.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Luna-FORGE-MC1.19.X-1.0.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Ksyxis-1.2.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file fastpaintings-1.19-1.1.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file betterfpsdist-1.19.2-4.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Paintings-forge-1.19.2-10.2.4.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file notenoughanimations-forge-1.6.2-mc1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file flywheel-forge-1.19.2-0.6.10-20.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file shadowizardlib-1.19.2-1.0.8.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.299] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file JustEnoughProfessions-forge-1.19.2-2.0.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file almostunified-forge-1.19.2-0.7.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ImmediatelyFast-1.2.7+1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file upgradednetherite_ultimate-1.19.2-4.1.0.4-release.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file slimy-stuff-1.19.2-1.0.9.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Ryoamiclights-0.1.4+1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file textrues_embeddium_options-0.1.1+mc1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file rebind_narrator-forge-1.19.2-2.0.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file CosmeticArmorReworked-1.19.2-v1a.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file EuphoriaPatcher-0.1.1-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file End's Phantasm - BETAv1.2.10.5 - 1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file weaponmaster_ydm-forge-1.19.2-4.2.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file aether_enhanced_extinguishing-1.19.2-1.0.0-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file uniquedungeons-0.69-43.2.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Piglin-Expansion-1.2.2-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file blazegear-1.19.2-1.3.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.300] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Galosphere-1.19.2-1.3.0-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file YungsBetterOceanMonuments-1.19.2-Forge-2.1.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file sophisticatedcore-1.19.2-0.6.3.566.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file gpumemleakfix-1.19.2-1.6.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file InsaneLib-1.7.5-mc1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file structureessentials-1.19.2-3.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file connectedness-2.0.1a.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file villagernames-1.19.2-7.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Sorcerium 1.1.3 (1.19.2).jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Placebo-1.19.2-7.4.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file lootintegrations-1.19.2-3.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file themissingvillages-2.0.0-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Bookshelf-Forge-1.19.2-16.3.20.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file sophisticatedbackpacks-1.19.2-3.20.2.1025.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file takesapillage-1.0.3-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ProgressiveBosses-3.7.5-mc1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file bygonenether-1.3.2-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file carryon-forge-1.19.2-2.1.1.22.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ShieldExpansion-1.19.2-1.1.7.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.301] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file dragonfight-1.19.2-4.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file konkrete_forge_1.8.0_MC_1.19-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file EquipmentCompare-1.19.2-forge-1.3.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file entity_model_features_forge_1.19.2-1.1.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file entity_texture_features_forge_1.19.2-4.6.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file berrybush_magic-1.19.2-1.0.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Boat-Item-View-Forge-1.19.x-0.0.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file born_in_chaos_[Forge]1.19.2_1.10.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file bobby-1.19.2_v5.0.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file modpack-update-checker-1.19.2-forge-0.10.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file servercountryflags-1.9.2-1.19.2-FORGE.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file memorysettings-1.19.2-5.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file moonsweaponry-1.4.1-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file elevatorid-1.19.2-1.8.10.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file NightConfigFixes-v4.0.7-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file starterkit-1.19.2-5.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file spirit-forge-1.19.2-2.2.6.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file twilightdelight-1.4.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file AI-Improvements-1.19-0.5.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ServerBrowser-1.19.2-FORGE-1.1.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.302] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file cupboard-1.19.2-2.6.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file cherishedworlds-forge-6.0.5+1.19.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file The_Undergarden-1.19.2-0.8.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file JustEnoughGolems - 2.2.3-HF Magma Release 1.19.x.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file BetterAdvancements-1.19.2-0.2.2.147.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Grass_Overhaul-Forge-23.05.28_MC1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file EasyMagic-v4.3.3-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file realmrpg_imps_and_demons_0.9.0_forge_1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file the-conjurer-1.19.2-1.1.5.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file obscure_api-15.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Clumps-forge-1.19.2-9.0.0+14.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file SimpleStorageNetwork-1.19.2-1.7.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file soul_like_armors_reworked_1.19.2_(v120).jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Decorative Blocks-forge-1.19.2-3.0.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file BasicNetherOres-1.19.2-8.2.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file lazydfu-1.19-1.0.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file everycomp-1.19.2-2.5.14.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file HopoBetterUnderwaterRuins-[1.19-1.19.3]-1.1.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file BOMD-Forge-1.19.2-1.0.6.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file miningmaster-1.19.2-4.1.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Raided-1.19.2-0.1.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.303] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file meetyourfight-1.19.2-1.3.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ultris-v5.6.7f.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file friendsandfoes-forge-mc1.19.2-1.8.10.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file useless-sword-furtos-edition-1.19.2-1.0.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file endermanoverhaul-forge-1.19.2-0.0.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file HopoBetterRuinedPortals-[1.19-1.19.3]-1.3.3b.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file CullLessLeaves-Reforged-1.0.5.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file CreativeCore_FORGE_v2.9.4_mc1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file tradersindisguise-1.5-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Lets_Forge_BronzeAndIron_[1_19_2]_3_11.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file betterstats-2.2.2+1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file FastWorkbench-1.19.2-7.1.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file DiagonalFences-v4.2.6-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file MoreCrashInfo-Core-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file fancymenu_forge_2.14.9_MC_1.19-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file upgradedcore-1.19.2-4.1.0.1-release.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file hunterillager-1.19.2-8.0.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ferritecore-5.0.3-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Enhanced_Celestials-forge-1.19.2-2.1.0.6.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file CorgiLib-forge-1.19.2-1.0.0.34.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file pyrologerandfriends-1.6.5.7-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file charmofundying-forge-6.2.1+1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.304] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file valhelsia_core-forge-1.19.2-0.5.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file EasyAnvils-v4.0.11-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file player-animation-lib-forge-1.0.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file irons_spellbooks-1.19.2-3.1.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file aatrox mod 24.7 - 1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file stalwart-dungeons-1.19.2-1.2.8.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file soundphysics-forge-1.19.2-1.0.18.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file VillagersPlus_1.2_(FORGE)_for_1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file upgradednetherite_items-1.19.2-4.1.0.2-release.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ResourcePackOverrides-v4.0.4-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file guardvillagers-1.19.2-1.5.9.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file tcdcommons-2.2+1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file balm-forge-1.19.2-4.6.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file codecutils-forge-1.19.2-0.1.2-all.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file immersive_armors-1.5.6+1.19.2-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file JustEnoughResources-1.19.2-1.2.3.243.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file itemfig-1.19.2-0.2.7.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ctov-3.2.6c.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file LeavesBeGone-v4.0.1-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file geophilic-1.19-2.0.0c.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file upgradednetherite-1.19.2-5.1.0.9-release.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.305] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file moonsarmory-1.0.3-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file lmft-1.0.2+1.19-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file xaeros_waystones_compability-1.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file torchmaster-19.2.93.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Good Ending-1.19.2-1.0.2-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file explorify-forge-1.19-1.3.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file UnusualEnd1.19.2_V1.4.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file resourcefulconfig-forge-1.19.2-1.0.20.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file frosted-friends-1.19.2-1.0.7.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file curios-forge-1.19.2-5.1.6.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Unearthed_Journey-1.19.2-1.0.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file SkillSlots-1.19.2-forge-1.0.6.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file abundant_atmosphere-1.19.2-1.0.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file sparsestructuresreforged-1.19.2-1.20.1-0.0.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file WitherBones4.0.0-MC1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file mutantmore-1.19.2-early-access-1.0.7.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file windswept-1.19.2-2.2.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Disenchanting-forge-1.19-2.2.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file YungsBetterMineshafts-1.19.2-Forge-3.2.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file veinmining-forge-1.1.2+1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file DarkPaintings-Forge-1.19.2-13.1.5.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file elytraslot-forge-6.1.1+1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.306] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file mowziesmobs-1.6.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file geckolib-forge-1.19-3.1.40.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file jei-1.19.2-forge-11.6.0.1019.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file smarter_mobs-1.1.2-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file feathers-1.1.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Stoneworks-v4.0.1-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Fallingleaves-1.19.1-1.3.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file EpicFight-19.5.24.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file NaturesCompass-1.19.2-1.10.0-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file SereneSeasons-1.19.2-8.1.0.24.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file neruina-1.3.0-forge+1.18.2-1.20.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file starlight-1.1.1+forge.cf5b10b.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file memoryleakfix-forge-1.17+-1.1.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file forge-1.19.2-43.3.8-universal.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file DarkerSouls1.19.2Forge-v1.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file idas_forge-1.7.6+1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file drippyloadingscreen_forge_2.2.2_MC_1.19.1-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file MouseTweaks-forge-mc1.19-2.23.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file bettercombat-forge-1.7.1+1.19.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file awesomedungeonnether-forge-1.19.2-3.1.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file totw_additions-1.2.3-1.19.x-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file EpicDMC1.19.2V1.0.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.307] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file whatareyouvotingfor2023-1.19.2-1.2.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file MindfulDarkness-v4.0.9-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file spectrelib-forge-0.12.6+1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Special Drops 1.0.1 - 1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file kffmod-3.12.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ecologics-forge-1.19.2-2.1.11.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Xaeros_Minimap_23.8.4_Forge_1.19.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file polymorph-forge-0.46.5+1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file AutoRegLib-1.8.2-55.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file mna-forge-1.19.2-2.1.0.6-all.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file entityculling-forge-1.6.1-mc1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file backpacked-forge-1.19.2-2.1.13.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file canary-mc1.19.2-0.2.8.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file visuality-forge-2.0.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file biomemusic-1.19.2-2.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file PuzzlesLib-v4.4.3-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file chunksending-1.19.2-2.7.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Project - The VOID - V.0.0.8.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Sculked V1.4.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file deuf-1.19.2-1.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.308] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file aquamirae-6.API15.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file xptome-1.19-2.1.7.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file tetra-1.19.2-5.6.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Undergarden-Tetra Patch-1.3.2-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file tetranomicon-1.5.3-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file blue_skies-1.19.2-1.3.20.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file YungsBetterWitchHuts-1.19.2-Forge-2.1.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file v_slab_compat-1.19.2-1.9.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file netherportalfix-forge-1.19-10.0.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file recipeessentials-1.19.2-3.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file aether-1.19.2-1.0.0-beta.1.3-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file aeroblender-r1.19.2-1.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file aether-redux-1.3.3-1.19.2-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file connectivity-1.19.2-4.6.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file dynamiclights-1.19.2.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file kleeslabs-forge-1.19.2-12.3.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Controlling-forge-1.19.2-10.0+7.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file citadel-2.1.4-1.19.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file eeeabsmobs-1.19.2-0.6.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file L_Enders_Cataclysm-1.90 tongue fixed-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file alexsmobs-1.21.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.309] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file forge-mixinextras-forge-0.2.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.310] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file twigs-forge-1.19.2-3.0.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.310] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Rex's-AdditionalStructures-1.19.x-(v.4.0.4).jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.310] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file dragonmounts-1.19.2-1.1.4a.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.310] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file twilightforest-1.19.2-4.2.1518-universal.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.310] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file FarmersDelight-1.19.2-1.2.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.310] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file chefs-delight-1.0.2-forge-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.311] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file culturaldelights-1.19.2-0.15.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.311] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file endrem_forge-5.2.0-R-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.311] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file defaultresources-forge-1.19.2-0.2.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.311] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file skinned_lanterns-1.19.2-1.3.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.311] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file JER-Integration-4.5.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.311] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file dungeons_enhanced-1.19.2-4.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.311] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Patchouli-1.19.2-77.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.311] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file despawn_tweaker-1.19.2-0.0.5.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.311] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file collective-1.19.2-7.40 (1).jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.311] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file YungsBetterStrongholds-1.19.2-Forge-3.2.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.311] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file EnigmaticLegacy-2.26.5.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file resourcefullib-forge-1.19.2-1.1.24.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file spartanweaponry-1.19.2-3.0.4-beta-2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file deeperdarker-forge-1.19.2-1.2.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file BoatBreakFix-Universal-1.0.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file architectury-6.6.92-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file BambooEverything-forge-2.2.4-build.33+mc1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file doapi-1.1.0b.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file letsdo-vinery-forge-1.3.12b.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file SimpleDiscordRichPresence-forge-3.0.5-build.37+mc1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file simplyswords-forge-1.47.0-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ftb-library-forge-1902.4.1-build.236.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ftb-teams-forge-1902.2.14-build.123.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file debugify-1.1.0-forge-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file rubidium-extra-0.4.19+mc1.19.2-build.105.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file smallships-forge-1.19.2-2.0.0-b1.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file yeetusexperimentus-1.0.1-build.2+mc1.19.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file voidtotem-forge-1.19.2-2.1.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file TradingPost-v4.2.0-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file BHMenu-Forge-1.19.2-2.4.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file awesomedungeonend-forge-1.19.2-3.1.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.312] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file item-filters-forge-1902.2.9-build.51.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ftb-quests-forge-1902.5.6-build.304.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ftb-xmod-compat-forge-1.2.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Structory_Towers_1.19.3_v1.0.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file create-1.19.2-0.5.1.f.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Delightful-1.19.2-3.4.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file waystones-forge-1.19.2-11.4.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file MonsterPlus-Forge1.19.2-v1.1.6.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Structory_1.19.3_v1.3.1a.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file FastSuite-1.19.2-4.1.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file comforts-forge-6.0.6+1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file alternate-current-mc1.19-1.7.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file DungeonCrawl-1.19-2.3.12.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file mahoutsukai-1.19.2-v1.34.61.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file netherdepthsupgrade-3.1.1-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Terralith_1.19.3_v2.3.12.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file blueprint-1.19.2-6.2.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file savage_and_ravage-1.19.2-5.0.5.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file clayworks-1.19.2-2.1.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file personality-1.19.2-3.0.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file dolt_compat-1.19.2-1.1.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file pet_cemetery-1.19.2-1.0.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.313] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file environmental-1.19.2-3.0.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file buzzier_bees-1.19.2-5.0.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file toofast-1.19-0.2.2.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file monstersandmushrooms-0.0.3-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file illagersweararmor-1.2.7-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file cofh_core-1.19.2-10.3.1.48.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file abnormals_delight-1.19.2-4.1.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file upgrade_aquatic-1.19.2-5.1.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file neapolitan-1.19.2-4.1.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file exquisito-1.19.2-1.2.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file incubation-1.19.2-3.0.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file EnchantmentDescriptions-Forge-1.19.2-13.0.14.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file dynamic_asset_generator-forge-1.19.2-1.2.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file excavated_variants-forge-1.19.2-1.0.3.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file swingthroughgrass-1.19.2-1.10.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file moonlight-1.19.2-2.3.5-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file smarterfarmers-1.19.2-1.7.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ToolBelt-1.19.2-1.19.7.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file MagnumTorch-v4.2.3-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file mixinsquared-forge-0.1.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Jade-1.19.1-forge-8.9.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file snowyspirit-1.19.2-2.1.13.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file ciscos_armoury_4.7.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.314] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file forbidden_arcanus-1.19.2-2.1.5.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file weaponmaster-1.4.2-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file NethersDelight-1.19-3.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file atmospheric-1.19.2-5.0.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file rottencreatures-forge-1.19.2-1.0.1.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file BarteringStation-v4.0.3-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file plushies-1.2-1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Iceberg-1.19.2-forge-1.1.4.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file Quark-3.4-418.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file supplementaries-1.19.2-2.4.20.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file woodworks-1.19.2-2.2.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file mutil-1.19.2-5.2.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file obsidianui-0.1.3+1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file betterchunkloading-1.19.2-2.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file invhud.forge.1.19-3.4.7.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file dynamic darker souls mod 1.19.2 (v19).jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file EndlessBiomes 1.3 - 1.19.2.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file BetterTridents-v4.0.2-1.19.2-Forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file mvs-4.1.1-1.19.2-forge.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.315] [Render thread/WARN] [ModernFix/]: PathResourcePack base class instantiated with root path of mod file expandability-7.0.0.jar. This probably means a mod should be calling ResourcePackLoader.createPackForMod instead. Applying workaround. [20Mar2024 20:23:27.341] [Render thread/INFO] [defaultresources/]: Attempting pack insertion... [20Mar2024 20:23:27.342] [Render thread/INFO] [dynamic_asset_generator/]: Attempting pack insertion... [20Mar2024 20:23:27.572] [Render thread/INFO] [com.github.alexthe666.alexsmobs.AlexsMobs/]: loaded in block colorizer [20Mar2024 20:23:27.578] [Render thread/INFO] [quark/]: Dispatching Module Step REGISTER_BLOCK_COLORS [20Mar2024 20:23:27.599] [Render thread/INFO] [com.github.alexthe666.alexsmobs.AlexsMobs/]: loaded in item colorizer [20Mar2024 20:23:27.599] [Render thread/INFO] [Enigmatic Legacy/INFO]: Initializing colors registration... [20Mar2024 20:23:27.600] [Render thread/INFO] [Enigmatic Legacy/INFO]: Colors registered successfully. [20Mar2024 20:23:27.602] [Render thread/INFO] [quark/]: Dispatching Module Step REGISTER_ITEM_COLORS [20Mar2024 20:23:27.679] [Render thread/ERROR] [supplementaries/]: Some mod loaded the Sheets class to early! This causes the banner texture maps to not contain modded patterns. Supplementaries will not attempt to fix... [20Mar2024 20:23:27.826] [Render thread/INFO] [ModernFix/]: Replacing search trees with 'JEI' provider [20Mar2024 20:23:28.129] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Particle Factories Registered [20Mar2024 20:23:28.502] [Render thread/INFO] [quark/]: Dispatching Module Step SETUP_CLIENT [20Mar2024 20:23:28.982] [Render thread/INFO] [Spartan Weaponry/]: Registering Model Layers! [20Mar2024 20:23:28.986] [Render thread/INFO] [Spartan Weaponry/]: Model Layer registration complete! [20Mar2024 20:23:29.074] [Render thread/INFO] [quark/]: Registering model layer quark:crab#main [20Mar2024 20:23:29.074] [Render thread/INFO] [quark/]: Registering model layer quark:shiba#main [20Mar2024 20:23:29.074] [Render thread/INFO] [quark/]: Registering model layer quark:quark_boat_chest#main [20Mar2024 20:23:29.074] [Render thread/INFO] [quark/]: Registering model layer quark:wraith#main [20Mar2024 20:23:29.074] [Render thread/INFO] [quark/]: Registering model layer quark:forgotten_hat#main [20Mar2024 20:23:29.074] [Render thread/INFO] [quark/]: Registering model layer quark:stoneling#main [20Mar2024 20:23:29.074] [Render thread/INFO] [quark/]: Registering model layer quark:toretoise#main [20Mar2024 20:23:29.074] [Render thread/INFO] [quark/]: Registering model layer quark:quark_boat#main [20Mar2024 20:23:29.074] [Render thread/INFO] [quark/]: Registering model layer quark:foxhound#main [20Mar2024 20:23:29.074] [Render thread/INFO] [quark/]: Registering model layer quark:backpack#main [20Mar2024 20:23:30.088] [Render thread/INFO] [Spartan Weaponry/]: Registering Entity Renderers! [20Mar2024 20:23:30.296] [Render thread/INFO] [quark/]: Dispatching Module Step REGISTER_TOOLTIP_COMPONENT_FACTORIES [20Mar2024 20:23:30.324] [Render thread/INFO] [com.mna.ManaAndArtifice/]: M&A -> Keybindings Registered [20Mar2024 20:23:30.332] [Render thread/INFO] [quark/]: Dispatching Module Step REGISTER_KEYBINDS [20Mar2024 20:23:30.553] [Render thread/INFO] [ModernFix/]: Invalidating pack caches [20Mar2024 20:23:30.554] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: Default, Mod Resources, Everycomp Generated Pack, Immersive Weathering Generated Pack, Snowyspirit Generated Pack, Supplementaries Generated Pack, V Slab Compat Generated Pack, Global Resources, dynamic_asset_generator:assets, quark-emote-pack [20Mar2024 20:23:33.060] [Render thread/INFO] [com.cupboard.Cupboard/]: Loaded config for: connectivity.json [20Mar2024 20:23:33.874] [Render thread/WARN] [com.ordana.immersive_weathering.ImmersiveWeathering/]: Failed to find texture for Leaf Pile Block{immersive_weathering:twilightforest/beanstalk_leaf_pile}, using oak one instead [20Mar2024 20:23:33.876] [Render thread/WARN] [com.ordana.immersive_weathering.ImmersiveWeathering/]: Failed to find texture for Leaf Pile Block{immersive_weathering:twilightforest/thorn_leaf_pile}, using oak one instead [20Mar2024 20:23:33.920] [Render thread/ERROR] [com.ordana.immersive_weathering.ImmersiveWeathering/]: Fail to generate Leaf Particle texture for type twilightforest:beanstalk : java.io.FileNotFoundException: Could not find any texture associated to the given block twilightforest:beanstalk_leaves [20Mar2024 20:23:33.920] [Render thread/ERROR] [com.ordana.immersive_weathering.ImmersiveWeathering/]: Fail to generate Leaf Particle texture for type twilightforest:thorn : java.io.FileNotFoundException: Could not find any texture associated to the given block twilightforest:thorn_leaves [20Mar2024 20:23:33.982] [Render thread/ERROR] [com.ordana.immersive_weathering.ImmersiveWeathering/]: Could not generate heavy leaf pile texture for type twilightforest:beanstalk java.io.FileNotFoundException: Could not find any texture associated to the given block twilightforest:beanstalk_leaves at net.mehvahdjukaar.moonlight.api.resources.RPUtils.findFirstBlockTextureLocation(RPUtils.java:100) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.resources.RPUtils.findFirstBlockTextureLocation(RPUtils.java:58) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at com.ordana.immersive_weathering.dynamicpack.ClientDynamicResourcesHandler.lambda$regenerateDynamicAssets$6(ClientDynamicResourcesHandler.java:232) ~[immersive_weathering-1.19.2-1.2.10-forge.jar%23701!/:?] at java.util.LinkedHashMap.forEach(LinkedHashMap.java:721) ~[?:?] at com.ordana.immersive_weathering.dynamicpack.ClientDynamicResourcesHandler.regenerateDynamicAssets(ClientDynamicResourcesHandler.java:227) ~[immersive_weathering-1.19.2-1.2.10-forge.jar%23701!/:?] at net.mehvahdjukaar.moonlight.api.resources.pack.DynResourceProvider.reloadResources(DynResourceProvider.java:115) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.resources.pack.DynResourceProvider.onEarlyReload(DynResourceProvider.java:83) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.events.forge.MoonlightEventsHelperImpl.lambda$postEvent$5(MoonlightEventsHelperImpl.java:43) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at java.util.concurrent.ConcurrentLinkedDeque.forEach(ConcurrentLinkedDeque.java:1650) ~[?:?] at net.mehvahdjukaar.moonlight.api.events.forge.MoonlightEventsHelperImpl.postEvent(MoonlightEventsHelperImpl.java:43) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.events.MoonlightEventsHelper.postEvent(MoonlightEventsHelper.java) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.minecraft.server.packs.resources.MultiPackResourceManager.handler$fop000$dynamicPackEarlyReload(MultiPackResourceManager.java:3034) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.server.packs.resources.MultiPackResourceManager.<init>(MultiPackResourceManager.java:61) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.server.packs.resources.ReloadableResourceManager.m_142463_(ReloadableResourceManager.java:44) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.Minecraft.<init>(Minecraft.java:577) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.main.Main.m_239872_(Main.java:176) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.main.Main.main(Main.java:51) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:27) ~[fmlloader-1.19.2-43.3.8.jar%23101!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] [20Mar2024 20:23:33.983] [Render thread/ERROR] [com.ordana.immersive_weathering.ImmersiveWeathering/]: Could not generate heavy leaf pile texture for type twilightforest:thorn java.io.FileNotFoundException: Could not find any texture associated to the given block twilightforest:thorn_leaves at net.mehvahdjukaar.moonlight.api.resources.RPUtils.findFirstBlockTextureLocation(RPUtils.java:100) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.resources.RPUtils.findFirstBlockTextureLocation(RPUtils.java:58) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at com.ordana.immersive_weathering.dynamicpack.ClientDynamicResourcesHandler.lambda$regenerateDynamicAssets$6(ClientDynamicResourcesHandler.java:232) ~[immersive_weathering-1.19.2-1.2.10-forge.jar%23701!/:?] at java.util.LinkedHashMap.forEach(LinkedHashMap.java:721) ~[?:?] at com.ordana.immersive_weathering.dynamicpack.ClientDynamicResourcesHandler.regenerateDynamicAssets(ClientDynamicResourcesHandler.java:227) ~[immersive_weathering-1.19.2-1.2.10-forge.jar%23701!/:?] at net.mehvahdjukaar.moonlight.api.resources.pack.DynResourceProvider.reloadResources(DynResourceProvider.java:115) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.resources.pack.DynResourceProvider.onEarlyReload(DynResourceProvider.java:83) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.events.forge.MoonlightEventsHelperImpl.lambda$postEvent$5(MoonlightEventsHelperImpl.java:43) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at java.util.concurrent.ConcurrentLinkedDeque.forEach(ConcurrentLinkedDeque.java:1650) ~[?:?] at net.mehvahdjukaar.moonlight.api.events.forge.MoonlightEventsHelperImpl.postEvent(MoonlightEventsHelperImpl.java:43) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.events.MoonlightEventsHelper.postEvent(MoonlightEventsHelper.java) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.minecraft.server.packs.resources.MultiPackResourceManager.handler$fop000$dynamicPackEarlyReload(MultiPackResourceManager.java:3034) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.server.packs.resources.MultiPackResourceManager.<init>(MultiPackResourceManager.java:61) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.server.packs.resources.ReloadableResourceManager.m_142463_(ReloadableResourceManager.java:44) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.Minecraft.<init>(Minecraft.java:577) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.main.Main.m_239872_(Main.java:176) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.main.Main.main(Main.java:51) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:27) ~[fmlloader-1.19.2-43.3.8.jar%23101!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] [20Mar2024 20:23:34.048] [Render thread/INFO] [com.ordana.immersive_weathering.ImmersiveWeathering/]: Generated runtime CLIENT_RESOURCES for pack Immersive Weathering Generated Pack in: 186 ms [20Mar2024 20:23:34.835] [Render thread/INFO] [net.mehvahdjukaar.every_compat.EveryCompat/]: Generated runtime CLIENT_RESOURCES for pack Everycomp Generated Pack in: 787 ms [20Mar2024 20:23:34.850] [Render thread/ERROR] [net.mehvahdjukaar.vsc.VSC/]: Failed to generate assets for Block{v_slab_compat:abundant_atmosphere/mixed_brick_vertical_slab} java.io.FileNotFoundException: Could not find any texture associated to the given block abundant_atmosphere:mixed_brick_slab at net.mehvahdjukaar.moonlight.api.resources.RPUtils.findFirstBlockTextureLocation(RPUtils.java:100) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.resources.RPUtils.findFirstBlockTextureLocation(RPUtils.java:58) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.vsc.dynamicpack.ClientDynamicResourcesHandler.regenerateDynamicAssets(ClientDynamicResourcesHandler.java:54) ~[v_slab_compat-1.19.2-1.9.jar%23875!/:?] at net.mehvahdjukaar.moonlight.api.resources.pack.DynResourceProvider.reloadResources(DynResourceProvider.java:115) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.resources.pack.DynResourceProvider.onEarlyReload(DynResourceProvider.java:83) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.events.forge.MoonlightEventsHelperImpl.lambda$postEvent$5(MoonlightEventsHelperImpl.java:43) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at java.util.concurrent.ConcurrentLinkedDeque.forEach(ConcurrentLinkedDeque.java:1650) ~[?:?] at net.mehvahdjukaar.moonlight.api.events.forge.MoonlightEventsHelperImpl.postEvent(MoonlightEventsHelperImpl.java:43) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.events.MoonlightEventsHelper.postEvent(MoonlightEventsHelper.java) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.minecraft.server.packs.resources.MultiPackResourceManager.handler$fop000$dynamicPackEarlyReload(MultiPackResourceManager.java:3034) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.server.packs.resources.MultiPackResourceManager.<init>(MultiPackResourceManager.java:61) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.server.packs.resources.ReloadableResourceManager.m_142463_(ReloadableResourceManager.java:44) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.Minecraft.<init>(Minecraft.java:577) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.main.Main.m_239872_(Main.java:176) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.main.Main.main(Main.java:51) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:27) ~[fmlloader-1.19.2-43.3.8.jar%23101!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] [20Mar2024 20:23:34.851] [Render thread/ERROR] [net.mehvahdjukaar.vsc.VSC/]: Failed to generate assets for Block{v_slab_compat:abundant_atmosphere/calcite_brick_vertical_slab} java.io.FileNotFoundException: Could not find any texture associated to the given block abundant_atmosphere:calcite_brick_slab at net.mehvahdjukaar.moonlight.api.resources.RPUtils.findFirstBlockTextureLocation(RPUtils.java:100) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.resources.RPUtils.findFirstBlockTextureLocation(RPUtils.java:58) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.vsc.dynamicpack.ClientDynamicResourcesHandler.regenerateDynamicAssets(ClientDynamicResourcesHandler.java:54) ~[v_slab_compat-1.19.2-1.9.jar%23875!/:?] at net.mehvahdjukaar.moonlight.api.resources.pack.DynResourceProvider.reloadResources(DynResourceProvider.java:115) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.resources.pack.DynResourceProvider.onEarlyReload(DynResourceProvider.java:83) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.events.forge.MoonlightEventsHelperImpl.lambda$postEvent$5(MoonlightEventsHelperImpl.java:43) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at java.util.concurrent.ConcurrentLinkedDeque.forEach(ConcurrentLinkedDeque.java:1650) ~[?:?] at net.mehvahdjukaar.moonlight.api.events.forge.MoonlightEventsHelperImpl.postEvent(MoonlightEventsHelperImpl.java:43) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.events.MoonlightEventsHelper.postEvent(MoonlightEventsHelper.java) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.minecraft.server.packs.resources.MultiPackResourceManager.handler$fop000$dynamicPackEarlyReload(MultiPackResourceManager.java:3034) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.server.packs.resources.MultiPackResourceManager.<init>(MultiPackResourceManager.java:61) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.server.packs.resources.ReloadableResourceManager.m_142463_(ReloadableResourceManager.java:44) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.Minecraft.<init>(Minecraft.java:577) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.main.Main.m_239872_(Main.java:176) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.main.Main.main(Main.java:51) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:27) ~[fmlloader-1.19.2-43.3.8.jar%23101!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] [20Mar2024 20:23:34.853] [Render thread/ERROR] [net.mehvahdjukaar.vsc.VSC/]: Failed to generate assets for Block{v_slab_compat:abundant_atmosphere/dripstone_tile_vertical_slab} java.io.FileNotFoundException: Could not find any texture associated to the given block abundant_atmosphere:dripstone_tile_slab at net.mehvahdjukaar.moonlight.api.resources.RPUtils.findFirstBlockTextureLocation(RPUtils.java:100) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.resources.RPUtils.findFirstBlockTextureLocation(RPUtils.java:58) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.vsc.dynamicpack.ClientDynamicResourcesHandler.regenerateDynamicAssets(ClientDynamicResourcesHandler.java:54) ~[v_slab_compat-1.19.2-1.9.jar%23875!/:?] at net.mehvahdjukaar.moonlight.api.resources.pack.DynResourceProvider.reloadResources(DynResourceProvider.java:115) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.resources.pack.DynResourceProvider.onEarlyReload(DynResourceProvider.java:83) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.events.forge.MoonlightEventsHelperImpl.lambda$postEvent$5(MoonlightEventsHelperImpl.java:43) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at java.util.concurrent.ConcurrentLinkedDeque.forEach(ConcurrentLinkedDeque.java:1650) ~[?:?] at net.mehvahdjukaar.moonlight.api.events.forge.MoonlightEventsHelperImpl.postEvent(MoonlightEventsHelperImpl.java:43) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.mehvahdjukaar.moonlight.api.events.MoonlightEventsHelper.postEvent(MoonlightEventsHelper.java) ~[moonlight-1.19.2-2.3.5-forge.jar%23745!/:?] at net.minecraft.server.packs.resources.MultiPackResourceManager.handler$fop000$dynamicPackEarlyReload(MultiPackResourceManager.java:3034) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.server.packs.resources.MultiPackResourceManager.<init>(MultiPackResourceManager.java:61) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.server.packs.resources.ReloadableResourceManager.m_142463_(ReloadableResourceManager.java:44) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.Minecraft.<init>(Minecraft.java:577) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.main.Main.m_239872_(Main.java:176) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at net.minecraft.client.main.Main.main(Main.java:51) ~[client-1.19.2-20220805.130853-srg.jar%23906!/:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:27) ~[fmlloader-1.19.2-43.3.8.jar%23101!/:?] at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2388!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] [20Mar2024 20:23:34.902] [Render thread/INFO] [net.mehvahdjukaar.vsc.VSC/]: Generated runtime CLIENT_RESOURCES for pack V Slab Compat Generated Pack in: 66 ms [20Mar2024 20:23:34.975] [Render thread/INFO] [net.mehvahdjukaar.snowyspirit.SnowySpirit/]: Generated runtime CLIENT_RESOURCES for pack Snowyspirit Generated Pack in: 72 ms [20Mar2024 20:23:35.190] [Render thread/INFO] [supplementaries/]: Generated runtime CLIENT_RESOURCES for pack Supplementaries Generated Pack in: 215 ms [20Mar2024 20:23:35.396] [modloading-worker-0/INFO] [Puzzles Lib/]: Loading client config for pickupnotifier [20Mar2024 20:23:35.402] [modloading-worker-0/INFO] [Puzzles Lib/]: Loading client config for visualworkbench [20Mar2024 20:23:35.620] [Render thread/INFO] [net.minecraft.client.gui.screens.LoadingOverlay/]: [FANCYMENU] Pre-loading animations if enabled in config.. [20Mar2024 20:23:35.620] [Render thread/INFO] [fancymenu/FancyMenu/]: [FANCYMENU] Updating animation sizes.. [20Mar2024 20:23:35.621] [Render thread/INFO] [net.minecraft.client.gui.screens.LoadingOverlay/]: [DRIPPY LOADING SCREEN] Initializing fonts for text rendering.. [20Mar2024 20:23:35.640] [Render thread/INFO] [net.minecraft.client.gui.screens.LoadingOverlay/]: [DRIPPY LOADING SCREEN] Calculating animation sizes for FancyMenu.. [20Mar2024 20:23:35.807] [modloading-worker-0/INFO] [Puzzles Lib/]: Loading client config for easymagic [20Mar2024 20:23:35.879] [modloading-worker-0/INFO] [Puzzles Lib/]: Loading client config for easyanvils [20Mar2024 20:23:36.045] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/corrupted_beacon.ogg does not exist, cannot add it to event duneons:corrupted_beacon [20Mar2024 20:23:36.046] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/rapier_swing.ogg does not exist, cannot add it to event duneons:rapier_swing [20Mar2024 20:23:36.046] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/axe_swing.ogg does not exist, cannot add it to event duneons:axe_swing [20Mar2024 20:23:36.046] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/scyte_swing.ogg does not exist, cannot add it to event duneons:scyte_swing [20Mar2024 20:23:36.046] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/katana_swing.ogg does not exist, cannot add it to event duneons:katana_swing [20Mar2024 20:23:36.046] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/hammer_swing.ogg does not exist, cannot add it to event duneons:hammer_swing [20Mar2024 20:23:36.046] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/cutlass_swing.ogg does not exist, cannot add it to event duneons:cutlass_swing [20Mar2024 20:23:36.046] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/gear_swing.ogg does not exist, cannot add it to event duneons:gear_swing [20Mar2024 20:23:36.046] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/howling_wind_loop.ogg does not exist, cannot add it to event duneons:howling_wind_loop [20Mar2024 20:23:36.046] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/ice_crack.ogg does not exist, cannot add it to event duneons:ice_crack [20Mar2024 20:23:36.046] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/ice_area.ogg does not exist, cannot add it to event duneons:ice_area [20Mar2024 20:23:36.047] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/icewind.ogg does not exist, cannot add it to event duneons:icewind [20Mar2024 20:23:36.047] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/scroll.ogg does not exist, cannot add it to event duneons:scroll [20Mar2024 20:23:36.047] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/spinblade_hit.ogg does not exist, cannot add it to event duneons:spinblade_hit [20Mar2024 20:23:36.047] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/spinblade_throw_2.ogg does not exist, cannot add it to event duneons:spinblade_throw [20Mar2024 20:23:36.047] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/broken_sawblade_swing_1.ogg does not exist, cannot add it to event duneons:broken_sawblade_swing_1 [20Mar2024 20:23:36.047] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/anchor_unique_swing_gold.ogg does not exist, cannot add it to event duneons:anchor_unique_swing_gold [20Mar2024 20:23:36.047] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/anchor_unique_swing.ogg does not exist, cannot add it to event duneons:anchor_unique_swing [20Mar2024 20:23:36.047] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/anchor_swing.ogg does not exist, cannot add it to event duneons:anchor_swing [20Mar2024 20:23:36.048] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/candlestick_hiss.ogg does not exist, cannot add it to event duneons:candlestick_hiss [20Mar2024 20:23:36.048] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/ice_sounds.ogg does not exist, cannot add it to event duneons:ice_sounds [20Mar2024 20:23:36.048] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/updraft_tome_place.ogg does not exist, cannot add it to event duneons:updraft_tome_place [20Mar2024 20:23:36.048] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/swing_banana_2.ogg does not exist, cannot add it to event duneons:swing_banana_2 [20Mar2024 20:23:36.048] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/heavy_crossbow_shoot.ogg does not exist, cannot add it to event duneons:heavy_crossbow_shoot [20Mar2024 20:23:36.048] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/heavy_crossbow_unique2_place.ogg does not exist, cannot add it to event duneons:heavy_crossbow_unique2_place [20Mar2024 20:23:36.048] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/crossbow_unique_arrow.ogg does not exist, cannot add it to event duneons:crossbow_unique_arrow [20Mar2024 20:23:36.048] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/pencbow_shot.ogg does not exist, cannot add it to event duneons:pencbow_shot [20Mar2024 20:23:36.049] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/end.ogg does not exist, cannot add it to event duneons:end [20Mar2024 20:23:36.050] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/archillager_summonmobs.ogg does not exist, cannot add it to event duneons:archillager_summonmobs [20Mar2024 20:23:36.054] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/candle_sound.ogg does not exist, cannot add it to event duneons:candle_sound [20Mar2024 20:23:36.054] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/item_monkey.ogg does not exist, cannot add it to event duneons:monkey_sound [20Mar2024 20:23:36.054] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/archillager_sad.ogg does not exist, cannot add it to event duneons:archillager_sad [20Mar2024 20:23:36.054] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/yellow_shimmer.ogg does not exist, cannot add it to event duneons:yellow_shimmer [20Mar2024 20:23:36.055] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/funny.ogg does not exist, cannot add it to event duneons:funny [20Mar2024 20:23:36.055] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/chain.ogg does not exist, cannot add it to event duneons:chain [20Mar2024 20:23:36.056] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/archillager_ieee.ogg does not exist, cannot add it to event duneons:archllager_wieee [20Mar2024 20:23:36.056] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/arch.ogg does not exist, cannot add it to event duneons:arch [20Mar2024 20:23:36.056] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/nameless_idle_cave.ogg does not exist, cannot add it to event duneons:nameless_idle_cave [20Mar2024 20:23:36.056] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/flyloop.ogg does not exist, cannot add it to event duneons:flyloop [20Mar2024 20:23:36.056] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/tempest_knife_swing.ogg does not exist, cannot add it to event duneons:tempest_knife_swing [20Mar2024 20:23:36.056] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/chains_sound_loop.ogg does not exist, cannot add it to event duneons:chains_sound_loop [20Mar2024 20:23:36.056] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/wind_pipes_oop.ogg does not exist, cannot add it to event duneons:wind_pipes_toop [20Mar2024 20:23:36.056] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/wind_pipes_gust.ogg does not exist, cannot add it to event duneons:wind_pipes_gust [20Mar2024 20:23:36.057] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/spider_den.ogg does not exist, cannot add it to event duneons:spider_den [20Mar2024 20:23:36.057] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/ancient_guardian_laser.ogg does not exist, cannot add it to event duneons:ancient_guardian_laser [20Mar2024 20:23:36.057] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/graveyard_sou.ogg does not exist, cannot add it to event duneons:graveyard_sou [20Mar2024 20:23:36.057] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/void_loop.ogg does not exist, cannot add it to event duneons:void_loop [20Mar2024 20:23:36.057] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/chains_loop.ogg does not exist, cannot add it to event duneons:chains_loop [20Mar2024 20:23:36.057] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/void_mud.ogg does not exist, cannot add it to event duneons:void_mud [20Mar2024 20:23:36.058] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/traps_blade.ogg does not exist, cannot add it to event duneons:traps_blade [20Mar2024 20:23:36.058] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/desert_temple.ogg does not exist, cannot add it to event duneons:desert_temple [20Mar2024 20:23:36.058] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/archillagerhaha_spawn.ogg does not exist, cannot add it to event duneons:arch_haha_spawn [20Mar2024 20:23:36.058] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/arch_crazy.ogg does not exist, cannot add it to event duneons:arch_crazy [20Mar2024 20:23:36.058] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/endersent_smash.ogg does not exist, cannot add it to event duneons:endersent_smash [20Mar2024 20:23:36.058] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/archillager_death.ogg does not exist, cannot add it to event duneons:archillager_death [20Mar2024 20:23:36.059] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/archillager_convert_idle.ogg does not exist, cannot add it to event duneons:archillager_convert_idle [20Mar2024 20:23:36.102] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/corrupted_beacon_new.ogg does not exist, cannot add it to event duneons:corrupted_beacon_new [20Mar2024 20:23:36.102] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/corrupted_beacon_souly.ogg does not exist, cannot add it to event duneons:corrupted_beacon_souly [20Mar2024 20:23:36.106] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File duneons:sounds/throne.ogg does not exist, cannot add it to event duneons:throne [20Mar2024 20:23:36.352] [Worker-ResourceReload-1/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [20Mar2024 20:23:36.352] [Worker-ResourceReload-5/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [20Mar2024 20:23:36.388] [Worker-ResourceReload-3/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [20Mar2024 20:23:36.404] [Worker-ResourceReload-0/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [20Mar2024 20:23:36.493] [modloading-worker-0/WARN] [fuzs.nightconfigfixes.config.ConfigSpecWrapper/CORE]: Configuration file C:\Users\Admin\AppData\Roaming\.minecraft\config\mutantmore\mutantmore-screen_shaking-client.toml is not correct. Correcting [20Mar2024 20:23:36.495] [modloading-worker-0/WARN] [fuzs.nightconfigfixes.config.ConfigSpecWrapper/CORE]: Incorrect key Allowed Screen Shake Priorities was corrected from [effect, player_action, strong_mob_action] to its default, [effect, player_action, strong_mob_action]. [20Mar2024 20:23:36.496] [modloading-worker-0/WARN] [fuzs.nightconfigfixes.config.ConfigSpecWrapper/CORE]: Incorrect key Screen Shake Intensity was corrected from 0.75 to its default, 0.75. [20Mar2024 20:23:36.682] [modloading-worker-0/INFO] [Puzzles Lib/]: Loading client config for stoneworks [20Mar2024 20:23:36.690] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File minecraft:sounds/block/chest/close1.ogg does not exist, cannot add it to event aether:entity.mimic.death [20Mar2024 20:23:36.752] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File irons_spellbooks:sounds/dead_king/music/drums.ogg does not exist, cannot add it to event irons_spellbooks:entity.dead_king.music.drum_loop [20Mar2024 20:23:36.752] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File irons_spellbooks:sounds/dead_king/music/second_phase_melody.ogg does not exist, cannot add it to event irons_spellbooks:entity.dead_king.music.second_phase_melody [20Mar2024 20:23:36.752] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File irons_spellbooks:sounds/dead_king/music/second_phase_accent_01.ogg does not exist, cannot add it to event irons_spellbooks:entity.dead_king.music.second_phase_accent_01 [20Mar2024 20:23:36.752] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File irons_spellbooks:sounds/dead_king/music/second_phase_drums.ogg does not exist, cannot add it to event irons_spellbooks:entity.dead_king.music.second_phase_drums [20Mar2024 20:23:36.752] [Worker-ResourceReload-6/WARN] [net.minecraft.client.sounds.SoundManager/]: File irons_spellbooks:sounds/dead_king/music/finale.ogg does not exist, cannot add it to event irons_spellbooks:entity.dead_king.music.finale [20Mar2024 20:23:36.755] [Worker-ResourceReload-6/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [20Mar2024 20:23:36.771] [modloading-worker-0/INFO] [Puzzles Lib/]: Loading client config for mindfuldarkness [20Mar2024 20:23:36.976] [modloading-worker-0/WARN] [fuzs.nightconfigfixes.config.ConfigSpecWrapper/CORE]: Configuration file C:\Users\Admin\AppData\Roaming\.minecraft\config\smallships-client.toml is not correct. Correcting [20Mar2024 20:23:36.977] [modloading-worker-0/WARN] [fuzs.nightconfigfixes.config.ConfigSpecWrapper/CORE]: Incorrect key schematicVersion was corrected from 1 to its default, 1. This seems to be an error. [20Mar2024 20:23:36.981] [modloading-worker-0/INFO] [com.bisecthosting.mods.bhmenu.ModRoot/]: Reloading Configs [20Mar2024 20:23:37.036] [modloading-worker-0/INFO] [Puzzles Lib/]: Loading client config for barteringstation [20Mar2024 20:23:37.140] [modloading-worker-0/WARN] [fuzs.nightconfigfixes.config.ConfigSpecWrapper/CORE]: Configuration file C:\Users\Admin\AppData\Roaming\.minecraft\config\philips-ruins-common-configs.toml is not correct. Correcting [20Mar2024 20:23:37.140] [modloading-worker-0/WARN] [fuzs.nightconfigfixes.config.ConfigSpecWrapper/CORE]: Incorrect key Philip's Ruins.Spawn Seed was corrected from 1 to its default, 1. [20Mar2024 20:23:37.260] [Worker-ResourceReload-4/INFO] [quark/]: Dispatching Module Step TEXTURE_STITCH [20Mar2024 20:23:37.393] [modloading-worker-0/WARN] [fuzs.nightconfigfixes.config.ConfigSpecWrapper/CORE]: Configuration file C:\Users\Admin\AppData\Roaming\.minecraft\config\tradersindisguise-common.toml is not correct. Correcting [20Mar2024 20:23:37.393] [modloading-worker-0/WARN] [fuzs.nightconfigfixes.config.ConfigSpecWrapper/CORE]: Incorrect key Config for Traders in Disguise.Sickle Damage Multiplier was corrected from 3.0 to its default, 3.0. [20Mar2024 20:23:37.794] [modloading-worker-0/WARN] [fuzs.nightconfigfixes.config.ConfigSpecWrapper/CORE]: Configuration file C:\Users\Admin\AppData\Roaming\.minecraft\config\smallships-common.toml is not correct. Correcting [20Mar2024 20:23:37.795] [modloading-worker-0/WARN] [fuzs.nightconfigfixes.config.ConfigSpecWrapper/CORE]: Incorrect key schematicVersion was corrected from 4 to its default, 4. This seems to be an error. [20Mar2024 20:23:37.912] [modloading-worker-0/WARN] [fuzs.nightconfigfixes.config.ConfigSpecWrapper/CORE]: Configuration file C:\Users\Admin\AppData\Roaming\.minecraft\config\rottencreatures-common.toml is not correct. Correcting [20Mar2024 20:23:37.912] [modloading-worker-0/WARN] [fuzs.nightconfigfixes.config.ConfigSpecWrapper/CORE]: Incorrect key Mob Spawns.Immortal Chance was corrected from 0.025 to its default, 0.025. [20Mar2024 20:23:37.914] [modloading-worker-0/INFO] [Puzzles Lib/]: Loading common config for bettertridents [20Mar2024 20:23:37.928] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step CONFIG_CHANGED [20Mar2024 20:23:37.957] [modloading-worker-0/INFO] [quark/]: Dispatching Module Step CONFIG_CHANGED_CLIENT [20Mar2024 20:23:38.259] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:open_gift' referenced from: duneons:opengift#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/open_gift.json [20Mar2024 20:23:38.272] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:chain_1.8' referenced from: duneons:chain#axis=x,waterlogged=true: java.io.FileNotFoundException: minecraft:models/chain_1.8.json [20Mar2024 20:23:38.273] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:rusty_chains' referenced from: duneons:rustychains#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/rusty_chains.json [20Mar2024 20:23:38.276] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:candle_bras_new' referenced from: duneons:candlebras#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/candle_bras_new.json [20Mar2024 20:23:38.292] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:berry_leaves' referenced from: duneons:berryleaves#: java.io.FileNotFoundException: minecraft:models/berry_leaves.json [20Mar2024 20:23:38.293] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:apple' referenced from: duneons:apple#axis=x,waterlogged=true: java.io.FileNotFoundException: minecraft:models/apple.json [20Mar2024 20:23:38.296] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:flower_vase' referenced from: duneons:dungeoncactus#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/flower_vase.json [20Mar2024 20:23:38.326] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:fencebars' referenced from: duneons:fencebars#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/fencebars.json [20Mar2024 20:23:38.335] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:dragon_trophy' referenced from: duneons:dragontrophy#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/dragon_trophy.json [20Mar2024 20:23:38.353] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:orange_vases' referenced from: duneons:orangesvase#waterlogged=true: java.io.FileNotFoundException: minecraft:models/orange_vases.json [20Mar2024 20:23:38.353] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:green_vase_long' referenced from: duneons:greenlongvase#waterlogged=true: java.io.FileNotFoundException: minecraft:models/green_vase_long.json [20Mar2024 20:23:38.362] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:wolf_statue' referenced from: duneons:wolfstatue#facing=north: java.io.FileNotFoundException: minecraft:models/wolf_statue.json [20Mar2024 20:23:38.368] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:creeperspecimen' referenced from: duneons:anatomycreeper#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/creeperspecimen.json [20Mar2024 20:23:38.373] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:metalcube' referenced from: duneons:metalcube#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/metalcube.json [20Mar2024 20:23:38.375] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:redstone_crystals' referenced from: duneons:redstonecrystal_3#waterlogged=true: java.io.FileNotFoundException: minecraft:models/redstone_crystals.json [20Mar2024 20:23:38.387] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:western_gate_big' referenced from: duneons:westerngate#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/western_gate_big.json [20Mar2024 20:23:38.398] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:arrowtarget' referenced from: duneons:arrowtarget#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/arrowtarget.json [20Mar2024 20:23:38.399] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:wood_sheld' referenced from: duneons:trophy_shield#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/wood_sheld.json [20Mar2024 20:23:38.419] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:planter_long_big' referenced from: duneons:planterlongbig#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/planter_long_big.json [20Mar2024 20:23:38.420] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:planter_long' referenced from: duneons:planterlong#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/planter_long.json [20Mar2024 20:23:38.487] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:tent_out' referenced from: duneons:illagertent#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/tent_out.json [20Mar2024 20:23:38.488] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:end_door' referenced from: duneons:enddoor#facing=north: java.io.FileNotFoundException: minecraft:models/end_door.json [20Mar2024 20:23:38.489] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:end_blue_wall' referenced from: duneons:endbluewall#facing=north: java.io.FileNotFoundException: minecraft:models/end_blue_wall.json [20Mar2024 20:23:38.498] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:gloomstall' referenced from: duneons:gloomstalls#: java.io.FileNotFoundException: minecraft:models/gloomstall.json [20Mar2024 20:23:38.535] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:jungle_bush' referenced from: duneons:junglebush#: java.io.FileNotFoundException: minecraft:models/jungle_bush.json [20Mar2024 20:23:38.562] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:giant_golden_chains' referenced from: duneons:giantgoldenchains#axis=x,waterlogged=true: java.io.FileNotFoundException: minecraft:models/giant_golden_chains.json [20Mar2024 20:23:38.563] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:giant_netherite_chains' referenced from: duneons:giantnetheritechains#axis=x,waterlogged=true: java.io.FileNotFoundException: minecraft:models/giant_netherite_chains.json [20Mar2024 20:23:38.563] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:iron_golden_chains' referenced from: duneons:irongoldenchains#axis=x,waterlogged=true: java.io.FileNotFoundException: minecraft:models/iron_golden_chains.json [20Mar2024 20:23:38.610] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:gold_chain_1.8' referenced from: duneons:goldchain#axis=x,waterlogged=true: java.io.FileNotFoundException: minecraft:models/gold_chain_1.8.json [20Mar2024 20:23:38.615] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:wall_torch_gold' referenced from: duneons:standfortorchgold#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/wall_torch_gold.json [20Mar2024 20:23:38.640] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:caldero_water' referenced from: duneons:underwaterbrazier#axis=x,waterlogged=true: java.io.FileNotFoundException: minecraft:models/caldero_water.json [20Mar2024 20:23:38.652] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:villagerstatue_jungle' referenced from: duneons:prismarinevillager#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/villagerstatue_jungle.json [20Mar2024 20:23:38.661] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:end_blue_door_open' referenced from: duneons:endbluedooropen#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/end_blue_door_open.json [20Mar2024 20:23:38.666] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:nameless' referenced from: duneons:nameless#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/nameless.json [20Mar2024 20:23:38.673] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:nameless_cube_projectile' referenced from: duneons:namelessballs#: java.io.FileNotFoundException: minecraft:models/nameless_cube_projectile.json [20Mar2024 20:23:38.673] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:necromancer_cube_projectile' referenced from: duneons:necromancercubeprojectile#: java.io.FileNotFoundException: minecraft:models/necromancer_cube_projectile.json [20Mar2024 20:23:38.674] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:arch_cube_projectile' referenced from: duneons:archball#: java.io.FileNotFoundException: minecraft:models/arch_cube_projectile.json [20Mar2024 20:23:38.674] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:poison_quill_shoot' referenced from: duneons:poisonquillshoot#: java.io.FileNotFoundException: minecraft:models/poison_quill_shoot.json [20Mar2024 20:23:38.675] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:blastling_ammo' referenced from: duneons:blastlingammo#: java.io.FileNotFoundException: minecraft:models/blastling_ammo.json [20Mar2024 20:23:38.675] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:ghostfire' referenced from: duneons:soulblast#: java.io.FileNotFoundException: minecraft:models/ghostfire.json [20Mar2024 20:23:38.676] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:drowned_trident' referenced from: duneons:drownedtrident#: java.io.FileNotFoundException: minecraft:models/drowned_trident.json [20Mar2024 20:23:38.692] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:item/celeste2a' referenced from: slimy_stuff:jug#waterlogged=true: java.io.FileNotFoundException: minecraft:models/item/celeste2a.json [20Mar2024 20:23:38.692] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:item/celeste2b' referenced from: slimy_stuff:jug#waterlogged=true: java.io.FileNotFoundException: minecraft:models/item/celeste2b.json [20Mar2024 20:23:38.752] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'galosphere:blockstates/lichen_cordyceps.json' in resourcepack: 'Mod Resources' for variant: 'alive=true,bulb=false': Overlapping definition with: alive=true,alive_stage=0,bulb=false [20Mar2024 20:23:38.863] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:grudbone' referenced from: born_in_chaos_v1:gnawed_bones#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/grudbone.json [20Mar2024 20:23:38.878] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:puddleofintoxication' referenced from: born_in_chaos_v1:puddleofintoxication#waterlogged=true: java.io.FileNotFoundException: minecraft:models/puddleofintoxication.json [20Mar2024 20:23:38.879] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:shellspikes' referenced from: born_in_chaos_v1:spiny_shell_trap#waterlogged=true: java.io.FileNotFoundException: minecraft:models/shellspikes.json [20Mar2024 20:23:38.880] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:houndtrap' referenced from: born_in_chaos_v1:hound_trap#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/houndtrap.json [20Mar2024 20:23:38.880] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:houndtrapserried' referenced from: born_in_chaos_v1:closed_hound_trap#facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/houndtrapserried.json [20Mar2024 20:23:39.411] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:crucible' referenced from: lets_forge_bronze_and_iron:crucible_off#facing=north: java.io.FileNotFoundException: minecraft:models/crucible.json [20Mar2024 20:23:39.451] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:sandstone_landmine_block' referenced from: pyrologernfriends:sandstone_landmine#: java.io.FileNotFoundException: minecraft:models/sandstone_landmine_block.json [20Mar2024 20:23:39.451] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:sandstone_landmine_block_good' referenced from: pyrologernfriends:configured_sandstone_landmine#: java.io.FileNotFoundException: minecraft:models/sandstone_landmine_block_good.json [20Mar2024 20:23:39.489] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:shruster' referenced from: stalwart_dungeons:shruster#: java.io.FileNotFoundException: minecraft:models/shruster.json [20Mar2024 20:23:39.504] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'torchmaster:blockstates/invisible_light.json' missing model for variant: 'torchmaster:invisible_light#' [20Mar2024 20:23:39.504] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'torchmaster:blockstates/invisible_light.json' in resourcepack: 'Mod Resources': Neither 'variants' nor 'multipart' found [20Mar2024 20:23:39.531] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:egg' referenced from: unusualend:endermite_egg#face=floor,facing=north,waterlogged=true: java.io.FileNotFoundException: minecraft:models/egg.json [20Mar2024 20:23:39.532] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:moss' referenced from: unusualend:warped_moss#waterlogged=true: java.io.FileNotFoundException: minecraft:models/moss.json [20Mar2024 20:23:39.532] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:firefly_bulb' referenced from: unusualend:firefly_bulb#: java.io.FileNotFoundException: minecraft:models/firefly_bulb.json [20Mar2024 20:23:39.641] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'abundant_atmosphere:block/mixed_brick/1' referenced from: abundant_atmosphere:mixed_brick_slab#type=top,waterlogged=true: java.io.FileNotFoundException: abundant_atmosphere:models/block/mixed_brick/1.json [20Mar2024 20:23:39.648] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'abundant_atmosphere:block/calcite_brick_planks' referenced from: abundant_atmosphere:calcite_brick_slab#type=top,waterlogged=true: java.io.FileNotFoundException: abundant_atmosphere:models/block/calcite_brick_planks.json [20Mar2024 20:23:39.654] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'abundant_atmosphere:block/dripstone_tile_planks' referenced from: abundant_atmosphere:dripstone_tile_slab#type=top,waterlogged=true: java.io.FileNotFoundException: abundant_atmosphere:models/block/dripstone_tile_planks.json [20Mar2024 20:23:39.742] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'minecraft:spider_web' referenced from: smarter_mobs:spider_web#: java.io.FileNotFoundException: minecraft:models/spider_web.json [20Mar2024 20:23:40.363] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'mna:block/arcane_sentry' referenced from: mna:arcane_sentry#shooting=true,targeting_overridden=true,waterlogged=true: com.google.gson.JsonParseException: Composite model requires a "children" element with at least one element. [20Mar2024 20:23:41.096] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'aether_redux:blockstates/potted_enchanted_shrub.json' missing model for variant: 'aether_redux:potted_enchanted_shrub#' [20Mar2024 20:23:41.321] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=10' [20Mar2024 20:23:41.321] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=11' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=12' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=13' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=14' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=15' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=3' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=2' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=5' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=4' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=1' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=0' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=7' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=6' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=9' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_air.json' missing model for variant: 'dynamiclights:lit_air#power=8' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=0,power=1' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=0,power=0' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=0,power=3' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=0,power=2' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=0,power=5' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=0,power=4' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=0,power=7' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=0,power=6' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=0,power=9' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=0,power=8' [20Mar2024 20:23:41.322] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=8,power=8' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=8,power=9' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=10,power=9' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=10,power=8' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=10,power=7' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=10,power=6' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=10,power=5' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=10,power=4' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=10,power=3' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=10,power=2' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=10,power=1' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=10,power=0' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=11,power=12' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=11,power=11' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=11,power=14' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=11,power=13' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=11,power=15' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=8,power=4' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=8,power=5' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=8,power=6' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=8,power=7' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=8,power=0' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=8,power=1' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=8,power=2' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=11,power=10' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=8,power=3' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=13,power=8' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=13,power=9' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=3,power=9' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=3,power=7' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=4,power=10' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=13,power=4' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=3,power=8' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=13,power=5' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=3,power=5' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=4,power=12' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=13,power=6' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=3,power=6' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=4,power=11' [20Mar2024 20:23:41.323] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=13,power=7' [20Mar2024 20:23:41.324] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=1,power=15' [20Mar2024 20:23:41.324] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=3,power=3' [20Mar2024 20:23:41.324] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=4,power=14' [20Mar2024 20:23:41.324] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=13,power=0' [20Mar2024 20:23:41.324] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=1,power=14' [20Mar2024 20:23:41.324] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=3,power=4' [20Mar2024 20:23:41.324] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_water#level=4,power=13' [20Mar2024 20:23:41.324] [Worker-ResourceReload-2/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'dynamiclights:blockstates/lit_water.json' missing model for variant: 'dynamiclights:lit_wa