diff --git a/bin/main/data/aspects/origins/ignis.json b/bin/main/data/aspects/origins/ignis.json new file mode 100644 index 0000000..552545e --- /dev/null +++ b/bin/main/data/aspects/origins/ignis.json @@ -0,0 +1,13 @@ +{ + "powers": [ + "aspects:hot_biomes", + "aspects:ignis_primary", + "aspects:ignis_secondary", + "aspects:secondary_ding" + ], + "icon": { + "item": "minecraft:zombie_head" + }, + "name": "Ignis", + "description": "Full of energy and power, Ignis types are certainly the life of the party." +} \ No newline at end of file diff --git a/bin/main/data/aspects/powers/fire_immunity.json b/bin/main/data/aspects/powers/fire_immunity.json index 014d515..4805cfa 100644 --- a/bin/main/data/aspects/powers/fire_immunity.json +++ b/bin/main/data/aspects/powers/fire_immunity.json @@ -1,5 +1,13 @@ { - "type": "origins:fire_immunity", + "type": "origins:modify_damage_taken", + "damage_condition": { + "type": "origins:fire" + }, + "modifier": { + "operation": "multiply_total", + "value": -1 + }, + "name":"Fire Immunity", "description":"You are immune to fire damage." } \ No newline at end of file diff --git a/bin/main/data/aspects/powers/fire_strength.json b/bin/main/data/aspects/powers/fire_strength.json new file mode 100644 index 0000000..e219fcd --- /dev/null +++ b/bin/main/data/aspects/powers/fire_strength.json @@ -0,0 +1,15 @@ +{ + "type": "origins:conditioned_attribute", + "modifier": { + "attribute": "minecraft:generic.attack_damage", + "operation": "addition", + "value": 0.2 + }, + "tick_rate": 20, + "condition": { + "type": "origins:on_fire" + }, + + "name":"Heated Strength", + "description":"Being on fire grants you an attack damage bonus." +} diff --git a/bin/main/data/aspects/powers/hot_biomes.json b/bin/main/data/aspects/powers/hot_biomes.json new file mode 100644 index 0000000..24d84e6 --- /dev/null +++ b/bin/main/data/aspects/powers/hot_biomes.json @@ -0,0 +1,19 @@ +{ + "type": "origins:conditioned_attribute", + "modifier": { + "attribute": "minecraft:generic.attack_damage", + "operation": "addition", + "value": 0.4 + }, +"tick_rate": 20, +"condition": { + "type": "origins:biome", + "condition": { + "type": "origins:temperature", + "comparison": ">=", + "compare_to": 1.0 + } + }, + "name":"Heat Affinity", + "description":"You get a decent attack boost in hot biomes." +} \ No newline at end of file diff --git a/bin/main/data/aspects/powers/ignis_primary.json b/bin/main/data/aspects/powers/ignis_primary.json new file mode 100644 index 0000000..de7d4e2 --- /dev/null +++ b/bin/main/data/aspects/powers/ignis_primary.json @@ -0,0 +1,14 @@ +{ + "type": "origins:active_self", + "entity_action": { + "type": "origins:set_on_fire", + "duration": 15 + }, + "cooldown": 300, + "hud_render": { + "should_render": true + }, + + "name":"Ignition", + "description":"Using your primary active ability, you can light yourself on fire for a short duration, granting you an attack buff." +} \ No newline at end of file diff --git a/bin/main/data/aspects/powers/ignis_secondary.json b/bin/main/data/aspects/powers/ignis_secondary.json new file mode 100644 index 0000000..abae3f7 --- /dev/null +++ b/bin/main/data/aspects/powers/ignis_secondary.json @@ -0,0 +1,20 @@ +{ + "type": "origins:active_self", + "entity_action": { + "type": "origins:area_of_effect", + "radius": 32, + "bientity_action": { + "type": "origins:target_action", + "action": { + "type": "origins:set_on_fire", + "duration": 5 + } + }, + "bientity_condition": { + "type": "origins:can_see" + } + }, + "key":"key.origins.secondary_active", + "cooldown": 1400, + "name":"As your secondary ability, you can light entites around you on fire for a few seconds." +} \ No newline at end of file diff --git a/bin/main/data/aspects/powers/secondary_ding.json b/bin/main/data/aspects/powers/secondary_ding.json new file mode 100644 index 0000000..6e6e308 --- /dev/null +++ b/bin/main/data/aspects/powers/secondary_ding.json @@ -0,0 +1,10 @@ +{ + "type": "origins:active_self", + "entity_action": { + "type": "origins:play_sound", + "sound": "minecraft:item.firecharge.use" +}, +"key":"key.origins.secondary_active", +"cooldown": 1400, +"hidden":true +} \ No newline at end of file diff --git a/bin/main/data/aspects/powers/water_damage.json b/bin/main/data/aspects/powers/water_damage.json index d132bc8..99399ff 100644 --- a/bin/main/data/aspects/powers/water_damage.json +++ b/bin/main/data/aspects/powers/water_damage.json @@ -1,18 +1,29 @@ { - "type": "origins:action_over_time", + "type": "origins:damage_over_time", "interval": 20, - "entity_action": { - "type": "origins:damage", - "amount": 2, - "source":{ - "name":"hurt_by_water" - }, - "condition": { - "type": "origins:fluid_height", - "fluid": "minecraft:water", - "comparison": ">=", - "compare_to": 1 - } + "onset_delay": 1, + "damage": 2, + "damage_easy": 1, + "damage_source": { + "name": "hurt_by_water", + "unblockable": true, + "bypasses_armor": true + }, + "protection_enchantment": "origins:water_protection", + "protection_effectiveness": 1.0, + "condition": { + "type": "origins:or", + "conditions": [ + { + "type": "origins:fluid_height", + "fluid": "minecraft:water", + "comparison": ">", + "compare_to": 0.0 + }, + { + "type": "origins:in_rain" + } + ] }, "name":"Water Damage", "description":"When you touch water, you receive damage." diff --git a/run/config/fabric/indigo-renderer.properties b/run/config/fabric/indigo-renderer.properties index 1a2132a..6beb38c 100644 --- a/run/config/fabric/indigo-renderer.properties +++ b/run/config/fabric/indigo-renderer.properties @@ -1,5 +1,5 @@ #Indigo properties file -#Sat Dec 11 17:01:02 AST 2021 +#Sat Dec 11 19:51:49 AST 2021 debug-compare-lighting=auto fix-exterior-vertex-lighting=auto ambient-occlusion-mode=hybrid diff --git a/run/logs/2021-12-11-1.log.gz b/run/logs/2021-12-11-1.log.gz index f7f3175..14cf44e 100644 Binary files a/run/logs/2021-12-11-1.log.gz and b/run/logs/2021-12-11-1.log.gz differ diff --git a/run/logs/2021-12-11-2.log.gz b/run/logs/2021-12-11-2.log.gz index 2a86f57..1505255 100644 Binary files a/run/logs/2021-12-11-2.log.gz and b/run/logs/2021-12-11-2.log.gz differ diff --git a/run/logs/2021-12-11-3.log.gz b/run/logs/2021-12-11-3.log.gz index d36b1cc..ee59d73 100644 Binary files a/run/logs/2021-12-11-3.log.gz and b/run/logs/2021-12-11-3.log.gz differ diff --git a/run/logs/2021-12-11-4.log.gz b/run/logs/2021-12-11-4.log.gz index 8cd1c05..554cefa 100644 Binary files a/run/logs/2021-12-11-4.log.gz and b/run/logs/2021-12-11-4.log.gz differ diff --git a/run/logs/2021-12-11-5.log.gz b/run/logs/2021-12-11-5.log.gz index 3c174b3..26112bf 100644 Binary files a/run/logs/2021-12-11-5.log.gz and b/run/logs/2021-12-11-5.log.gz differ diff --git a/run/logs/2021-12-11-6.log.gz b/run/logs/2021-12-11-6.log.gz index 8787e75..f0813b2 100644 Binary files a/run/logs/2021-12-11-6.log.gz and b/run/logs/2021-12-11-6.log.gz differ diff --git a/run/logs/2021-12-11-7.log.gz b/run/logs/2021-12-11-7.log.gz index b7715e7..a589988 100644 Binary files a/run/logs/2021-12-11-7.log.gz and b/run/logs/2021-12-11-7.log.gz differ diff --git a/run/logs/debug-1.log.gz b/run/logs/debug-1.log.gz index 9404e30..e023d40 100644 Binary files a/run/logs/debug-1.log.gz and b/run/logs/debug-1.log.gz differ diff --git a/run/logs/debug-2.log.gz b/run/logs/debug-2.log.gz index 33f9dc6..210f5f3 100644 Binary files a/run/logs/debug-2.log.gz and b/run/logs/debug-2.log.gz differ diff --git a/run/logs/debug-3.log.gz b/run/logs/debug-3.log.gz index d7c31fa..ca0bd07 100644 Binary files a/run/logs/debug-3.log.gz and b/run/logs/debug-3.log.gz differ diff --git a/run/logs/debug-4.log.gz b/run/logs/debug-4.log.gz index 4b8fa6d..eaa7fd0 100644 Binary files a/run/logs/debug-4.log.gz and b/run/logs/debug-4.log.gz differ diff --git a/run/logs/debug-5.log.gz b/run/logs/debug-5.log.gz index 9175144..09282ca 100644 Binary files a/run/logs/debug-5.log.gz and b/run/logs/debug-5.log.gz differ diff --git a/run/logs/debug.log b/run/logs/debug.log index 5a414f0..f21c2db 100644 --- a/run/logs/debug.log +++ b/run/logs/debug.log @@ -1,14 +1,14 @@ -[17:00:53] [main/INFO] (FabricLoader/GameProvider) Loading Minecraft 1.18 with Fabric Loader 0.12.10 -[17:00:53] [main/DEBUG] (FabricLoader/GameRemap) Requesting deobfuscation of {client=/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/1.18/net.fabricmc.yarn.1_18.1.18+build.1-v2/minecraft-project-@-mapped.jar} -[17:00:53] [main/DEBUG] (FabricLoader/GamePatch) Found game constructor: net.minecraft.client.main.Main -> net.minecraft.client.MinecraftClient -[17:00:53] [main/DEBUG] (FabricLoader/GamePatch) Patching game constructor (Lnet/minecraft/client/RunArgs;)V -[17:00:53] [main/DEBUG] (FabricLoader/GamePatch) Run directory field is thought to be net/minecraft/client/MinecraftClient/runDirectory -[17:00:53] [main/DEBUG] (FabricLoader/GamePatch) Applying brand name hook to net/minecraft/client/ClientBrandRetriever::getClientModName -[17:00:53] [main/DEBUG] (FabricLoader/GamePatch) Applying brand name hook to net/minecraft/server/MinecraftServer::getServerModName -[17:00:53] [main/DEBUG] (FabricLoader/GamePatch) Patched 3 classs -[17:00:53] [main/DEBUG] (FabricLoader/Discovery) Mod discovery time: 38.1 ms -[17:00:53] [main/DEBUG] (FabricLoader/Resolution) Mod resolution time: 39.9 ms -[17:00:53] [main/INFO] (FabricLoader) Loading 61 mods: +[19:51:41] [main/INFO] (FabricLoader/GameProvider) Loading Minecraft 1.18 with Fabric Loader 0.12.10 +[19:51:41] [main/DEBUG] (FabricLoader/GameRemap) Requesting deobfuscation of {client=/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/1.18/net.fabricmc.yarn.1_18.1.18+build.1-v2/minecraft-project-@-mapped.jar} +[19:51:41] [main/DEBUG] (FabricLoader/GamePatch) Found game constructor: net.minecraft.client.main.Main -> net.minecraft.client.MinecraftClient +[19:51:41] [main/DEBUG] (FabricLoader/GamePatch) Patching game constructor (Lnet/minecraft/client/RunArgs;)V +[19:51:41] [main/DEBUG] (FabricLoader/GamePatch) Run directory field is thought to be net/minecraft/client/MinecraftClient/runDirectory +[19:51:41] [main/DEBUG] (FabricLoader/GamePatch) Applying brand name hook to net/minecraft/client/ClientBrandRetriever::getClientModName +[19:51:41] [main/DEBUG] (FabricLoader/GamePatch) Applying brand name hook to net/minecraft/server/MinecraftServer::getServerModName +[19:51:41] [main/DEBUG] (FabricLoader/GamePatch) Patched 3 classs +[19:51:41] [main/DEBUG] (FabricLoader/Discovery) Mod discovery time: 40.5 ms +[19:51:41] [main/DEBUG] (FabricLoader/Resolution) Mod resolution time: 38.7 ms +[19:51:41] [main/INFO] (FabricLoader) Loading 61 mods: - apoli 2.2.0 - aspects ${version} - calio 1.4.2 @@ -70,1128 +70,1128 @@ - origins 1.3.0 - playerabilitylib 1.3.0 - reach-entity-attributes 2.1.1 -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-events-interaction-v0/0.4.16+bfa23f17c8/fabric-events-interaction-v0-0.4.16+bfa23f17c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-data-generation-api-v1/1.0.0+3fec4ad9c8/fabric-data-generation-api-v1-1.0.0+3fec4ad9c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-blockrenderlayer-v1/1.1.9+3ac43d95c8/fabric-blockrenderlayer-v1-1.1.9+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-containers-v0/0.1.18+d154e2c6c8/fabric-containers-v0-0.1.18+d154e2c6c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-dimensions-v1/2.1.7+43d29571c8/fabric-dimensions-v1-2.1.7+43d29571c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-lifecycle-events-v1/1.4.10+c15ca335c8/fabric-lifecycle-events-v1-1.4.10+c15ca335c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-entity-events-v1/1.4.5+6b21378ac8/fabric-entity-events-v1-1.4.5+6b21378ac8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-object-builder-api-v1/1.11.0+3b82842ec8/fabric-object-builder-api-v1-1.11.0+3b82842ec8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-rendering-fluids-v1/0.1.18+3ac43d95c8/fabric-rendering-fluids-v1-0.1.18+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-content-registries-v0/0.4.5+6f53a73dc8/fabric-content-registries-v0-0.4.5+6f53a73dc8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/com/github/apace100/origins-fabric/v1.3.0/origins-fabric-v1.3.0.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-rendering-v0/1.1.9+b4f4f6cdc8/fabric-rendering-v0-1.1.9+b4f4f6cdc8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/io/github/ladysnake/PlayerAbilityLib/1.3.0/PlayerAbilityLib-1.3.0.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-models-v0/0.3.3+3ac43d95c8/fabric-models-v0-0.3.3+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-events-lifecycle-v0/0.2.6+b4f4f6cdc8/fabric-events-lifecycle-v0-0.2.6+b4f4f6cdc8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-screen-handler-api-v1/1.1.11+3ac43d95c8/fabric-screen-handler-api-v1-1.1.11+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-crash-report-info-v1/0.1.8+3ac43d95c8/fabric-crash-report-info-v1-0.1.8+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-item-api-v1/1.3.0+691a79b5c8/fabric-item-api-v1-1.3.0+691a79b5c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-resource-loader-v0/0.4.11+3ac43d95c8/fabric-resource-loader-v0-0.4.11+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-key-binding-api-v1/1.0.8+c8aba2f3c8/fabric-key-binding-api-v1-1.0.8+c8aba2f3c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-loot-tables-v1/1.0.8+3ac43d95c8/fabric-loot-tables-v1-1.0.8+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-structure-api-v1/2.0.8+295197a7c8/fabric-structure-api-v1-2.0.8+295197a7c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-networking-v0/0.3.5+b4f4f6cdc8/fabric-networking-v0-0.3.5+b4f4f6cdc8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-renderer-api-v1/0.4.9+3ac43d95c8/fabric-renderer-api-v1-0.4.9+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-game-rule-api-v1/1.0.10+3ac43d95c8/fabric-game-rule-api-v1-1.0.10+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-registry-sync-v0/0.8.5+3ac43d95c8/fabric-registry-sync-v0-0.8.5+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-tag-extensions-v0/1.2.5+3ac43d95c8/fabric-tag-extensions-v0-1.2.5+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/com/github/apace100/apoli/v2.2.0/apoli-v2.2.0.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-renderer-indigo/0.4.12+3ac43d95c8/fabric-renderer-indigo-0.4.12+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-biome-api-v1/6.0.1+ded849a9c8/fabric-biome-api-v1-6.0.1+ded849a9c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/me/shedaniel/cloth/cloth-config-fabric/6.0.42/cloth-config-fabric-6.0.42.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/io/github/onyxstudios/Cardinal-Components-API/cardinal-components-base/4.0.0-alpha.1+21w37a/cardinal-components-base-4.0.0-alpha.1+21w37a.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-keybindings-v0/0.2.6+b4f4f6cdc8/fabric-keybindings-v0-0.2.6+b4f4f6cdc8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-api-lookup-api-v1/1.4.0+16d92c47c8/fabric-api-lookup-api-v1-1.4.0+16d92c47c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-rendering-v1/1.10.3+6b21378ac8/fabric-rendering-v1-1.10.3+6b21378ac8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-screen-api-v1/1.0.7+3ac43d95c8/fabric-screen-api-v1-1.0.7+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-particles-v1/0.2.9+526dc1acc8/fabric-particles-v1-0.2.9+526dc1acc8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-tool-attribute-api-v1/1.3.4+7de09f55c8/fabric-tool-attribute-api-v1-1.3.4+7de09f55c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-mining-level-api-v1/1.0.3+3ac43d95c8/fabric-mining-level-api-v1-1.0.3+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-object-builders-v0/0.7.8+3ac43d95c8/fabric-object-builders-v0-0.7.8+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/com/terraformersmc/modmenu/3.0.0/modmenu-3.0.0.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/io/github/onyxstudios/Cardinal-Components-API/cardinal-components-entity/4.0.0-alpha.1+21w37a/cardinal-components-entity-4.0.0-alpha.1+21w37a.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-item-groups-v0/0.3.3+3ac43d95c8/fabric-item-groups-v0-0.3.3+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-renderer-registries-v1/3.2.7+b4f4f6cdc8/fabric-renderer-registries-v1-3.2.7+b4f4f6cdc8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/bin/main to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-rendering-data-attachment-v1/0.3.4+7242e9d7c8/fabric-rendering-data-attachment-v1-0.3.4+7242e9d7c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-gametest-api-v1/1.0.5+03d159cfc8/fabric-gametest-api-v1-1.0.5+03d159cfc8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-command-api-v1/1.1.6+3ac43d95c8/fabric-command-api-v1-1.1.6+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-textures-v0/1.0.9+3ac43d95c8/fabric-textures-v0-1.0.9+3ac43d95c8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-mining-levels-v0/0.1.7+b4f4f6cdc8/fabric-mining-levels-v0-0.1.7+b4f4f6cdc8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-api-base/0.4.1+b4f4f6cdc8/fabric-api-base-0.4.1+b4f4f6cdc8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-api/0.44.0+1.18/fabric-api-0.44.0+1.18.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-transfer-api-v1/1.5.5+b4f4f6cdc8/fabric-transfer-api-v1-1.5.5+b4f4f6cdc8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-commands-v0/0.2.5+b4f4f6cdc8/fabric-commands-v0-0.2.5+b4f4f6cdc8.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/me/shedaniel/cloth/basic-math/0.6.0/basic-math-0.6.0.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/com/github/apace100/calio/v1.4.2/calio-v1.4.2.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/com/jamieswhiteshirt/reach-entity-attributes/2.1.1/reach-entity-attributes-2.1.1.jar to classpath. -[17:00:53] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-networking-api-v1/1.0.18+3ac43d95c8/fabric-networking-api-v1-1.0.18+3ac43d95c8.jar to classpath. -[17:00:53] [main/WARN] (FabricLoader/Metadata) Mod `aspects` (${version}) does not respect SemVer - comparison support is limited. -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.interaction.InteractionEventsRouterClient for mod fabric-events-interaction-v0 (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.interaction.InteractionEventsRouter for mod fabric-events-interaction-v0 (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.client.container.ScreenProviderRegistryImpl::init for mod fabric-containers-v0 (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.lifecycle.ClientLifecycleEventsImpl for mod fabric-lifecycle-events-v1 (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.lifecycle.LifecycleEventsImpl for mod fabric-lifecycle-events-v1 (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.origins.integration.ModMenuIntegration for mod origins (key modmenu) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.origins.OriginsClient for mod origins (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.origins.Origins for mod origins (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.origins.registry.ModComponents for mod origins (key cardinal-components-entity) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.client.rendering.RenderingCallbackInvoker for mod fabric-rendering-v0 (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.ladysnake.pal.Pal for mod playerabilitylib (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.lifecycle.client.LegacyClientEventInvokers for mod fabric-events-lifecycle-v0 (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.lifecycle.LegacyEventInvokers for mod fabric-events-lifecycle-v0 (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.screenhandler.client.ClientNetworking for mod fabric-screen-handler-api-v1 (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.structure.FabricStructureImpl for mod fabric-structure-api-v1 (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.networking.OldClientNetworkingHooks for mod fabric-networking-v0 (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.networking.OldNetworkingHooks for mod fabric-networking-v0 (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.registry.sync.FabricRegistryClientInit for mod fabric-registry-sync-v0 (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.registry.sync.FabricRegistryInit for mod fabric-registry-sync-v0 (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.apoli.ApoliServer for mod apoli (key server) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.apoli.integration.ModMenuIntegration for mod apoli (key modmenu) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.apoli.ApoliClient for mod apoli (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.apoli.Apoli for mod apoli (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.apoli.Apoli for mod apoli (key cardinal-components-entity) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.client.indigo.Indigo for mod fabric-renderer-indigo (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer me.shedaniel.clothconfig2.fabric.ClothConfigModMenuDemo for mod cloth-config (key modmenu) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer me.shedaniel.autoconfig.example.ExampleInits::exampleCommonInit for mod cloth-config (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.lookup.ApiLookupImpl for mod fabric-api-lookup-api-v1 (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.tool.attribute.ToolHandlers for mod fabric-tool-attribute-api-v1 (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.mininglevel.FabricMiningLevelInit for mod fabric-mining-level-api-v1 (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer com.terraformersmc.modmenu.ModMenuModMenuCompat for mod modmenu (key modmenu) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer com.terraformersmc.modmenu.ModMenu for mod modmenu (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer dev.onyxstudios.cca.internal.entity.CcaEntityClientNw::initClient for mod cardinal-components-entity (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer dev.onyxstudios.cca.internal.entity.CardinalComponentsEntity::init for mod cardinal-components-entity (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fishplex.Aspects for mod aspects (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.gametest.FabricGameTestModInitializer for mod fabric-gametest-api-v1 (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.calio.CalioServer for mod calio (key server) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.calio.CalioClient for mod calio (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.calio.Calio for mod calio (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer com.jamieswhiteshirt.reachentityattributes.ReachEntityAttributes for mod reach-entity-attributes (key main) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.networking.client.ClientNetworkingImpl::clientInit for mod fabric-networking-api-v1 (key client) -[17:00:53] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.networking.NetworkingImpl::init for mod fabric-networking-api-v1 (key main) -[17:00:54] [main/DEBUG] (FabricLoader/Mappings) Loading mappings took 137 ms -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin bootstrap service org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapperBootstrap is not available: LaunchWrapper is not available -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin bootstrap service org.spongepowered.asm.service.modlauncher.MixinServiceModLauncherBootstrap is not available: ModLauncher is not available -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) MixinService [Knot/Fabric] was successfully booted in jdk.internal.loader.ClassLoaders$AppClassLoader@42110406 -[17:00:54] [main/INFO] (FabricLoader/Mixin) SpongePowered MIXIN Subsystem Version=0.8.4 Source=file:/Users/adellanicholson/.gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.10.7+mixin.0.8.4/7a4ca9d54d9ae564dea0363d668036a8420ed9b8/sponge-mixin-0.10.7+mixin.0.8.4.jar Service=Knot/Fabric Env=CLIENT -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Error cleaning class output directory: .mixin.out -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Initialising Mixin Platform Manager -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Adding mixin platform agents for container ContainerHandleURI(file:/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-loader/0.12.10/fabric-loader-0.12.10.jar) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Instancing new MixinPlatformAgentDefault for ContainerHandleURI(file:/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-loader/0.12.10/fabric-loader-0.12.10.jar) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) MixinPlatformAgentDefault accepted container ContainerHandleURI(file:/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-loader/0.12.10/fabric-loader-0.12.10.jar) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Instancing new MixinPlatformAgentDefault for ContainerHandleURI(file:/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-loader/0.12.10/fabric-loader-0.12.10.jar) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) MixinPlatformAgentDefault accepted container ContainerHandleURI(file:/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-loader/0.12.10/fabric-loader-0.12.10.jar) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleURI(file:/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-loader/0.12.10/fabric-loader-0.12.10.jar)] -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleURI(file:/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-loader/0.12.10/fabric-loader-0.12.10.jar)] -[17:00:54] [main/INFO] (FabricLoader/Mixin) Loaded Fabric development mappings for mixin remapper! -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-events-interaction-v0.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). -[17:00:54] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_16 -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-events-interaction-v0.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-data-generation-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-blockrenderlayer-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-containers-v0.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-containers-v0.accurate.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-dimensions-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-lifecycle-events-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-entity-events-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-object-builder-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-rendering-fluids-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-content-registries-v0.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-models-v0.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-screen-handler-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-crash-report-info-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-item-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-resource-loader-v0.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-key-binding-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-loot-tables-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-structure-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-renderer-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-renderer-api-v1.debughud.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-game-rule-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-registry-sync-v0.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-tag-extensions-v0.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-renderer-indigo.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-biome-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-api-lookup-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-rendering-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-screen-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-particles-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-tool-attribute-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-mining-level-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-object-builders-v0.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-item-groups-v0.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-rendering-data-attachment-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-gametest-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-command-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-textures-v0.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-transfer-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-networking-api-v1.mixins.json does not specify "minVersion" property -[17:00:54] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/1.18/net.fabricmc.yarn.1_18.1.18+build.1-v2/minecraft-project-@-mapped.jar to classpath. -[17:00:54] [main/DEBUG] (FabricLoader/Entrypoint) No subscribers for entrypoint 'preLaunch' -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing mixins for MixinEnvironment[DEFAULT] -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-events-interaction-v0.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-events-interaction-v0-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-data-generation-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-data-generation-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-blockrenderlayer-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-blockrenderlayer-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-containers-v0.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-containers-v0-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-containers-v0.accurate.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-containers-v0-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-dimensions-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-dimensions-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-lifecycle-events-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-lifecycle-events-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-entity-events-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-entity-events-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-object-builder-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-object-builder-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-rendering-fluids-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-rendering-fluids-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-content-registries-v0.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-content-registries-v0-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config origins.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap Origins-1.18-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config mixins.playerabilitylib.common.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap pal-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-models-v0.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-models-v0-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-screen-handler-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-screen-handler-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-crash-report-info-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-crash-report-info-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-item-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-item-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-resource-loader-v0.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-resource-loader-v0-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-key-binding-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-key-binding-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-loot-tables-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-loot-tables-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-structure-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-structure-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-renderer-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-renderer-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-renderer-api-v1.debughud.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-renderer-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-game-rule-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-game-rule-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-registry-sync-v0.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-registry-sync-v0-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-tag-extensions-v0.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-tag-extensions-v0-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config apoli.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap Apoli-1.18-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-renderer-indigo.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-renderer-indigo-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-biome-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-biome-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-api-lookup-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-api-lookup-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-rendering-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-rendering-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-screen-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-screen-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-particles-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-particles-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-tool-attribute-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-tool-attribute-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-mining-level-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-mining-level-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-object-builders-v0.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-object-builders-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config mixins.modmenu.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap modmenu-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config mixins.cardinal_components_entity.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap cardinal-components-entity-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-item-groups-v0.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-item-groups-v0-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config aspects.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-rendering-data-attachment-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-rendering-data-attachment-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-gametest-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-gametest-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-command-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-command-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-textures-v0.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-textures-v0-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-transfer-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-transfer-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config calio.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap Calio-1.18-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config mixins.reach-entity-attributes.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap refmap.reach-entity-attributes.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-networking-api-v1.mixins.json -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-networking-api-v1-refmap.json using remapper chain -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-events-interaction-v0.mixins.json (5) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/network/ServerPlayNetworkHandler$1 is public in fabric-events-interaction-v0.mixins.json:MixinServerPlayNetworkHandler and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-data-generation-api-v1.mixins.json (4) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-blockrenderlayer-v1.mixins.json (1) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-containers-v0.mixins.json (1) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-containers-v0.accurate.mixins.json (1) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-dimensions-v1.mixins.json (2) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-lifecycle-events-v1.mixins.json (12) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/world/ServerWorld$ServerEntityHandler is public in fabric-lifecycle-events-v1.mixins.json:ServerWorldEntityLoaderMixin and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/client/world/ClientWorld$ClientEntityHandler is public in fabric-lifecycle-events-v1.mixins.json:client.ClientWorldEntityLoaderMixin and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-entity-events-v1.mixins.json (10) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-object-builder-v1.mixins.json (16) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/village/TradeOffers$TypeAwareBuyForOneEmeraldFactory is public in fabric-object-builder-v1.mixins.json:TypeAwareTradeMixin and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-rendering-fluids-v1.mixins.json (1) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-content-registries-v0.mixins.json (8) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing origins.mixins.json (11) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing mixins.playerabilitylib.common.json (2) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-models-v0.mixins.json (2) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-screen-handler-api-v1.mixins.json (1) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-crash-report-info-v1.mixins.json (1) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-item-api-v1.mixins.json (6) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-resource-loader-v0.mixins.json (15) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/client/font/FontManager$1 is public in fabric-resource-loader-v0.mixins.json:client.FontManagerResourceReloadListenerMixin and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-key-binding-api-v1.mixins.json (3) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-loot-tables-v1.mixins.json (6) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-structure-api-v1.mixins.json (4) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-renderer-api-v1.mixins.json (4) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-renderer-api-v1.debughud.mixins.json (1) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-game-rule-api-v1.mixins.json (9) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/command/GameRuleCommand$1 is public in fabric-game-rule-api-v1.mixins.json:GameRuleCommandVisitorMixin and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/client/gui/screen/world/EditGameRulesScreen$RuleListWidget$1 is public in fabric-game-rule-api-v1.mixins.json:client.RuleListWidgetVisitorMixin and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-registry-sync-v0.mixins.json (16) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-tag-extensions-v0.mixins.json (9) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/data/server/AbstractTagProvider$ObjectBuilder is public in fabric-tag-extensions-v0.mixins.json:MixinObjectBuilder and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/tag/RequiredTagList$TagWrapper is public in fabric-tag-extensions-v0.mixins.json:MixinTagImpl and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing apoli.mixins.json (50) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/screen/PlayerScreenHandler$1 is public in apoli.mixins.json:PlayerScreenHandlerMixin and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-renderer-indigo.mixins.json (7) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/client/render/block/BlockModelRenderer$AmbientOcclusionCalculator is public in fabric-renderer-indigo.mixins.json:MixinAmbientOcclusionCalculator and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/client/render/chunk/ChunkBuilder$BuiltChunk$RebuildTask is public in fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-biome-api-v1.mixins.json (4) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-api-lookup-api-v1.mixins.json (2) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-rendering-v1.mixins.json (14) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-screen-api-v1.mixins.json (6) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-particles-v1.mixins.json (3) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-tool-attribute-api-v1.mixins.json (3) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-mining-level-api-v1.mixins.json (4) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-object-builders-v0.mixins.json (2) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing mixins.modmenu.json (1) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing mixins.cardinal_components_entity.json (6) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-item-groups-v0.mixins.json (3) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing aspects.mixins.json (1) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-rendering-data-attachment-v1.mixins.json (4) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-gametest-api-v1.mixins.json (6) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-command-api-v1.mixins.json (6) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-textures-v0.mixins.json (1) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-transfer-api-v1.mixins.json (6) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing calio.mixins.json (9) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing mixins.reach-entity-attributes.json (13) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/block/entity/LecternBlockEntity$1 is public in mixins.reach-entity-attributes.json:InventoryValidationMixin and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/network/ServerPlayNetworkHandler$1 is public in mixins.reach-entity-attributes.json:PlayerEntityInteractionHandlerMixin and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-networking-api-v1.mixins.json (14) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/world/ThreadedAnvilChunkStorage$EntityTracker is public in fabric-networking-api-v1.mixins.json:accessor.EntityTrackerAccessor and should be specified in value -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @Inject with org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyArg with org.spongepowered.asm.mixin.injection.struct.ModifyArgInjectionInfo -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyArgs with org.spongepowered.asm.mixin.injection.struct.ModifyArgsInjectionInfo -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @Redirect with org.spongepowered.asm.mixin.injection.struct.RedirectInjectionInfo -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyVariable with org.spongepowered.asm.mixin.injection.struct.ModifyVariableInjectionInfo -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyConstant with org.spongepowered.asm.mixin.injection.struct.ModifyConstantInjectionInfo -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Prepared 313 mixins in 0.463 sec (1.5ms avg) (0ms load, 0ms transform, 0ms plugin) -[17:00:54] [main/DEBUG] (io.netty.util.internal.logging.InternalLoggerFactory) Using SLF4J as the default logging framework -[17:00:54] [main/DEBUG] (io.netty.util.ResourceLeakDetector) -Dio.netty.leakDetection.level: simple -[17:00:54] [main/DEBUG] (io.netty.util.ResourceLeakDetector) -Dio.netty.leakDetection.targetRecords: 4 -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixing elytra/PlayerEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.player.PlayerEntity -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/PlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) Mixing PlayerEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.player.PlayerEntity -[17:00:54] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:PlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing NoCobwebSlowdownMixin from origins.mixins.json into net.minecraft.entity.player.PlayerEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:NoCobwebSlowdownMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing WaterBreathingMixin$UpdateAir from origins.mixins.json into net.minecraft.entity.player.PlayerEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterBreathingMixin$UpdateAir: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing PlayerEntityMixin from apoli.mixins.json into net.minecraft.entity.player.PlayerEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventArmorDispensing$8(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/EquipmentSlot;Lio/github/apace100/apoli/power/RestrictArmorPower;)Z to mdf693ec$lambda$preventArmorDispensing$8$0 in apoli.mixins.json:PlayerEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$restoreKeptInventory$7(Lio/github/apace100/apoli/power/KeepInventoryPower;)V to mdf693ec$lambda$restoreKeptInventory$7$1 in apoli.mixins.json:PlayerEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$dropAdditionalInventory$6(Lio/github/apace100/apoli/power/KeepInventoryPower;)V to mdf693ec$lambda$dropAdditionalInventory$6$2 in apoli.mixins.json:PlayerEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$dropAdditionalInventory$5(Lio/github/apace100/apoli/power/InventoryPower;)V to mdf693ec$lambda$dropAdditionalInventory$5$3 in apoli.mixins.json:PlayerEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeWakeUpAction$4(Lnet/minecraft/util/math/BlockPos;Lio/github/apace100/apoli/power/ActionOnWakeUp;)V to mdf693ec$lambda$invokeWakeUpAction$4$4 in apoli.mixins.json:PlayerEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeWakeUpAction$3(Lnet/minecraft/util/math/BlockPos;Lio/github/apace100/apoli/power/ActionOnWakeUp;)Z to mdf693ec$lambda$invokeWakeUpAction$3$5 in apoli.mixins.json:PlayerEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventEntityInteraction$2(Lnet/minecraft/util/Hand;Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ActionOnBeingUsedPower;)Z to mdf693ec$lambda$preventEntityInteraction$2$6 in apoli.mixins.json:PlayerEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventEntityInteraction$1(Lnet/minecraft/entity/Entity;Lnet/minecraft/util/Hand;Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ActionOnEntityUsePower;)Z to mdf693ec$lambda$preventEntityInteraction$1$7 in apoli.mixins.json:PlayerEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyEatenItemStack$0(Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ModifyFoodPower;)Z to mdf693ec$lambda$modifyEatenItemStack$0$8 in apoli.mixins.json:PlayerEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing PlayerEntityMixin from mixins.reach-entity-attributes.json into net.minecraft.entity.player.PlayerEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/PlayerEntityMixin->@Inject::injectElytraCheck(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:PlayerEntityMixin->@Inject::onTrySleep(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:PlayerEntityMixin->@Inject::onIsSleepingLongEnough(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:NoCobwebSlowdownMixin->@Inject::slowMovement(Lnet/minecraft/block/BlockState;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins does use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterBreathingMixin$UpdateAir->@Inject::tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterBreathingMixin$UpdateAir->@Inject::tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterBreathingMixin$UpdateAir->@Inject::tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::preventEntityInteraction(Lnet/minecraft/entity/Entity;Lnet/minecraft/util/Hand;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::sendPlayerDismountPacket(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::sendPlayerDismountPacket(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::sendPlayerDismountPacket(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::updateSwimmingPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::updateSwimmingPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::updateSwimmingPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::invokeWakeUpAction(ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::invokeWakeUpAction(ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::invokeWakeUpAction(ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::disableHeal(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::dropAdditionalInventory(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::dropAdditionalInventory(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::dropAdditionalInventory(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::restoreKeptInventory(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::restoreKeptInventory(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::restoreKeptInventory(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::preventArmorDispensing(Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing elytra/LivingEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.LivingEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/LivingEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.LivingEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing LikeWaterMixin from origins.mixins.json into net.minecraft.entity.LivingEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:LikeWaterMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing WaterBreathingMixin$CanBreatheInWater from origins.mixins.json into net.minecraft.entity.LivingEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterBreathingMixin$CanBreatheInWater: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityMixin from fabric-item-api-v1.mixins.json into net.minecraft.entity.LivingEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:LivingEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing EyeHeightAccess from apoli.mixins.json into net.minecraft.entity.LivingEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EyeHeightAccess: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityMixin from apoli.mixins.json into net.minecraft.entity.LivingEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyEatenItemStack$23(Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ModifyFoodPower;)Z to mdf693ec$lambda$modifyEatenItemStack$23$0 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventDeath$22(Lnet/minecraft/entity/damage/DamageSource;Lio/github/apace100/apoli/power/PreventDeathPower;)Z to mdf693ec$lambda$preventDeath$22$1 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventPushing$21(Lio/github/apace100/apoli/power/PreventEntityCollisionPower;)Z to mdf693ec$lambda$preventPushing$21$2 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventPushing$20(Lnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/PreventEntityCollisionPower;)Z to mdf693ec$lambda$preventPushing$20$3 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifySlipperiness$19(Lio/github/apace100/apoli/power/ModifySlipperinessPower;)Z to mdf693ec$lambda$modifySlipperiness$19$4 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyJumpVelocity$18(Lio/github/apace100/apoli/power/ModifyJumpPower;)Z to mdf693ec$lambda$modifyJumpVelocity$18$5 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeKillAction$17(Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/SelfActionOnKillPower;)V to mdf693ec$lambda$invokeKillAction$17$6 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$16(Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/TargetActionOnHitPower;)V to mdf693ec$lambda$invokeHitActions$16$7 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$15(Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/SelfActionOnHitPower;)V to mdf693ec$lambda$invokeHitActions$15$8 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$14(Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/AttackerActionWhenHitPower;)V to mdf693ec$lambda$invokeHitActions$14$9 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$13(Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/SelfActionWhenHitPower;)V to mdf693ec$lambda$invokeHitActions$13$a in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$12(Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/ActionOnHitPower;)V to mdf693ec$lambda$invokeHitActions$12$b in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$11(Lio/github/apace100/apoli/power/ActionOnHitPower;)Z to mdf693ec$lambda$invokeHitActions$11$c in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$10(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/ActionWhenHitPower;)V to mdf693ec$lambda$invokeHitActions$10$d in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$9(Lio/github/apace100/apoli/power/ActionWhenHitPower;)Z to mdf693ec$lambda$invokeHitActions$9$e in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyDamageTaken$8(Lnet/minecraft/entity/damage/DamageSource;Lio/github/apace100/apoli/power/ModifyDamageTakenPower;)V to mdf693ec$lambda$modifyDamageTaken$8$f in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyDamageTaken$7(Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/ModifyDamageTakenPower;)Z to mdf693ec$lambda$modifyDamageTaken$7$10 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyDamageTaken$6(Lnet/minecraft/entity/LivingEntity;Lio/github/apace100/apoli/power/ModifyDamageDealtPower;)V to mdf693ec$lambda$modifyDamageTaken$6$11 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyDamageTaken$5(Lnet/minecraft/entity/damage/DamageSource;FLnet/minecraft/entity/LivingEntity;Lio/github/apace100/apoli/power/ModifyDamageDealtPower;)Z to mdf693ec$lambda$modifyDamageTaken$5$12 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyWalkableFluids$4(Lnet/minecraft/fluid/Fluid;Lio/github/apace100/apoli/power/WalkOnFluidPower;)Z to mdf693ec$lambda$modifyWalkableFluids$4$13 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$addEquipmentPowers$3(Lio/github/apace100/apoli/component/PowerHolderComponent;Lnet/minecraft/util/Identifier;Lio/github/apace100/apoli/util/StackPowerUtil$StackPower;)V to mdf693ec$lambda$addEquipmentPowers$3$14 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$removeEquipmentPowers$2(Lio/github/apace100/apoli/component/PowerHolderComponent;Lnet/minecraft/util/Identifier;Lio/github/apace100/apoli/util/StackPowerUtil$StackPower;)V to mdf693ec$lambda$removeEquipmentPowers$2$15 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyStatusEffect$1(Lnet/minecraft/entity/effect/StatusEffect;Lio/github/apace100/apoli/power/ModifyStatusEffectDurationPower;)Z to mdf693ec$lambda$modifyStatusEffect$1$16 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyStatusEffect$0(Lnet/minecraft/entity/effect/StatusEffect;Lio/github/apace100/apoli/power/ModifyStatusEffectAmplifierPower;)Z to mdf693ec$lambda$modifyStatusEffect$0$17 in apoli.mixins.json:LivingEntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityParticleMixin from apoli.mixins.json into net.minecraft.entity.LivingEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityParticleMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityMixin from fabric-tool-attribute-api-v1.mixins.json into net.minecraft.entity.LivingEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:LivingEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityMixin from mixins.reach-entity-attributes.json into net.minecraft.entity.LivingEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/LivingEntityMixin->@Inject::injectElytraTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 does use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onEntityKilledOther(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/entity/Entity;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onEntityKilledOther(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/entity/Entity;)V from mod fabric-entity-events-v1 has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onEntityKilledOther(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/entity/Entity;)V from mod fabric-entity-events-v1 won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onSleep(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onSleep(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onSleep(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onWakeUp(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onWakeUp(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onWakeUp(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onIsSleepingInBed(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onGetSleepingDirection(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/math/BlockPos;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterBreathingMixin$CanBreatheInWater->@Inject::doWaterBreathing(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod origins does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:LivingEntityMixin->@Inject::onGetPreferredEquipmentSlot(Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/item/Item;)V from mod fabric-item-api-v1 does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenApplied(Lnet/minecraft/entity/effect/StatusEffectInstance;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenApplied(Lnet/minecraft/entity/effect/StatusEffectInstance;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenApplied(Lnet/minecraft/entity/effect/StatusEffectInstance;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenUpgraded(Lnet/minecraft/entity/effect/StatusEffectInstance;ZLnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenUpgraded(Lnet/minecraft/entity/effect/StatusEffectInstance;ZLnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenUpgraded(Lnet/minecraft/entity/effect/StatusEffectInstance;ZLnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenRemoved(Lnet/minecraft/entity/effect/StatusEffectInstance;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenRemoved(Lnet/minecraft/entity/effect/StatusEffectInstance;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenRemoved(Lnet/minecraft/entity/effect/StatusEffectInstance;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenCleared(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenCleared(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenCleared(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenCleared(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenCleared(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenCleared(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::syncAttacker(Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::syncAttacker(Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::syncAttacker(Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::removeEquipmentPowers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod apoli doesn't use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::removeEquipmentPowers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::removeEquipmentPowers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod apoli won't be passed a CallbackInfoReturnable as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::addEquipmentPowers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod apoli doesn't use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::addEquipmentPowers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::addEquipmentPowers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod apoli won't be passed a CallbackInfoReturnable as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::modifyWalkableFluids(Lnet/minecraft/fluid/Fluid;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::preventHitIfDamageIsZero(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeHitActions(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeHitActions(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeHitActions(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeHitActions(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeHitActions(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeHitActions(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeKillAction(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeKillAction(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeKillAction(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::freezeEntityFromPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::freezeEntityFromPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::freezeEntityFromPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::unfreezeEntityFromPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::unfreezeEntityFromPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::unfreezeEntityFromPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::allowFreezingPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::allowFreezingPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::getGroup(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::modifyJumpVelocity(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::preventStatusEffects(Lnet/minecraft/entity/effect/StatusEffectInstance;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::doSpiderClimbing(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::doSpiderClimbing(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::doSpiderClimbing(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::doSpiderClimbing(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::preventPushing(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::cacheDamageAmount(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::cacheDamageAmount(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::cacheDamageAmount(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::preventDeath(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::removeCurrentModifyFoodPowers(Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::removeCurrentModifyFoodPowers(Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::removeCurrentModifyFoodPowers(Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::modifyFlySpeed(FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::modifyFlySpeed(FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityParticleMixin->@Inject::tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityParticleMixin->@Inject::tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityParticleMixin->@Inject::tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:LivingEntityMixin->@Inject::storeRemoveStackContext(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod fabric-tool-attribute-api-v1 doesn't use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:LivingEntityMixin->@Inject::storeRemoveStackContext(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod fabric-tool-attribute-api-v1 has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:LivingEntityMixin->@Inject::storeRemoveStackContext(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod fabric-tool-attribute-api-v1 won't be passed a CallbackInfoReturnable as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:LivingEntityMixin->@Inject::storeAddStackContext(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod fabric-tool-attribute-api-v1 doesn't use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:LivingEntityMixin->@Inject::storeAddStackContext(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod fabric-tool-attribute-api-v1 has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:LivingEntityMixin->@Inject::storeAddStackContext(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod fabric-tool-attribute-api-v1 won't be passed a CallbackInfoReturnable as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.reach-entity-attributes.json:LivingEntityMixin->@Inject::addAttributes(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod reach-entity-attributes does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityMixin from fabric-dimensions-v1.mixins.json into net.minecraft.entity.Entity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-dimensions-v1.mixins.json:EntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.Entity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing SelectionInvulnerabilityMixin from origins.mixins.json into net.minecraft.entity.Entity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:SelectionInvulnerabilityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityAccessor from apoli.mixins.json into net.minecraft.entity.Entity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityMixin from apoli.mixins.json into net.minecraft.entity.Entity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventGameEvents$3(Lnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/PreventGameEventPower;)V to mdf693ec$lambda$preventGameEvents$3$0 in apoli.mixins.json:EntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventGameEvents$2(Lnet/minecraft/world/event/GameEvent;Lio/github/apace100/apoli/power/PreventGameEventPower;)Z to mdf693ec$lambda$preventGameEvents$2$1 in apoli.mixins.json:EntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$pushOutOfBlocks$1(DDDLio/github/apace100/apoli/power/PhasingPower;)Z to mdf693ec$lambda$pushOutOfBlocks$1$2 in apoli.mixins.json:EntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeOriginInvulnerable$0(Lnet/minecraft/entity/damage/DamageSource;Lio/github/apace100/apoli/power/InvulnerablePower;)Z to mdf693ec$lambda$makeOriginInvulnerable$0$3 in apoli.mixins.json:EntityMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing common.MixinEntity from mixins.cardinal_components_entity.json into net.minecraft.entity.Entity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-dimensions-v1.mixins.json:EntityMixin->@Inject::getTeleportTarget(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-dimensions-v1 does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:SelectionInvulnerabilityMixin->@Inject::makeOriginInvulnerable(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod origins does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::makeFullyFireImmune(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::makeEntitiesIgnoreWater(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::invokeActionOnLand(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::invokeActionOnLand(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::invokeActionOnLand(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::makeOriginInvulnerable(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::phantomInvisibility(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::pushOutOfBlocks(DDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::preventGameEvents(Lnet/minecraft/world/event/GameEvent;Lnet/minecraft/entity/Entity;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::saveDistanceTraveled(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::saveDistanceTraveled(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::saveDistanceTraveled(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity->@Inject::initDataTracker(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity->@Inject::initDataTracker(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity->@Inject::initDataTracker(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity->@Inject::toTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod cardinal-components-entity does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity->@Inject::fromTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity->@Inject::fromTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity->@Inject::fromTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing WorldMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.world.World -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:WorldMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:WorldMixin->@Inject::tickWorldAfterBlockEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:WorldMixin->@Inject::tickWorldAfterBlockEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 1 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:WorldMixin->@Inject::tickWorldAfterBlockEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinViewableWorld from fabric-rendering-data-attachment-v1.mixins.json into net.minecraft.world.WorldView -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-rendering-data-attachment-v1.mixins.json:MixinViewableWorld: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerWorldMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.server.world.ServerWorld -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerWorldMixin from fabric-api-lookup-api-v1.mixins.json into net.minecraft.server.world.ServerWorld -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_invalidateCache$5(Ljava/util/Map$Entry;)Z to mdf693ec$lambda$fabric_invalidateCache$5$0 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_invalidateCache$4(Ljava/lang/ref/WeakReference;)Z to mdf693ec$lambda$fabric_invalidateCache$4$1 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_invalidateCache$3(Ljava/lang/ref/WeakReference;)V to mdf693ec$lambda$fabric_invalidateCache$3$2 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_invalidateCache$2(Ljava/lang/ref/WeakReference;)Z to mdf693ec$lambda$fabric_invalidateCache$2$3 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_registerCache$1(Ljava/lang/ref/WeakReference;)Z to mdf693ec$lambda$fabric_registerCache$1$4 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_registerCache$0(Lnet/minecraft/util/math/BlockPos;)Ljava/util/List; to mdf693ec$lambda$fabric_registerCache$0$5 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing common.MixinServerWorld from mixins.cardinal_components_entity.json into net.minecraft.server.world.ServerWorld -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerWorld: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin->@Inject::startWorldTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin->@Inject::startWorldTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin->@Inject::startWorldTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerWorld->@Inject::tick(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerWorld->@Inject::tick(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerWorld->@Inject::tick(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerWorld->@Inject::tickRiding(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerWorld->@Inject::tickRiding(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerWorld->@Inject::tickRiding(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing elytra/ClientPlayerEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.client.network.ClientPlayerEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/ClientPlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing WaterVisibilityMixin from origins.mixins.json into net.minecraft.client.network.ClientPlayerEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterVisibilityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing ClientPlayerEntityMixin from apoli.mixins.json into net.minecraft.client.network.ClientPlayerEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayerEntityMixin from fabric-command-api-v1.mixins.json into net.minecraft.client.network.ClientPlayerEntity -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.ClientPlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/ClientPlayerEntityMixin->@Inject::injectElytraStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/ClientPlayerEntityMixin->@Inject::injectElytraStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/ClientPlayerEntityMixin->@Inject::injectElytraStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterVisibilityMixin->@Inject::getUnderwaterVisibility(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod origins does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin->@Inject::allowSwimming(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin->@Inject::beginMovementPhase(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin->@Inject::beginMovementPhase(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin->@Inject::beginMovementPhase(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin->@Inject::endMovementPhase(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin->@Inject::endMovementPhase(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin->@Inject::endMovementPhase(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.ClientPlayerEntityMixin->@Inject::onSendChatMessage(Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 does use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing ScreenHandlerMixin from mixins.reach-entity-attributes.json into net.minecraft.screen.ScreenHandler -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing PlayerScreenHandlerAccessor from apoli.mixins.json into net.minecraft.screen.PlayerScreenHandler -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerScreenHandlerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinCrashReport from fabric-crash-report-info-v1.mixins.json into net.minecraft.util.SystemDetails -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-crash-report-info-v1.mixins.json:MixinCrashReport: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fillSystemDetails$0()Ljava/lang/String; to mdf693ec$lambda$fillSystemDetails$0$0 in fabric-crash-report-info-v1.mixins.json:MixinCrashReport -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-crash-report-info-v1.mixins.json:MixinCrashReport->@Inject::fillSystemDetails(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-crash-report-info-v1 doesn't use it's CallbackInfo -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-crash-report-info-v1.mixins.json:MixinCrashReport->@Inject::fillSystemDetails(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-crash-report-info-v1 has 0 override(s) in child classes -[17:00:55] [main/DEBUG] (FabricLoader/Mixin) fabric-crash-report-info-v1.mixins.json:MixinCrashReport->@Inject::fillSystemDetails(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-crash-report-info-v1 won't be passed a CallbackInfo as a result -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinBootstrap from fabric-registry-sync-v0.mixins.json into net.minecraft.Bootstrap -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinBootstrap: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$initialize$1(Lnet/minecraft/fluid/Fluid;)Ljava/util/Collection; to mdf693ec$lambda$initialize$1$0 in fabric-registry-sync-v0.mixins.json:MixinBootstrap -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$initialize$0(Lnet/minecraft/block/Block;)Ljava/util/Collection; to mdf693ec$lambda$initialize$0$1 in fabric-registry-sync-v0.mixins.json:MixinBootstrap -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinBootstrap->@Inject::initialize(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing AccessorRegistry from fabric-registry-sync-v0.mixins.json into net.minecraft.util.registry.Registry -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:AccessorRegistry: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getROOT()Lnet/minecraft/util/registry/MutableRegistry; to getROOT_$md$f693ec$0 in fabric-registry-sync-v0.mixins.json:AccessorRegistry -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinRegistry from fabric-registry-sync-v0.mixins.json into net.minecraft.util.registry.Registry -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinRegistry: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinIdRegistry from fabric-registry-sync-v0.mixins.json into net.minecraft.util.registry.SimpleRegistry -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdRegistry: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$5([Lnet/fabricmc/fabric/api/event/registry/RegistryIdRemapCallback;)Lnet/fabricmc/fabric/api/event/registry/RegistryIdRemapCallback; to mdf693ec$lambda$new$5$0 in fabric-registry-sync-v0.mixins.json:MixinIdRegistry -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$4([Lnet/fabricmc/fabric/api/event/registry/RegistryIdRemapCallback;Lnet/fabricmc/fabric/api/event/registry/RegistryIdRemapCallback$RemapState;)V to mdf693ec$lambda$new$4$1 in fabric-registry-sync-v0.mixins.json:MixinIdRegistry -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$3([Lnet/fabricmc/fabric/api/event/registry/RegistryEntryRemovedCallback;)Lnet/fabricmc/fabric/api/event/registry/RegistryEntryRemovedCallback; to mdf693ec$lambda$new$3$2 in fabric-registry-sync-v0.mixins.json:MixinIdRegistry -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$2([Lnet/fabricmc/fabric/api/event/registry/RegistryEntryRemovedCallback;ILnet/minecraft/util/Identifier;Ljava/lang/Object;)V to mdf693ec$lambda$new$2$3 in fabric-registry-sync-v0.mixins.json:MixinIdRegistry -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$1([Lnet/fabricmc/fabric/api/event/registry/RegistryEntryAddedCallback;)Lnet/fabricmc/fabric/api/event/registry/RegistryEntryAddedCallback; to mdf693ec$lambda$new$1$4 in fabric-registry-sync-v0.mixins.json:MixinIdRegistry -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$0([Lnet/fabricmc/fabric/api/event/registry/RegistryEntryAddedCallback;ILnet/minecraft/util/Identifier;Ljava/lang/Object;)V to mdf693ec$lambda$new$0$5 in fabric-registry-sync-v0.mixins.json:MixinIdRegistry -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinSimpleRegistry from fabric-registry-sync-v0.mixins.json into net.minecraft.util.registry.SimpleRegistry -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinSimpleRegistry: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdRegistry->@Inject::setPre(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdRegistry->@Inject::setPre(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdRegistry->@Inject::setPre(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfoReturnable as a result -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdRegistry->@Inject::setPost(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdRegistry->@Inject::setPost(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdRegistry->@Inject::setPost(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfoReturnable as a result -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinSimpleRegistry->@Inject::add(Lnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinSimpleRegistry->@Inject::add(Lnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinSimpleRegistry->@Inject::add(Lnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfoReturnable as a result -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinSimpleRegistry->@Inject::set(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinSimpleRegistry->@Inject::set(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinSimpleRegistry->@Inject::set(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfoReturnable as a result -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing FluidMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.fluid.Fluid -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:FluidMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinBlock from fabric-object-builder-v1.mixins.json into net.minecraft.block.Block -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:MixinBlock: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing OldMixinBlock from fabric-object-builders-v0.mixins.json into net.minecraft.block.Block -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinBlock: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:MixinBlock->@Inject::fabric_init(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builder-api-v1 doesn't use it's CallbackInfo -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:MixinBlock->@Inject::fabric_init(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builder-api-v1 has 0 override(s) in child classes -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:MixinBlock->@Inject::fabric_init(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builder-api-v1 won't be passed a CallbackInfo as a result -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinBlock->@Inject::init(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builders-v0 doesn't use it's CallbackInfo -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinBlock->@Inject::init(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builders-v0 has 0 override(s) in child classes -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinBlock->@Inject::init(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builders-v0 won't be passed a CallbackInfo as a result -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractBlockAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.block.AbstractBlock -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:AbstractBlockAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractBlockMixin from apoli.mixins.json into net.minecraft.block.AbstractBlock -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:AbstractBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyBlockBreakSpeed$0(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/math/BlockPos;Lio/github/apace100/apoli/power/ModifyBreakSpeedPower;)Z to mdf693ec$lambda$modifyBlockBreakSpeed$0$0 in apoli.mixins.json:AbstractBlockMixin -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:AbstractBlockMixin->@Inject::modifyBlockBreakSpeed(Lnet/minecraft/block/BlockState;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:AbstractBlockMixin->@Inject::modifyBlockBreakSpeed(Lnet/minecraft/block/BlockState;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemMixin from fabric-item-api-v1.mixins.json into net.minecraft.item.Item -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemMixin from apoli.mixins.json into net.minecraft.item.Item -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$forgeItem$1(Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ItemOnItemPower;)Z to mdf693ec$lambda$forgeItem$1$0 in apoli.mixins.json:ItemMixin -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeItemEdible$0(Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ModifyFoodPower;)Z to mdf693ec$lambda$makeItemEdible$0$1 in apoli.mixins.json:ItemMixin -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing OldMixinItem from fabric-object-builders-v0.mixins.json into net.minecraft.item.Item -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinItem: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.item.Item -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:ItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemMixin from mixins.reach-entity-attributes.json into net.minecraft.item.Item -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemMixin->@Inject::onConstruct(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 doesn't use it's CallbackInfo -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemMixin->@Inject::onConstruct(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 has 0 override(s) in child classes -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemMixin->@Inject::onConstruct(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 won't be passed a CallbackInfo as a result -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemMixin->@Inject::forgeItem(Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Lnet/minecraft/screen/slot/Slot;Lnet/minecraft/util/ClickType;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/inventory/StackReference;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinItem->@Inject::init(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builders-v0 doesn't use it's CallbackInfo -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinItem->@Inject::init(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builders-v0 has 0 override(s) in child classes -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinItem->@Inject::init(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builders-v0 won't be passed a CallbackInfo as a result -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing BlockEntityTypeAccessor from fabric-api-lookup-api-v1.mixins.json into net.minecraft.block.entity.BlockEntityType -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-api-lookup-api-v1.mixins.json:BlockEntityTypeAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing VillagerTypeAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.village.VillagerType -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:VillagerTypeAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getBiomeTypeToIdMap()Ljava/util/Map; to getBiomeTypeToIdMap_$md$f693ec$0 in fabric-object-builder-v1.mixins.json:VillagerTypeAccessor -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callRegister(Ljava/lang/String;)Lnet/minecraft/village/VillagerType; to callRegister_$md$f693ec$1 in fabric-object-builder-v1.mixins.json:VillagerTypeAccessor -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing VillagerProfessionAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.village.VillagerProfession -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:VillagerProfessionAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method create(Ljava/lang/String;Lnet/minecraft/world/poi/PointOfInterestType;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/sound/SoundEvent;)Lnet/minecraft/village/VillagerProfession; to create_$md$f693ec$0 in fabric-object-builder-v1.mixins.json:VillagerProfessionAccessor -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing PointOfInterestTypeAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.world.poi.PointOfInterestType -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:PointOfInterestTypeAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callCreate(Ljava/lang/String;Ljava/util/Set;ILjava/util/function/Predicate;I)Lnet/minecraft/world/poi/PointOfInterestType; to callCreate_$md$f693ec$0 in fabric-object-builder-v1.mixins.json:PointOfInterestTypeAccessor -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callCreate(Ljava/lang/String;Ljava/util/Set;II)Lnet/minecraft/world/poi/PointOfInterestType; to callCreate_$md$f693ec$1 in fabric-object-builder-v1.mixins.json:PointOfInterestTypeAccessor -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callSetup(Lnet/minecraft/world/poi/PointOfInterestType;)Lnet/minecraft/world/poi/PointOfInterestType; to callSetup_$md$f693ec$2 in fabric-object-builder-v1.mixins.json:PointOfInterestTypeAccessor -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing StructureFeatureAccessor from fabric-structure-api-v1.mixins.json into net.minecraft.world.gen.feature.StructureFeature -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-structure-api-v1.mixins.json:StructureFeatureAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setSurfaceAdjustingStructures(Ljava/util/List;)V to setSurfaceAdjustingStructures_$md$f693ec$0 in fabric-structure-api-v1.mixins.json:StructureFeatureAccessor -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callRegister(Ljava/lang/String;Lnet/minecraft/world/gen/feature/StructureFeature;Lnet/minecraft/world/gen/GenerationStep$Feature;)Lnet/minecraft/world/gen/feature/StructureFeature; to callRegister_$md$f693ec$1 in fabric-structure-api-v1.mixins.json:StructureFeatureAccessor -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinTheEndBiomeSource from fabric-biome-api-v1.mixins.json into net.minecraft.world.biome.source.TheEndBiomeSource -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinTheEndBiomeSource: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinTheEndBiomeSource->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-biome-api-v1 does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinTheEndBiomeSource->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-biome-api-v1 does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinTheEndBiomeSource->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-biome-api-v1 does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinTheEndBiomeSource->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-biome-api-v1 does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinTheEndBiomeSource->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-biome-api-v1 does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinRequiredTagListRegistry from fabric-tag-extensions-v0.mixins.json into net.minecraft.tag.RequiredTagListRegistry -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinRequiredTagListRegistry: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinRequiredTagListRegistry->@Inject::getBuiltinTags(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tag-extensions-v0 does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinTagImpl from fabric-tag-extensions-v0.mixins.json into net.minecraft.tag.SetTag -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagImpl: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinTagImpl from fabric-tag-extensions-v0.mixins.json into net.minecraft.tag.RequiredTagList$TagWrapper -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagImpl: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing BedBlockMixin from fabric-entity-events-v1.mixins.json into net.minecraft.block.BedBlock -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:BedBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:BedBlockMixin->@Inject::onOnUse(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/entity/player/PlayerEntity$SleepFailureReason;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 does use it's CallbackInfo -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing DetectorRailBlockMixin from fabric-object-builder-v1.mixins.json into net.minecraft.block.DetectorRailBlock -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DetectorRailBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$getCustomComparatorOutput$0(Lnet/minecraft/entity/Entity;)Z to mdf693ec$lambda$getCustomComparatorOutput$0$0 in fabric-object-builder-v1.mixins.json:DetectorRailBlockMixin -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DetectorRailBlockMixin->@Inject::getCustomComparatorOutput(Lnet/minecraft/block/BlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-object-builder-api-v1 does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinFireBlock from fabric-content-registries-v0.mixins.json into net.minecraft.block.FireBlock -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinFireBlock: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinFireBlock->@Inject::afterConstruct(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-content-registries-v0 doesn't use it's CallbackInfo -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinFireBlock->@Inject::afterConstruct(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-content-registries-v0 has 0 override(s) in child classes -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinFireBlock->@Inject::afterConstruct(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-content-registries-v0 won't be passed a CallbackInfo as a result -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinFireBlock->@Inject::getFabricBurnChance(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-content-registries-v0 does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinFireBlock->@Inject::getFabricSpreadChance(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-content-registries-v0 does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing DropperBlockMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.block.DropperBlock -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:DropperBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$hookDispense$0(Lnet/fabricmc/fabric/api/transfer/v1/item/ItemVariant;)Z to mdf693ec$lambda$hookDispense$0$0 in fabric-transfer-api-v1.mixins.json:DropperBlockMixin -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:DropperBlockMixin->@Inject::hookDispense(Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-transfer-api-v1 does use it's CallbackInfo -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing BambooBlockMixin from fabric-tool-attribute-api-v1.mixins.json into net.minecraft.block.BambooSaplingBlock -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:BambooBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:BambooBlockMixin->@Inject::onCalcBlockBreakingDelta(Lnet/minecraft/block/BlockState;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing BambooBlockMixin from fabric-tool-attribute-api-v1.mixins.json into net.minecraft.block.BambooBlock -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:BambooBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:BambooBlockMixin->@Inject::onCalcBlockBreakingDelta(Lnet/minecraft/block/BlockState;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing OxidizableMixin from fabric-content-registries-v0.mixins.json into net.minecraft.block.Oxidizable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:OxidizableMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:OxidizableMixin->@Inject::createOxidationLevelIncreasesMap(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-content-registries-v0 does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinIdList from fabric-registry-sync-v0.mixins.json into net.minecraft.util.collection.IdList -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdList: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_remapIds$0(Lit/unimi/dsi/fastutil/ints/Int2IntMap;Ljava/lang/Object;Ljava/lang/Integer;)Ljava/lang/Integer; to mdf693ec$lambda$fabric_remapIds$0$0 in fabric-registry-sync-v0.mixins.json:MixinIdList -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing MaterialBuilderAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.block.Material$Builder -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:MaterialBuilderAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractBlockSettingsAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.block.AbstractBlock$Settings -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:AbstractBlockSettingsAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractBlockSettingsMixin from fabric-object-builder-v1.mixins.json into net.minecraft.block.AbstractBlock$Settings -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:AbstractBlockSettingsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractBlockStateMixin from apoli.mixins.json into net.minecraft.block.AbstractBlock$AbstractBlockState -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:AbstractBlockStateMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventBlockSelection$0(Lnet/minecraft/entity/Entity;Lnet/minecraft/util/math/BlockPos;Lio/github/apace100/apoli/power/PreventBlockSelectionPower;)Z to mdf693ec$lambda$preventBlockSelection$0$0 in apoli.mixins.json:AbstractBlockStateMixin -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:AbstractBlockStateMixin->@Inject::preventBlockSelection(Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/ShapeContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:AbstractBlockStateMixin->@Inject::phaseThroughBlocks(Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/ShapeContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:AbstractBlockStateMixin->@Inject::preventCollisionWhenPhasing(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinBlockEntity from fabric-rendering-data-attachment-v1.mixins.json into net.minecraft.block.entity.BlockEntity -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) fabric-rendering-data-attachment-v1.mixins.json:MixinBlockEntity: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:56] [main/DEBUG] (FabricLoader/Mixin) Mixing InventoryValidationMixin from mixins.reach-entity-attributes.json into net.minecraft.block.entity.LootableContainerBlockEntity -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing CraftingScreenHandlerAccessor from apoli.mixins.json into net.minecraft.screen.CraftingScreenHandler -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingScreenHandlerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing CraftingScreenHandlerMixin from apoli.mixins.json into net.minecraft.screen.CraftingScreenHandler -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingScreenHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$allowUsingViaPower$0(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)Ljava/lang/Boolean; to mdf693ec$lambda$allowUsingViaPower$0$0 in apoli.mixins.json:CraftingScreenHandlerMixin -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingScreenHandlerMixin->@Inject::clearPowerCraftingInventory(Lnet/minecraft/screen/ScreenHandler;Lnet/minecraft/world/World;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/inventory/CraftingInventory;Lnet/minecraft/inventory/CraftingResultInventory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingScreenHandlerMixin->@Inject::allowUsingViaPower(Lnet/minecraft/entity/player/PlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinAbstractFurnaceBlockEntity from fabric-content-registries-v0.mixins.json into net.minecraft.block.entity.AbstractFurnaceBlockEntity -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinAbstractFurnaceBlockEntity: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing InventoryValidationMixin from mixins.reach-entity-attributes.json into net.minecraft.block.entity.AbstractFurnaceBlockEntity -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinAbstractFurnaceBlockEntity->@Inject::fuelTimeMapHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-content-registries-v0 does use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing InventoryValidationMixin from mixins.reach-entity-attributes.json into net.minecraft.block.entity.BrewingStandBlockEntity -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemStackMixin from fabric-item-api-v1.mixins.json into net.minecraft.item.ItemStack -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ItemStackMixin from fabric-item-api-v1.mixins.json into net.minecraft.item.ItemStack -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:client.ItemStackMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemStackMixin from apoli.mixins.json into net.minecraft.item.ItemStack -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$addEquipmentPowerTooltips$3(Ljava/util/List;Lio/github/apace100/apoli/power/TooltipPower;)V to mdf693ec$lambda$addEquipmentPowerTooltips$3$0 in apoli.mixins.json:ItemStackMixin -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$addEquipmentPowerTooltips$2(Lio/github/apace100/apoli/power/TooltipPower;)Z to mdf693ec$lambda$addEquipmentPowerTooltips$2$1 in apoli.mixins.json:ItemStackMixin -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$addEquipmentPowerTooltips$1(Ljava/util/List;Lnet/minecraft/client/item/TooltipContext;Lio/github/apace100/apoli/util/StackPowerUtil$StackPower;)V to mdf693ec$lambda$addEquipmentPowerTooltips$1$2 in apoli.mixins.json:ItemStackMixin -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$addEquipmentPowerTooltips$0(Lio/github/apace100/apoli/util/StackPowerUtil$StackPower;)Z to mdf693ec$lambda$addEquipmentPowerTooltips$0$3 in apoli.mixins.json:ItemStackMixin -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinItemStack from fabric-tool-attribute-api-v1.mixins.json into net.minecraft.item.ItemStack -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing DontOverwriteAttrModsMixin from calio.mixins.json into net.minecraft.item.ItemStack -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:DontOverwriteAttrModsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing CustomNonItalicNameMixin$ModifyItalicDisplayItem from calio.mixins.json into net.minecraft.item.ItemStack -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:CustomNonItalicNameMixin$ModifyItalicDisplayItem: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::saveDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 doesn't use it's CallbackInfo -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::saveDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 has 0 override(s) in child classes -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::saveDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 won't be passed a CallbackInfo as a result -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 doesn't use it's CallbackInfo -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 has 0 override(s) in child classes -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 won't be passed a CallbackInfo as a result -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 doesn't use it's CallbackInfo -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 has 0 override(s) in child classes -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 won't be passed a CallbackInfo as a result -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 doesn't use it's CallbackInfo -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 has 0 override(s) in child classes -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 won't be passed a CallbackInfo as a result -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:client.ItemStackMixin->@Inject::getTooltip(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-item-api-v1 does use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::addEquipmentPowerTooltips(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/List;)V from mod apoli doesn't use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::addEquipmentPowerTooltips(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/List;)V from mod apoli has 0 override(s) in child classes -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::addEquipmentPowerTooltips(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/List;)V from mod apoli won't be passed a CallbackInfoReturnable as a result -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::use(Lnet/minecraft/world/World;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::cacheUsedItemStack(Lnet/minecraft/world/World;Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::cacheUsedItemStack(Lnet/minecraft/world/World;Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::cacheUsedItemStack(Lnet/minecraft/world/World;Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::callActionOnUse(Lnet/minecraft/world/World;Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::isEffectiveOn(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 does use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::getMiningSpeedMultiplier(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 does use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::storeTooltipAttributeEntityContext(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 doesn't use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::storeTooltipAttributeEntityContext(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 has 0 override(s) in child classes -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::storeTooltipAttributeEntityContext(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 won't be passed a CallbackInfoReturnable as a result -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::revokeTooltipAttributeEntityContext(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 doesn't use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::revokeTooltipAttributeEntityContext(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 has 0 override(s) in child classes -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::revokeTooltipAttributeEntityContext(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 won't be passed a CallbackInfoReturnable as a result -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::getAttributeModifiers(Lnet/minecraft/entity/EquipmentSlot;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lcom/google/common/collect/Multimap;)V from mod fabric-tool-attribute-api-v1 does use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:DontOverwriteAttrModsMixin->@Inject::addAttributeModifiersFromItem(Lnet/minecraft/entity/EquipmentSlot;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lcom/google/common/collect/Multimap;)V from mod calio doesn't use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:DontOverwriteAttrModsMixin->@Inject::addAttributeModifiersFromItem(Lnet/minecraft/entity/EquipmentSlot;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lcom/google/common/collect/Multimap;)V from mod calio has 0 override(s) in child classes -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:DontOverwriteAttrModsMixin->@Inject::addAttributeModifiersFromItem(Lnet/minecraft/entity/EquipmentSlot;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lcom/google/common/collect/Multimap;)V from mod calio won't be passed a CallbackInfoReturnable as a result -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing EnderChestBlockEntityMixin from mixins.reach-entity-attributes.json into net.minecraft.block.entity.EnderChestBlockEntity -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing CustomNonItalicNameMixin$RemoveNonItalicOnRename from calio.mixins.json into net.minecraft.screen.AnvilScreenHandler -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:CustomNonItalicNameMixin$RemoveNonItalicOnRename: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:CustomNonItalicNameMixin$RemoveNonItalicOnRename->@Inject::removeNonItalicFlag(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/item/ItemStack;IIILnet/minecraft/item/ItemStack;)V from mod calio doesn't use it's CallbackInfo -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:CustomNonItalicNameMixin$RemoveNonItalicOnRename->@Inject::removeNonItalicFlag(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/item/ItemStack;IIILnet/minecraft/item/ItemStack;)V from mod calio has 0 override(s) in child classes -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:CustomNonItalicNameMixin$RemoveNonItalicOnRename->@Inject::removeNonItalicFlag(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/item/ItemStack;IIILnet/minecraft/item/ItemStack;)V from mod calio won't be passed a CallbackInfo as a result -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing ForgingScreenHandlerMixin from mixins.reach-entity-attributes.json into net.minecraft.screen.ForgingScreenHandler -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing HopperBlockEntityMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.block.entity.HopperBlockEntity -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$hookExtract$1(Lnet/fabricmc/fabric/api/transfer/v1/item/ItemVariant;)Z to mdf693ec$lambda$hookExtract$1$0 in fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$hookInsert$0(Lnet/fabricmc/fabric/api/transfer/v1/item/ItemVariant;)Z to mdf693ec$lambda$hookInsert$0$1 in fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin->@Inject::hookInsert(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;Lnet/minecraft/inventory/Inventory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/inventory/Inventory;)V from mod fabric-transfer-api-v1 does use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin->@Inject::hookExtract(Lnet/minecraft/world/World;Lnet/minecraft/block/entity/Hopper;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/inventory/Inventory;)V from mod fabric-transfer-api-v1 does use it's CallbackInfoReturnable -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) Mixing ConduitOnLandMixin from origins.mixins.json into net.minecraft.block.entity.ConduitBlockEntity -[17:00:57] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:ConduitOnLandMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Mixing PersistentProjectileEntityMixin from apoli.mixins.json into net.minecraft.entity.projectile.PersistentProjectileEntity -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PersistentProjectileEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyProjectileDamageDealt$1(Lnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/ModifyProjectileDamagePower;)V to mdf693ec$lambda$modifyProjectileDamageDealt$1$0 in apoli.mixins.json:PersistentProjectileEntityMixin -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyProjectileDamageDealt$0(Lnet/minecraft/entity/damage/DamageSource;ILnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/ModifyProjectileDamagePower;)Z to mdf693ec$lambda$modifyProjectileDamageDealt$0$1 in apoli.mixins.json:PersistentProjectileEntityMixin -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Mixing ExperienceOrbEntityMixin from apoli.mixins.json into net.minecraft.entity.ExperienceOrbEntity -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ExperienceOrbEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ExperienceOrbEntityMixin->@Inject::modifyXpAmount(Lnet/minecraft/entity/player/PlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ExperienceOrbEntityMixin->@Inject::modifyXpAmount(Lnet/minecraft/entity/player/PlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ExperienceOrbEntityMixin->@Inject::modifyXpAmount(Lnet/minecraft/entity/player/PlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Mixing ScareCreepersMixin from origins.mixins.json into net.minecraft.entity.mob.CreeperEntity -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:ScareCreepersMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$redirectTargetGoal$0(Lnet/minecraft/entity/LivingEntity;)Z to mdf693ec$lambda$redirectTargetGoal$0$0 in origins.mixins.json:ScareCreepersMixin -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:ScareCreepersMixin->@Inject::addGoals(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins doesn't use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:ScareCreepersMixin->@Inject::addGoals(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:ScareCreepersMixin->@Inject::addGoals(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins won't be passed a CallbackInfo as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Mixing TridentEntityMixin from apoli.mixins.json into net.minecraft.entity.projectile.TridentEntity -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:TridentEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyProjectileDamageDealt$1(Lnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/ModifyProjectileDamagePower;)V to mdf693ec$lambda$modifyProjectileDamageDealt$1$0 in apoli.mixins.json:TridentEntityMixin -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyProjectileDamageDealt$0(Lnet/minecraft/entity/damage/DamageSource;FLnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/ModifyProjectileDamagePower;)Z to mdf693ec$lambda$modifyProjectileDamageDealt$0$1 in apoli.mixins.json:TridentEntityMixin -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinServerPlayerEntity from fabric-events-interaction-v0.mixins.json into net.minecraft.server.network.ServerPlayerEntity -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerEntity: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityAccessor from fabric-containers-v0.mixins.json into net.minecraft.server.network.ServerPlayerEntity -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-containers-v0.mixins.json:ServerPlayerEntityAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinServerPlayerEntity from fabric-containers-v0.accurate.mixins.json into net.minecraft.server.network.ServerPlayerEntity -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-containers-v0.accurate.mixins.json:MixinServerPlayerEntity: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.server.network.ServerPlayerEntity -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityMixin from mixins.playerabilitylib.common.json into net.minecraft.server.network.ServerPlayerEntity -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityMixin from fabric-screen-handler-api-v1.mixins.json into net.minecraft.server.network.ServerPlayerEntity -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityMixin from apoli.mixins.json into net.minecraft.server.network.ServerPlayerEntity -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventAvianSleep$0(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lio/github/apace100/apoli/power/PreventSleepPower;)V to mdf693ec$lambda$preventAvianSleep$0$0 in apoli.mixins.json:ServerPlayerEntityMixin -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Mixing common.MixinServerPlayerEntity from mixins.cardinal_components_entity.json into net.minecraft.server.network.ServerPlayerEntity -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerPlayerEntity: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerEntity->@Inject::onPlayerInteractEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-events-interaction-v0 does use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::callOnKillForPlayer(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::callOnKillForPlayer(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::callOnKillForPlayer(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 won't be passed a CallbackInfo as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 won't be passed a CallbackInfo as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::onCopyFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::onCopyFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::onCopyFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 won't be passed a CallbackInfo as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::onTrySleepDirectionCheck(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/math/Direction;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::init(Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/world/ServerWorld;Lcom/mojang/authlib/GameProfile;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib doesn't use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::init(Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/world/ServerWorld;Lcom/mojang/authlib/GameProfile;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::init(Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/world/ServerWorld;Lcom/mojang/authlib/GameProfile;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib won't be passed a CallbackInfo as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::checkAbilityConsistency(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib doesn't use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::checkAbilityConsistency(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::checkAbilityConsistency(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib won't be passed a CallbackInfo as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::writeAbilitiesToTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib doesn't use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::writeAbilitiesToTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::writeAbilitiesToTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib won't be passed a CallbackInfo as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::readAbilitiesFromTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib doesn't use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::readAbilitiesFromTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::readAbilitiesFromTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib won't be passed a CallbackInfo as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_storeOpenedScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/screen/ScreenHandler;)V from mod fabric-screen-handler-api-v1 doesn't use it's CallbackInfoReturnable -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_storeOpenedScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/screen/ScreenHandler;)V from mod fabric-screen-handler-api-v1 has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_storeOpenedScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/screen/ScreenHandler;)V from mod fabric-screen-handler-api-v1 won't be passed a CallbackInfoReturnable as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 doesn't use it's CallbackInfoReturnable -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 won't be passed a CallbackInfoReturnable as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 doesn't use it's CallbackInfoReturnable -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 won't be passed a CallbackInfoReturnable as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 doesn't use it's CallbackInfoReturnable -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 won't be passed a CallbackInfoReturnable as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin->@Inject::preventAvianSleep(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin->@Inject::modifySpawnPointDimension(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin->@Inject::modifyPlayerSpawnPosition(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin->@Inject::modifySpawnPointSet(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin->@Inject::copyInventoryWhenKeeping(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin->@Inject::copyInventoryWhenKeeping(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin->@Inject::copyInventoryWhenKeeping(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerPlayerEntity->@Inject::copyDataFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerPlayerEntity->@Inject::copyDataFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerPlayerEntity->@Inject::copyDataFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Mixing InventoryValidationMixin from mixins.reach-entity-attributes.json into net.minecraft.entity.vehicle.StorageMinecartEntity -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) Mixing client.WorldChunkMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.world.chunk.WorldChunk -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:58] [main/WARN] (FabricLoader/Mixin) @Inject(@At("INVOKE")) Shift.BY=3 on fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin::handler$zbf000$onLoadBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onLoadBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onLoadBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onLoadBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onRemoveBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onRemoveBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onRemoveBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onRemoveBlockEntity(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onRemoveBlockEntity(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:00:58] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onRemoveBlockEntity(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing StructuresConfigAccessor from fabric-structure-api-v1.mixins.json into net.minecraft.world.gen.chunk.StructuresConfig -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-structure-api-v1.mixins.json:StructuresConfigAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing BlockItemMixin from apoli.mixins.json into net.minecraft.item.BlockItem -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:BlockItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing ArmorItemMixin from apoli.mixins.json into net.minecraft.item.ArmorItem -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ArmorItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventArmorEquipping$0(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/EquipmentSlot;Lio/github/apace100/apoli/power/RestrictArmorPower;)Z to mdf693ec$lambda$preventArmorEquipping$0$0 in apoli.mixins.json:ArmorItemMixin -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ArmorItemMixin->@Inject::preventArmorEquipping(Lnet/minecraft/world/World;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/EquipmentSlot;)V from mod apoli does use it's CallbackInfoReturnable -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing SwordItemMixin from fabric-mining-level-api-v1.mixins.json into net.minecraft.item.SwordItem -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin->@Inject::fabric$onIsSuitableFor(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing ShovelItemAccessor from fabric-content-registries-v0.mixins.json into net.minecraft.item.ShovelItem -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:ShovelItemAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getPathStates()Ljava/util/Map; to getPathStates_$md$f693ec$0 in fabric-content-registries-v0.mixins.json:ShovelItemAccessor -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing MiningToolItemMixin from fabric-mining-level-api-v1.mixins.json into net.minecraft.item.MiningToolItem -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:MiningToolItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:MiningToolItemMixin->@Inject::fabric$onIsSuitableFor(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;I)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing AxeItemAccessor from fabric-content-registries-v0.mixins.json into net.minecraft.item.AxeItem -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:AxeItemAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getStrippedBlocks()Ljava/util/Map; to getStrippedBlocks_$md$f693ec$0 in fabric-content-registries-v0.mixins.json:AxeItemAccessor -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setStrippedBlocks(Ljava/util/Map;)V to setStrippedBlocks_$md$f693ec$1 in fabric-content-registries-v0.mixins.json:AxeItemAccessor -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing HoeItemAccessor from fabric-content-registries-v0.mixins.json into net.minecraft.item.HoeItem -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:HoeItemAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getTillingActions()Ljava/util/Map; to getTillingActions_$md$f693ec$0 in fabric-content-registries-v0.mixins.json:HoeItemAccessor -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing BucketItemAccessor from fabric-transfer-api-v1.mixins.json into net.minecraft.item.BucketItem -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:BucketItemAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing ShearsItemMixin from fabric-mining-level-api-v1.mixins.json into net.minecraft.item.ShearsItem -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin->@Inject::fabric$onIsSuitableFor(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing HoneycombItemMixin from fabric-content-registries-v0.mixins.json into net.minecraft.item.HoneycombItem -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:HoneycombItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:HoneycombItemMixin->@Inject::createUnwaxedToWaxedMap(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-content-registries-v0 does use it's CallbackInfoReturnable -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinItemGroup from fabric-item-groups-v0.mixins.json into net.minecraft.item.ItemGroup -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:MixinItemGroup: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing client.MixinItemGroup from fabric-item-groups-v0.mixins.json into net.minecraft.item.ItemGroup -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:client.MixinItemGroup: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:client.MixinItemGroup->@Inject::isTopRow(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-item-groups-v0 does use it's CallbackInfoReturnable -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:client.MixinItemGroup->@Inject::getColumn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-item-groups-v0 does use it's CallbackInfoReturnable -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing StatusEffectInstanceMixin from apoli.mixins.json into net.minecraft.entity.effect.StatusEffectInstance -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:StatusEffectInstanceMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing ChestStateManagerMixin from mixins.reach-entity-attributes.json into net.minecraft.block.entity.ViewerCountManager -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing InventoryValidationMixin from mixins.reach-entity-attributes.json into net.minecraft.entity.player.PlayerInventory -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing CraftingResultSlotMixin from apoli.mixins.json into net.minecraft.screen.slot.CraftingResultSlot -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingResultSlotMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingResultSlotMixin->@Inject::testOnTakeItem(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingResultSlotMixin->@Inject::testOnTakeItem(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingResultSlotMixin->@Inject::testOnTakeItem(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing LootPoolEntryTypesAccessor from fabric-loot-tables-v1.mixins.json into net.minecraft.loot.entry.LootPoolEntryTypes -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:LootPoolEntryTypesAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method register(Ljava/lang/String;Lnet/minecraft/util/JsonSerializer;)Lnet/minecraft/loot/entry/LootPoolEntryType; to register_$md$f693ec$0 in fabric-loot-tables-v1.mixins.json:LootPoolEntryTypesAccessor -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinMultiNoiseBiomeSource from fabric-biome-api-v1.mixins.json into net.minecraft.world.biome.source.MultiNoiseBiomeSource$Preset -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinMultiNoiseBiomeSource: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$appendNetherBiomes$1(Lnet/minecraft/util/registry/Registry;Ljava/util/List;Lnet/minecraft/util/registry/RegistryKey;Lnet/minecraft/world/biome/source/util/MultiNoiseUtil$NoiseHypercube;)V to mdf693ec$lambda$appendNetherBiomes$1$0 in fabric-biome-api-v1.mixins.json:MixinMultiNoiseBiomeSource -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$appendNetherBiomes$0(Lnet/minecraft/world/biome/Biome;)Lnet/minecraft/world/biome/Biome; to mdf693ec$lambda$appendNetherBiomes$0$1 in fabric-biome-api-v1.mixins.json:MixinMultiNoiseBiomeSource -[17:00:59] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinMultiNoiseBiomeSource->@Inject::appendNetherBiomes(Lnet/minecraft/util/registry/Registry;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-biome-api-v1 does use it's CallbackInfoReturnable -[17:01:00] [main/DEBUG] (FabricLoader/Mixin) Mixing FlatChunkGeneratorConfigMixin from fabric-structure-api-v1.mixins.json into net.minecraft.world.gen.chunk.FlatChunkGeneratorConfig -[17:01:00] [main/DEBUG] (FabricLoader/Mixin) fabric-structure-api-v1.mixins.json:FlatChunkGeneratorConfigMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [main/DEBUG] (FabricLoader/Mixin) fabric-structure-api-v1.mixins.json:FlatChunkGeneratorConfigMixin->@Inject::createDefaultConfig(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-structure-api-v1 does use it's CallbackInfoReturnable -[17:01:00] [main/DEBUG] (FabricLoader/Mixin) Mixing DefaultAttributeRegistryAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.entity.attribute.DefaultAttributeRegistry -[17:01:00] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DefaultAttributeRegistryAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getRegistry()Ljava/util/Map; to getRegistry_$md$f693ec$0 in fabric-object-builder-v1.mixins.json:DefaultAttributeRegistryAccessor -[17:01:00] [main/DEBUG] (FabricLoader/Mixin) Mixing DefaultAttributeRegistryMixin from fabric-object-builder-v1.mixins.json into net.minecraft.entity.attribute.DefaultAttributeRegistry -[17:01:00] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DefaultAttributeRegistryMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DefaultAttributeRegistryMixin->@Inject::injectAttributes(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builder-api-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinMinecraftClient from fabric-events-interaction-v0.mixins.json into net.minecraft.client.MinecraftClient -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinMinecraftClient: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MinecraftClientMixin from fabric-data-generation-api-v1.mixins.json into net.minecraft.client.MinecraftClient -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-data-generation-api-v1.mixins.json:client.MinecraftClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MinecraftClientMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.client.MinecraftClient -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinMinecraftClient from fabric-registry-sync-v0.mixins.json into net.minecraft.client.MinecraftClient -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinMinecraftClient: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftClientMixin from apoli.mixins.json into net.minecraft.client.MinecraftClient -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:MinecraftClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeEntitiesGlow$1(Lio/github/apace100/apoli/power/SelfGlowPower;)Z to mdf693ec$lambda$makeEntitiesGlow$1$0 in apoli.mixins.json:MinecraftClientMixin -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeEntitiesGlow$0(Lnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/EntityGlowPower;)Z to mdf693ec$lambda$makeEntitiesGlow$0$1 in apoli.mixins.json:MinecraftClientMixin -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftClientMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.MinecraftClient -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MinecraftClientMixin from fabric-command-api-v1.mixins.json into net.minecraft.client.MinecraftClient -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.MinecraftClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing accessor.MinecraftClientAccessor from fabric-networking-api-v1.mixins.json into net.minecraft.client.MinecraftClient -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:accessor.MinecraftClientAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinMinecraftClient->@Inject::fabric_doItemPickWrapper(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-events-interaction-v0 does use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinMinecraftClient->@Inject::cancelItemPick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-events-interaction-v0 does use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-data-generation-api-v1.mixins.json:client.MinecraftClientMixin->@Inject::main(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-data-generation-api-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-data-generation-api-v1.mixins.json:client.MinecraftClientMixin->@Inject::main(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-data-generation-api-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-data-generation-api-v1.mixins.json:client.MinecraftClientMixin->@Inject::main(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-data-generation-api-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStartTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStartTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStartTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onEndTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onEndTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onEndTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinMinecraftClient->@Inject::disconnectAfter(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinMinecraftClient->@Inject::disconnectAfter(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinMinecraftClient->@Inject::disconnectAfter(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:MinecraftClientMixin->@Inject::makeEntitiesGlow(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::onScreenRemove(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::onScreenRemove(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::onScreenRemove(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::onScreenRemoveBecauseStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::onScreenRemoveBecauseStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::onScreenRemoveBecauseStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::beforeScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::beforeScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::beforeScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::afterScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::afterScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::afterScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::beforeLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::beforeLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::beforeLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::afterLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::afterLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::afterLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.MinecraftClientMixin->@Inject::onConstruct(Lnet/minecraft/client/RunArgs;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.MinecraftClientMixin->@Inject::onConstruct(Lnet/minecraft/client/RunArgs;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.MinecraftClientMixin->@Inject::onConstruct(Lnet/minecraft/client/RunArgs;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ScreenMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.gui.screen.Screen -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:ScreenMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ScreenAccessor from fabric-screen-api-v1.mixins.json into net.minecraft.client.gui.screen.Screen -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ScreenMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.gui.screen.Screen -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:ScreenMixin->@Inject::injectRenderTooltipLambda(Ljava/util/List;Lnet/minecraft/client/item/TooltipData;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin->@Inject::beforeInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin->@Inject::beforeInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin->@Inject::beforeInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin->@Inject::afterInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin->@Inject::afterInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin->@Inject::afterInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinTitleScreen from mixins.modmenu.json into net.minecraft.client.gui.screen.TitleScreen -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing AspectsMixin from aspects.mixins.json into net.minecraft.client.gui.screen.TitleScreen -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) aspects.mixins.json:AspectsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) aspects.mixins.json:AspectsMixin->@Inject::init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod aspects doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) aspects.mixins.json:AspectsMixin->@Inject::init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod aspects has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) aspects.mixins.json:AspectsMixin->@Inject::init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod aspects won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientWorldMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.client.world.ClientWorld -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinClientWorld from mixins.cardinal_components_entity.json into net.minecraft.client.world.ClientWorld -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:client.MixinClientWorld: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:client.MixinClientWorld->@Inject::tick(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:client.MixinClientWorld->@Inject::tick(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:client.MixinClientWorld->@Inject::tick(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:client.MixinClientWorld->@Inject::tickRiding(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:client.MixinClientWorld->@Inject::tickRiding(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:client.MixinClientWorld->@Inject::tickRiding(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing HandledScreenFocusedSlotAccessor from calio.mixins.json into net.minecraft.client.gui.screen.ingame.HandledScreen -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:HandledScreenFocusedSlotAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinDynamicRegistryManager from fabric-registry-sync-v0.mixins.json into net.minecraft.util.registry.DynamicRegistryManager -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinDynamicRegistryManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing DynamicRegistryManagerMixin from fabric-registry-sync-v0.mixins.json into net.minecraft.util.registry.DynamicRegistryManager -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:DynamicRegistryManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing DynamicRegistryManagerAccessor from fabric-tag-extensions-v0.mixins.json into net.minecraft.util.registry.DynamicRegistryManager -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:DynamicRegistryManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getInfos()Ljava/util/Map; to getInfos_$md$f693ec$0 in fabric-tag-extensions-v0.mixins.json:DynamicRegistryManagerAccessor -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinDynamicRegistryManager->@Inject::setupBuiltInSync(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:DynamicRegistryManagerMixin->@Inject::onCreateImpl(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/registry/DynamicRegistryManager$Impl;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfoReturnable -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing modification.DynamicRegistryManagerImplMixin from fabric-biome-api-v1.mixins.json into net.minecraft.util.registry.DynamicRegistryManager$Impl -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:modification.DynamicRegistryManagerImplMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientBuiltinResourcePackProviderMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.resource.ClientBuiltinResourcePackProvider -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.ClientBuiltinResourcePackProviderMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.ClientBuiltinResourcePackProviderMixin->@Inject::addBuiltinResourcePacks(Ljava/util/function/Consumer;Lnet/minecraft/resource/ResourcePackProfile$Factory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.ClientBuiltinResourcePackProviderMixin->@Inject::addBuiltinResourcePacks(Ljava/util/function/Consumer;Lnet/minecraft/resource/ResourcePackProfile$Factory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.ClientBuiltinResourcePackProviderMixin->@Inject::addBuiltinResourcePacks(Ljava/util/function/Consumer;Lnet/minecraft/resource/ResourcePackProfile$Factory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.ClientBuiltinResourcePackProviderMixin->@Inject::onSupplyZipProgrammerArtPack(Ljava/io/File;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 does use it's CallbackInfoReturnable -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.ClientBuiltinResourcePackProviderMixin->@Inject::onSupplyDirProgrammerArtPack(Ljava/io/File;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 does use it's CallbackInfoReturnable -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing DefaultResourcePackMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.DefaultResourcePack -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:DefaultResourcePackMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ResourcePackManagerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.ResourcePackManager -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ResourcePackManagerAccessor from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.ResourcePackManager -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackManagerMixin->@Inject::construct(Lnet/minecraft/resource/ResourcePackProfile$Factory;[Lnet/minecraft/resource/ResourcePackProvider;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 doesn't use it's CallbackInfo -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackManagerMixin->@Inject::construct(Lnet/minecraft/resource/ResourcePackProfile$Factory;[Lnet/minecraft/resource/ResourcePackProvider;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 has 0 override(s) in child classes -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackManagerMixin->@Inject::construct(Lnet/minecraft/resource/ResourcePackProfile$Factory;[Lnet/minecraft/resource/ResourcePackProvider;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 won't be passed a CallbackInfo as a result -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ResourcePackProfileAccessor from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.ResourcePackProfile -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackProfileAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing FileResourcePackProviderAccessor from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.FileResourcePackProvider -[17:01:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:FileResourcePackProviderAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:00] [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' -[17:01:00] [Render thread/DEBUG] (com.mojang.authlib.minecraft.client.MinecraftClient) Connecting to https://api.minecraftservices.com/player/attributes -[17:01:01] [Render thread/ERROR] (net.minecraft.client.MinecraftClient) Failed to verify authentication +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-blockrenderlayer-v1/1.1.9+3ac43d95c8/fabric-blockrenderlayer-v1-1.1.9+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-screen-api-v1/1.0.7+3ac43d95c8/fabric-screen-api-v1-1.0.7+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/com/terraformersmc/modmenu/3.0.0/modmenu-3.0.0.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-screen-handler-api-v1/1.1.11+3ac43d95c8/fabric-screen-handler-api-v1-1.1.11+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/me/shedaniel/cloth/basic-math/0.6.0/basic-math-0.6.0.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-rendering-data-attachment-v1/0.3.4+7242e9d7c8/fabric-rendering-data-attachment-v1-0.3.4+7242e9d7c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-item-groups-v0/0.3.3+3ac43d95c8/fabric-item-groups-v0-0.3.3+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-loot-tables-v1/1.0.8+3ac43d95c8/fabric-loot-tables-v1-1.0.8+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/com/github/apace100/apoli/v2.2.0/apoli-v2.2.0.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-events-interaction-v0/0.4.16+bfa23f17c8/fabric-events-interaction-v0-0.4.16+bfa23f17c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-models-v0/0.3.3+3ac43d95c8/fabric-models-v0-0.3.3+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-data-generation-api-v1/1.0.0+3fec4ad9c8/fabric-data-generation-api-v1-1.0.0+3fec4ad9c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-keybindings-v0/0.2.6+b4f4f6cdc8/fabric-keybindings-v0-0.2.6+b4f4f6cdc8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-rendering-fluids-v1/0.1.18+3ac43d95c8/fabric-rendering-fluids-v1-0.1.18+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-command-api-v1/1.1.6+3ac43d95c8/fabric-command-api-v1-1.1.6+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-dimensions-v1/2.1.7+43d29571c8/fabric-dimensions-v1-2.1.7+43d29571c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-particles-v1/0.2.9+526dc1acc8/fabric-particles-v1-0.2.9+526dc1acc8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-transfer-api-v1/1.5.5+b4f4f6cdc8/fabric-transfer-api-v1-1.5.5+b4f4f6cdc8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-key-binding-api-v1/1.0.8+c8aba2f3c8/fabric-key-binding-api-v1-1.0.8+c8aba2f3c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-networking-v0/0.3.5+b4f4f6cdc8/fabric-networking-v0-0.3.5+b4f4f6cdc8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/com/jamieswhiteshirt/reach-entity-attributes/2.1.1/reach-entity-attributes-2.1.1.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-resource-loader-v0/0.4.11+3ac43d95c8/fabric-resource-loader-v0-0.4.11+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-containers-v0/0.1.18+d154e2c6c8/fabric-containers-v0-0.1.18+d154e2c6c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-renderer-indigo/0.4.12+3ac43d95c8/fabric-renderer-indigo-0.4.12+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-events-lifecycle-v0/0.2.6+b4f4f6cdc8/fabric-events-lifecycle-v0-0.2.6+b4f4f6cdc8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/io/github/onyxstudios/Cardinal-Components-API/cardinal-components-base/4.0.0-alpha.1+21w37a/cardinal-components-base-4.0.0-alpha.1+21w37a.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-textures-v0/1.0.9+3ac43d95c8/fabric-textures-v0-1.0.9+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-entity-events-v1/1.4.5+6b21378ac8/fabric-entity-events-v1-1.4.5+6b21378ac8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-structure-api-v1/2.0.8+295197a7c8/fabric-structure-api-v1-2.0.8+295197a7c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-item-api-v1/1.3.0+691a79b5c8/fabric-item-api-v1-1.3.0+691a79b5c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/bin/main to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-rendering-v1/1.10.3+6b21378ac8/fabric-rendering-v1-1.10.3+6b21378ac8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-tag-extensions-v0/1.2.5+3ac43d95c8/fabric-tag-extensions-v0-1.2.5+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-commands-v0/0.2.5+b4f4f6cdc8/fabric-commands-v0-0.2.5+b4f4f6cdc8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-renderer-registries-v1/3.2.7+b4f4f6cdc8/fabric-renderer-registries-v1-3.2.7+b4f4f6cdc8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/com/github/apace100/calio/v1.4.2/calio-v1.4.2.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-gametest-api-v1/1.0.5+03d159cfc8/fabric-gametest-api-v1-1.0.5+03d159cfc8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/me/shedaniel/cloth/cloth-config-fabric/6.0.42/cloth-config-fabric-6.0.42.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-api/0.44.0+1.18/fabric-api-0.44.0+1.18.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/io/github/onyxstudios/Cardinal-Components-API/cardinal-components-entity/4.0.0-alpha.1+21w37a/cardinal-components-entity-4.0.0-alpha.1+21w37a.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-api-base/0.4.1+b4f4f6cdc8/fabric-api-base-0.4.1+b4f4f6cdc8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-renderer-api-v1/0.4.9+3ac43d95c8/fabric-renderer-api-v1-0.4.9+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-registry-sync-v0/0.8.5+3ac43d95c8/fabric-registry-sync-v0-0.8.5+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-mining-level-api-v1/1.0.3+3ac43d95c8/fabric-mining-level-api-v1-1.0.3+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-rendering-v0/1.1.9+b4f4f6cdc8/fabric-rendering-v0-1.1.9+b4f4f6cdc8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/com/github/apace100/origins-fabric/v1.3.0/origins-fabric-v1.3.0.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-content-registries-v0/0.4.5+6f53a73dc8/fabric-content-registries-v0-0.4.5+6f53a73dc8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-networking-api-v1/1.0.18+3ac43d95c8/fabric-networking-api-v1-1.0.18+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-api-lookup-api-v1/1.4.0+16d92c47c8/fabric-api-lookup-api-v1-1.4.0+16d92c47c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-tool-attribute-api-v1/1.3.4+7de09f55c8/fabric-tool-attribute-api-v1-1.3.4+7de09f55c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-object-builder-api-v1/1.11.0+3b82842ec8/fabric-object-builder-api-v1-1.11.0+3b82842ec8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-game-rule-api-v1/1.0.10+3ac43d95c8/fabric-game-rule-api-v1-1.0.10+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-mining-levels-v0/0.1.7+b4f4f6cdc8/fabric-mining-levels-v0-0.1.7+b4f4f6cdc8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/io/github/ladysnake/PlayerAbilityLib/1.3.0/PlayerAbilityLib-1.3.0.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-biome-api-v1/6.0.1+ded849a9c8/fabric-biome-api-v1-6.0.1+ded849a9c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-object-builders-v0/0.7.8+3ac43d95c8/fabric-object-builders-v0-0.7.8+3ac43d95c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-lifecycle-events-v1/1.4.10+c15ca335c8/fabric-lifecycle-events-v1-1.4.10+c15ca335c8.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-api/fabric-crash-report-info-v1/0.1.8+3ac43d95c8/fabric-crash-report-info-v1-0.1.8+3ac43d95c8.jar to classpath. +[19:51:41] [main/WARN] (FabricLoader/Metadata) Mod `aspects` (${version}) does not respect SemVer - comparison support is limited. +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer com.terraformersmc.modmenu.ModMenuModMenuCompat for mod modmenu (key modmenu) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer com.terraformersmc.modmenu.ModMenu for mod modmenu (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.screenhandler.client.ClientNetworking for mod fabric-screen-handler-api-v1 (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.apoli.ApoliServer for mod apoli (key server) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.apoli.integration.ModMenuIntegration for mod apoli (key modmenu) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.apoli.ApoliClient for mod apoli (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.apoli.Apoli for mod apoli (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.apoli.Apoli for mod apoli (key cardinal-components-entity) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.interaction.InteractionEventsRouterClient for mod fabric-events-interaction-v0 (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.interaction.InteractionEventsRouter for mod fabric-events-interaction-v0 (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.networking.OldClientNetworkingHooks for mod fabric-networking-v0 (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.networking.OldNetworkingHooks for mod fabric-networking-v0 (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer com.jamieswhiteshirt.reachentityattributes.ReachEntityAttributes for mod reach-entity-attributes (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.client.container.ScreenProviderRegistryImpl::init for mod fabric-containers-v0 (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.client.indigo.Indigo for mod fabric-renderer-indigo (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.lifecycle.client.LegacyClientEventInvokers for mod fabric-events-lifecycle-v0 (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.lifecycle.LegacyEventInvokers for mod fabric-events-lifecycle-v0 (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.structure.FabricStructureImpl for mod fabric-structure-api-v1 (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fishplex.Aspects for mod aspects (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.calio.CalioServer for mod calio (key server) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.calio.CalioClient for mod calio (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.calio.Calio for mod calio (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.gametest.FabricGameTestModInitializer for mod fabric-gametest-api-v1 (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer me.shedaniel.clothconfig2.fabric.ClothConfigModMenuDemo for mod cloth-config (key modmenu) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer me.shedaniel.autoconfig.example.ExampleInits::exampleCommonInit for mod cloth-config (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer dev.onyxstudios.cca.internal.entity.CcaEntityClientNw::initClient for mod cardinal-components-entity (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer dev.onyxstudios.cca.internal.entity.CardinalComponentsEntity::init for mod cardinal-components-entity (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.registry.sync.FabricRegistryClientInit for mod fabric-registry-sync-v0 (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.registry.sync.FabricRegistryInit for mod fabric-registry-sync-v0 (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.mininglevel.FabricMiningLevelInit for mod fabric-mining-level-api-v1 (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.client.rendering.RenderingCallbackInvoker for mod fabric-rendering-v0 (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.origins.integration.ModMenuIntegration for mod origins (key modmenu) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.origins.OriginsClient for mod origins (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.origins.Origins for mod origins (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.apace100.origins.registry.ModComponents for mod origins (key cardinal-components-entity) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.networking.client.ClientNetworkingImpl::clientInit for mod fabric-networking-api-v1 (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.networking.NetworkingImpl::init for mod fabric-networking-api-v1 (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.lookup.ApiLookupImpl for mod fabric-api-lookup-api-v1 (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.tool.attribute.ToolHandlers for mod fabric-tool-attribute-api-v1 (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer io.github.ladysnake.pal.Pal for mod playerabilitylib (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.lifecycle.ClientLifecycleEventsImpl for mod fabric-lifecycle-events-v1 (key client) +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) Registering new-style initializer net.fabricmc.fabric.impl.event.lifecycle.LifecycleEventsImpl for mod fabric-lifecycle-events-v1 (key main) +[19:51:41] [main/DEBUG] (FabricLoader/Mappings) Loading mappings took 127 ms +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin bootstrap service org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapperBootstrap is not available: LaunchWrapper is not available +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin bootstrap service org.spongepowered.asm.service.modlauncher.MixinServiceModLauncherBootstrap is not available: ModLauncher is not available +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) MixinService [Knot/Fabric] was successfully booted in jdk.internal.loader.ClassLoaders$AppClassLoader@42110406 +[19:51:41] [main/INFO] (FabricLoader/Mixin) SpongePowered MIXIN Subsystem Version=0.8.4 Source=file:/Users/adellanicholson/.gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.10.7+mixin.0.8.4/7a4ca9d54d9ae564dea0363d668036a8420ed9b8/sponge-mixin-0.10.7+mixin.0.8.4.jar Service=Knot/Fabric Env=CLIENT +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Error cleaning class output directory: .mixin.out +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Initialising Mixin Platform Manager +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Adding mixin platform agents for container ContainerHandleURI(file:/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-loader/0.12.10/fabric-loader-0.12.10.jar) +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Instancing new MixinPlatformAgentDefault for ContainerHandleURI(file:/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-loader/0.12.10/fabric-loader-0.12.10.jar) +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) MixinPlatformAgentDefault accepted container ContainerHandleURI(file:/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-loader/0.12.10/fabric-loader-0.12.10.jar) +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Instancing new MixinPlatformAgentDefault for ContainerHandleURI(file:/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-loader/0.12.10/fabric-loader-0.12.10.jar) +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) MixinPlatformAgentDefault accepted container ContainerHandleURI(file:/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-loader/0.12.10/fabric-loader-0.12.10.jar) +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleURI(file:/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-loader/0.12.10/fabric-loader-0.12.10.jar)] +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleURI(file:/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapped_mods/net_fabricmc_yarn_1_18_1_18_build_1_v2/net/fabricmc/fabric-loader/0.12.10/fabric-loader-0.12.10.jar)] +[19:51:41] [main/INFO] (FabricLoader/Mixin) Loaded Fabric development mappings for mixin remapper! +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Compatibility level JAVA_16 specified by fabric-blockrenderlayer-v1.mixins.json is higher than the maximum level supported by this version of mixin (JAVA_13). +[19:51:41] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_16 +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-blockrenderlayer-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-screen-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-screen-handler-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-rendering-data-attachment-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-item-groups-v0.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-loot-tables-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-events-interaction-v0.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-models-v0.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-data-generation-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-rendering-fluids-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-command-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-dimensions-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-particles-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-transfer-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-key-binding-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-resource-loader-v0.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-containers-v0.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-containers-v0.accurate.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-renderer-indigo.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-textures-v0.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-entity-events-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-structure-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-item-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-rendering-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-tag-extensions-v0.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-gametest-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-renderer-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-renderer-api-v1.debughud.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-registry-sync-v0.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-mining-level-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-content-registries-v0.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-networking-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-api-lookup-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-tool-attribute-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-object-builder-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-game-rule-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-biome-api-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-object-builders-v0.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-lifecycle-events-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Mixin config fabric-crash-report-info-v1.mixins.json does not specify "minVersion" property +[19:51:41] [main/DEBUG] (FabricLoader/Knot) Adding /Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/1.18/net.fabricmc.yarn.1_18.1.18+build.1-v2/minecraft-project-@-mapped.jar to classpath. +[19:51:41] [main/DEBUG] (FabricLoader/Entrypoint) No subscribers for entrypoint 'preLaunch' +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Preparing mixins for MixinEnvironment[DEFAULT] +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-blockrenderlayer-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-blockrenderlayer-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-screen-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-screen-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config mixins.modmenu.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap modmenu-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-screen-handler-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-screen-handler-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-rendering-data-attachment-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-rendering-data-attachment-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-item-groups-v0.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-item-groups-v0-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-loot-tables-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-loot-tables-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config apoli.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap Apoli-1.18-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-events-interaction-v0.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-events-interaction-v0-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-models-v0.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-models-v0-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-data-generation-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-data-generation-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-rendering-fluids-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-rendering-fluids-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-command-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-command-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-dimensions-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-dimensions-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-particles-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-particles-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-transfer-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-transfer-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-key-binding-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-key-binding-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config mixins.reach-entity-attributes.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap refmap.reach-entity-attributes.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-resource-loader-v0.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-resource-loader-v0-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-containers-v0.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-containers-v0-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-containers-v0.accurate.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-containers-v0-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-renderer-indigo.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-renderer-indigo-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-textures-v0.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-textures-v0-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-entity-events-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-entity-events-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-structure-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-structure-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-item-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-item-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config aspects.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-rendering-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-rendering-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-tag-extensions-v0.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-tag-extensions-v0-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config calio.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap Calio-1.18-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-gametest-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-gametest-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config mixins.cardinal_components_entity.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap cardinal-components-entity-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-renderer-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-renderer-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-renderer-api-v1.debughud.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-renderer-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-registry-sync-v0.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-registry-sync-v0-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-mining-level-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-mining-level-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config origins.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap Origins-1.18-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-content-registries-v0.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-content-registries-v0-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-networking-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-networking-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-api-lookup-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-api-lookup-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-tool-attribute-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-tool-attribute-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-object-builder-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-object-builder-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-game-rule-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-game-rule-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config mixins.playerabilitylib.common.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap pal-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-biome-api-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-biome-api-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-object-builders-v0.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-object-builders-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-lifecycle-events-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-lifecycle-events-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Selecting config fabric-crash-report-info-v1.mixins.json +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Remapping refMap fabric-crash-report-info-v1-refmap.json using remapper chain +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-blockrenderlayer-v1.mixins.json (1) +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-screen-api-v1.mixins.json (6) +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Preparing mixins.modmenu.json (1) +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-screen-handler-api-v1.mixins.json (1) +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-rendering-data-attachment-v1.mixins.json (4) +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-item-groups-v0.mixins.json (3) +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-loot-tables-v1.mixins.json (6) +[19:51:41] [main/DEBUG] (FabricLoader/Mixin) Preparing apoli.mixins.json (50) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/screen/PlayerScreenHandler$1 is public in apoli.mixins.json:PlayerScreenHandlerMixin and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-events-interaction-v0.mixins.json (5) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/network/ServerPlayNetworkHandler$1 is public in fabric-events-interaction-v0.mixins.json:MixinServerPlayNetworkHandler and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-models-v0.mixins.json (2) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-data-generation-api-v1.mixins.json (4) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-rendering-fluids-v1.mixins.json (1) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-command-api-v1.mixins.json (6) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-dimensions-v1.mixins.json (2) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-particles-v1.mixins.json (3) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-transfer-api-v1.mixins.json (6) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-key-binding-api-v1.mixins.json (3) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing mixins.reach-entity-attributes.json (13) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/block/entity/LecternBlockEntity$1 is public in mixins.reach-entity-attributes.json:InventoryValidationMixin and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/network/ServerPlayNetworkHandler$1 is public in mixins.reach-entity-attributes.json:PlayerEntityInteractionHandlerMixin and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-resource-loader-v0.mixins.json (15) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/client/font/FontManager$1 is public in fabric-resource-loader-v0.mixins.json:client.FontManagerResourceReloadListenerMixin and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-containers-v0.mixins.json (1) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-containers-v0.accurate.mixins.json (1) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-renderer-indigo.mixins.json (7) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/client/render/block/BlockModelRenderer$AmbientOcclusionCalculator is public in fabric-renderer-indigo.mixins.json:MixinAmbientOcclusionCalculator and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/client/render/chunk/ChunkBuilder$BuiltChunk$RebuildTask is public in fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-textures-v0.mixins.json (1) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-entity-events-v1.mixins.json (10) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-structure-api-v1.mixins.json (4) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-item-api-v1.mixins.json (6) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing aspects.mixins.json (1) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-rendering-v1.mixins.json (14) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-tag-extensions-v0.mixins.json (9) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/data/server/AbstractTagProvider$ObjectBuilder is public in fabric-tag-extensions-v0.mixins.json:MixinObjectBuilder and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/tag/RequiredTagList$TagWrapper is public in fabric-tag-extensions-v0.mixins.json:MixinTagImpl and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing calio.mixins.json (9) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-gametest-api-v1.mixins.json (6) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing mixins.cardinal_components_entity.json (6) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-renderer-api-v1.mixins.json (4) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-renderer-api-v1.debughud.mixins.json (1) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-registry-sync-v0.mixins.json (16) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-mining-level-api-v1.mixins.json (4) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing origins.mixins.json (11) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-content-registries-v0.mixins.json (8) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-networking-api-v1.mixins.json (14) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/world/ThreadedAnvilChunkStorage$EntityTracker is public in fabric-networking-api-v1.mixins.json:accessor.EntityTrackerAccessor and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-api-lookup-api-v1.mixins.json (2) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-tool-attribute-api-v1.mixins.json (3) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-object-builder-v1.mixins.json (16) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/village/TradeOffers$TypeAwareBuyForOneEmeraldFactory is public in fabric-object-builder-v1.mixins.json:TypeAwareTradeMixin and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-game-rule-api-v1.mixins.json (9) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/command/GameRuleCommand$1 is public in fabric-game-rule-api-v1.mixins.json:GameRuleCommandVisitorMixin and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/client/gui/screen/world/EditGameRulesScreen$RuleListWidget$1 is public in fabric-game-rule-api-v1.mixins.json:client.RuleListWidgetVisitorMixin and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing mixins.playerabilitylib.common.json (2) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-biome-api-v1.mixins.json (4) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-object-builders-v0.mixins.json (2) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-lifecycle-events-v1.mixins.json (12) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/server/world/ServerWorld$ServerEntityHandler is public in fabric-lifecycle-events-v1.mixins.json:ServerWorldEntityLoaderMixin and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) @Mixin target net/minecraft/client/world/ClientWorld$ClientEntityHandler is public in fabric-lifecycle-events-v1.mixins.json:client.ClientWorldEntityLoaderMixin and should be specified in value +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Preparing fabric-crash-report-info-v1.mixins.json (1) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @Inject with org.spongepowered.asm.mixin.injection.struct.CallbackInjectionInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyArg with org.spongepowered.asm.mixin.injection.struct.ModifyArgInjectionInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyArgs with org.spongepowered.asm.mixin.injection.struct.ModifyArgsInjectionInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @Redirect with org.spongepowered.asm.mixin.injection.struct.RedirectInjectionInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyVariable with org.spongepowered.asm.mixin.injection.struct.ModifyVariableInjectionInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Registering new injector for @ModifyConstant with org.spongepowered.asm.mixin.injection.struct.ModifyConstantInjectionInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Prepared 313 mixins in 0.490 sec (1.6ms avg) (0ms load, 0ms transform, 0ms plugin) +[19:51:42] [main/DEBUG] (io.netty.util.internal.logging.InternalLoggerFactory) Using SLF4J as the default logging framework +[19:51:42] [main/DEBUG] (io.netty.util.ResourceLeakDetector) -Dio.netty.leakDetection.level: simple +[19:51:42] [main/DEBUG] (io.netty.util.ResourceLeakDetector) -Dio.netty.leakDetection.targetRecords: 4 +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing PlayerEntityMixin from apoli.mixins.json into net.minecraft.entity.player.PlayerEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventArmorDispensing$8(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/EquipmentSlot;Lio/github/apace100/apoli/power/RestrictArmorPower;)Z to mdcc481c$lambda$preventArmorDispensing$8$0 in apoli.mixins.json:PlayerEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$restoreKeptInventory$7(Lio/github/apace100/apoli/power/KeepInventoryPower;)V to mdcc481c$lambda$restoreKeptInventory$7$1 in apoli.mixins.json:PlayerEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$dropAdditionalInventory$6(Lio/github/apace100/apoli/power/KeepInventoryPower;)V to mdcc481c$lambda$dropAdditionalInventory$6$2 in apoli.mixins.json:PlayerEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$dropAdditionalInventory$5(Lio/github/apace100/apoli/power/InventoryPower;)V to mdcc481c$lambda$dropAdditionalInventory$5$3 in apoli.mixins.json:PlayerEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeWakeUpAction$4(Lnet/minecraft/util/math/BlockPos;Lio/github/apace100/apoli/power/ActionOnWakeUp;)V to mdcc481c$lambda$invokeWakeUpAction$4$4 in apoli.mixins.json:PlayerEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeWakeUpAction$3(Lnet/minecraft/util/math/BlockPos;Lio/github/apace100/apoli/power/ActionOnWakeUp;)Z to mdcc481c$lambda$invokeWakeUpAction$3$5 in apoli.mixins.json:PlayerEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventEntityInteraction$2(Lnet/minecraft/util/Hand;Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ActionOnBeingUsedPower;)Z to mdcc481c$lambda$preventEntityInteraction$2$6 in apoli.mixins.json:PlayerEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventEntityInteraction$1(Lnet/minecraft/entity/Entity;Lnet/minecraft/util/Hand;Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ActionOnEntityUsePower;)Z to mdcc481c$lambda$preventEntityInteraction$1$7 in apoli.mixins.json:PlayerEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyEatenItemStack$0(Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ModifyFoodPower;)Z to mdcc481c$lambda$modifyEatenItemStack$0$8 in apoli.mixins.json:PlayerEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing PlayerEntityMixin from mixins.reach-entity-attributes.json into net.minecraft.entity.player.PlayerEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing elytra/PlayerEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.player.PlayerEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/PlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing PlayerEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.player.PlayerEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:PlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing NoCobwebSlowdownMixin from origins.mixins.json into net.minecraft.entity.player.PlayerEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:NoCobwebSlowdownMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing WaterBreathingMixin$UpdateAir from origins.mixins.json into net.minecraft.entity.player.PlayerEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterBreathingMixin$UpdateAir: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::preventEntityInteraction(Lnet/minecraft/entity/Entity;Lnet/minecraft/util/Hand;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::sendPlayerDismountPacket(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::sendPlayerDismountPacket(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::sendPlayerDismountPacket(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::updateSwimmingPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::updateSwimmingPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::updateSwimmingPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::invokeWakeUpAction(ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::invokeWakeUpAction(ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::invokeWakeUpAction(ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::disableHeal(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::dropAdditionalInventory(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::dropAdditionalInventory(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::dropAdditionalInventory(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::restoreKeptInventory(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::restoreKeptInventory(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::restoreKeptInventory(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityMixin->@Inject::preventArmorDispensing(Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/PlayerEntityMixin->@Inject::injectElytraCheck(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:PlayerEntityMixin->@Inject::onTrySleep(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:PlayerEntityMixin->@Inject::onIsSleepingLongEnough(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:NoCobwebSlowdownMixin->@Inject::slowMovement(Lnet/minecraft/block/BlockState;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins does use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterBreathingMixin$UpdateAir->@Inject::tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterBreathingMixin$UpdateAir->@Inject::tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterBreathingMixin$UpdateAir->@Inject::tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing EyeHeightAccess from apoli.mixins.json into net.minecraft.entity.LivingEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EyeHeightAccess: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityMixin from apoli.mixins.json into net.minecraft.entity.LivingEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyEatenItemStack$23(Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ModifyFoodPower;)Z to mdcc481c$lambda$modifyEatenItemStack$23$0 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventDeath$22(Lnet/minecraft/entity/damage/DamageSource;Lio/github/apace100/apoli/power/PreventDeathPower;)Z to mdcc481c$lambda$preventDeath$22$1 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventPushing$21(Lio/github/apace100/apoli/power/PreventEntityCollisionPower;)Z to mdcc481c$lambda$preventPushing$21$2 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventPushing$20(Lnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/PreventEntityCollisionPower;)Z to mdcc481c$lambda$preventPushing$20$3 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifySlipperiness$19(Lio/github/apace100/apoli/power/ModifySlipperinessPower;)Z to mdcc481c$lambda$modifySlipperiness$19$4 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyJumpVelocity$18(Lio/github/apace100/apoli/power/ModifyJumpPower;)Z to mdcc481c$lambda$modifyJumpVelocity$18$5 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeKillAction$17(Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/SelfActionOnKillPower;)V to mdcc481c$lambda$invokeKillAction$17$6 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$16(Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/TargetActionOnHitPower;)V to mdcc481c$lambda$invokeHitActions$16$7 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$15(Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/SelfActionOnHitPower;)V to mdcc481c$lambda$invokeHitActions$15$8 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$14(Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/AttackerActionWhenHitPower;)V to mdcc481c$lambda$invokeHitActions$14$9 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$13(Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/SelfActionWhenHitPower;)V to mdcc481c$lambda$invokeHitActions$13$a in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$12(Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/ActionOnHitPower;)V to mdcc481c$lambda$invokeHitActions$12$b in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$11(Lio/github/apace100/apoli/power/ActionOnHitPower;)Z to mdcc481c$lambda$invokeHitActions$11$c in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$10(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/ActionWhenHitPower;)V to mdcc481c$lambda$invokeHitActions$10$d in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$invokeHitActions$9(Lio/github/apace100/apoli/power/ActionWhenHitPower;)Z to mdcc481c$lambda$invokeHitActions$9$e in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyDamageTaken$8(Lnet/minecraft/entity/damage/DamageSource;Lio/github/apace100/apoli/power/ModifyDamageTakenPower;)V to mdcc481c$lambda$modifyDamageTaken$8$f in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyDamageTaken$7(Lnet/minecraft/entity/damage/DamageSource;FLio/github/apace100/apoli/power/ModifyDamageTakenPower;)Z to mdcc481c$lambda$modifyDamageTaken$7$10 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyDamageTaken$6(Lnet/minecraft/entity/LivingEntity;Lio/github/apace100/apoli/power/ModifyDamageDealtPower;)V to mdcc481c$lambda$modifyDamageTaken$6$11 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyDamageTaken$5(Lnet/minecraft/entity/damage/DamageSource;FLnet/minecraft/entity/LivingEntity;Lio/github/apace100/apoli/power/ModifyDamageDealtPower;)Z to mdcc481c$lambda$modifyDamageTaken$5$12 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyWalkableFluids$4(Lnet/minecraft/fluid/Fluid;Lio/github/apace100/apoli/power/WalkOnFluidPower;)Z to mdcc481c$lambda$modifyWalkableFluids$4$13 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$addEquipmentPowers$3(Lio/github/apace100/apoli/component/PowerHolderComponent;Lnet/minecraft/util/Identifier;Lio/github/apace100/apoli/util/StackPowerUtil$StackPower;)V to mdcc481c$lambda$addEquipmentPowers$3$14 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$removeEquipmentPowers$2(Lio/github/apace100/apoli/component/PowerHolderComponent;Lnet/minecraft/util/Identifier;Lio/github/apace100/apoli/util/StackPowerUtil$StackPower;)V to mdcc481c$lambda$removeEquipmentPowers$2$15 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyStatusEffect$1(Lnet/minecraft/entity/effect/StatusEffect;Lio/github/apace100/apoli/power/ModifyStatusEffectDurationPower;)Z to mdcc481c$lambda$modifyStatusEffect$1$16 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyStatusEffect$0(Lnet/minecraft/entity/effect/StatusEffect;Lio/github/apace100/apoli/power/ModifyStatusEffectAmplifierPower;)Z to mdcc481c$lambda$modifyStatusEffect$0$17 in apoli.mixins.json:LivingEntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityParticleMixin from apoli.mixins.json into net.minecraft.entity.LivingEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityParticleMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityMixin from mixins.reach-entity-attributes.json into net.minecraft.entity.LivingEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing elytra/LivingEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.LivingEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/LivingEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.LivingEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityMixin from fabric-item-api-v1.mixins.json into net.minecraft.entity.LivingEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:LivingEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing LikeWaterMixin from origins.mixins.json into net.minecraft.entity.LivingEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:LikeWaterMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing WaterBreathingMixin$CanBreatheInWater from origins.mixins.json into net.minecraft.entity.LivingEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterBreathingMixin$CanBreatheInWater: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityMixin from fabric-tool-attribute-api-v1.mixins.json into net.minecraft.entity.LivingEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:LivingEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenApplied(Lnet/minecraft/entity/effect/StatusEffectInstance;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenApplied(Lnet/minecraft/entity/effect/StatusEffectInstance;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenApplied(Lnet/minecraft/entity/effect/StatusEffectInstance;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenUpgraded(Lnet/minecraft/entity/effect/StatusEffectInstance;ZLnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenUpgraded(Lnet/minecraft/entity/effect/StatusEffectInstance;ZLnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenUpgraded(Lnet/minecraft/entity/effect/StatusEffectInstance;ZLnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenRemoved(Lnet/minecraft/entity/effect/StatusEffectInstance;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenRemoved(Lnet/minecraft/entity/effect/StatusEffectInstance;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenRemoved(Lnet/minecraft/entity/effect/StatusEffectInstance;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenCleared(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenCleared(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenCleared(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenCleared(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenCleared(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::updateStatusEffectWhenCleared(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::syncAttacker(Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::syncAttacker(Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::syncAttacker(Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::removeEquipmentPowers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod apoli doesn't use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::removeEquipmentPowers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::removeEquipmentPowers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod apoli won't be passed a CallbackInfoReturnable as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::addEquipmentPowers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod apoli doesn't use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::addEquipmentPowers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::addEquipmentPowers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod apoli won't be passed a CallbackInfoReturnable as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::modifyWalkableFluids(Lnet/minecraft/fluid/Fluid;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::preventHitIfDamageIsZero(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeHitActions(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeHitActions(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeHitActions(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeHitActions(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeHitActions(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeHitActions(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeKillAction(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeKillAction(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::invokeKillAction(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::freezeEntityFromPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::freezeEntityFromPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::freezeEntityFromPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::unfreezeEntityFromPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::unfreezeEntityFromPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::unfreezeEntityFromPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::allowFreezingPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::allowFreezingPower(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::getGroup(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::modifyJumpVelocity(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::preventStatusEffects(Lnet/minecraft/entity/effect/StatusEffectInstance;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::doSpiderClimbing(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::doSpiderClimbing(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::doSpiderClimbing(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::doSpiderClimbing(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::preventPushing(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::cacheDamageAmount(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::cacheDamageAmount(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::cacheDamageAmount(Lnet/minecraft/entity/damage/DamageSource;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::preventDeath(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::removeCurrentModifyFoodPowers(Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::removeCurrentModifyFoodPowers(Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::removeCurrentModifyFoodPowers(Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::modifyFlySpeed(FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityMixin->@Inject::modifyFlySpeed(FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityParticleMixin->@Inject::tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityParticleMixin->@Inject::tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityParticleMixin->@Inject::tick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.reach-entity-attributes.json:LivingEntityMixin->@Inject::addAttributes(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod reach-entity-attributes does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/LivingEntityMixin->@Inject::injectElytraTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 does use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onEntityKilledOther(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/entity/Entity;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onEntityKilledOther(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/entity/Entity;)V from mod fabric-entity-events-v1 has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onEntityKilledOther(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/entity/Entity;)V from mod fabric-entity-events-v1 won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onSleep(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onSleep(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onSleep(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onWakeUp(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onWakeUp(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onWakeUp(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onIsSleepingInBed(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:LivingEntityMixin->@Inject::onGetSleepingDirection(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/math/BlockPos;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:LivingEntityMixin->@Inject::onGetPreferredEquipmentSlot(Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/item/Item;)V from mod fabric-item-api-v1 does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterBreathingMixin$CanBreatheInWater->@Inject::doWaterBreathing(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod origins does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:LivingEntityMixin->@Inject::storeRemoveStackContext(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod fabric-tool-attribute-api-v1 doesn't use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:LivingEntityMixin->@Inject::storeRemoveStackContext(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod fabric-tool-attribute-api-v1 has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:LivingEntityMixin->@Inject::storeRemoveStackContext(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod fabric-tool-attribute-api-v1 won't be passed a CallbackInfoReturnable as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:LivingEntityMixin->@Inject::storeAddStackContext(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod fabric-tool-attribute-api-v1 doesn't use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:LivingEntityMixin->@Inject::storeAddStackContext(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod fabric-tool-attribute-api-v1 has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:LivingEntityMixin->@Inject::storeAddStackContext(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/Map;[Lnet/minecraft/entity/EquipmentSlot;IILnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V from mod fabric-tool-attribute-api-v1 won't be passed a CallbackInfoReturnable as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityAccessor from apoli.mixins.json into net.minecraft.entity.Entity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityMixin from apoli.mixins.json into net.minecraft.entity.Entity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventGameEvents$3(Lnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/PreventGameEventPower;)V to mdcc481c$lambda$preventGameEvents$3$0 in apoli.mixins.json:EntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventGameEvents$2(Lnet/minecraft/world/event/GameEvent;Lio/github/apace100/apoli/power/PreventGameEventPower;)Z to mdcc481c$lambda$preventGameEvents$2$1 in apoli.mixins.json:EntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$pushOutOfBlocks$1(DDDLio/github/apace100/apoli/power/PhasingPower;)Z to mdcc481c$lambda$pushOutOfBlocks$1$2 in apoli.mixins.json:EntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeOriginInvulnerable$0(Lnet/minecraft/entity/damage/DamageSource;Lio/github/apace100/apoli/power/InvulnerablePower;)Z to mdcc481c$lambda$makeOriginInvulnerable$0$3 in apoli.mixins.json:EntityMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityMixin from fabric-dimensions-v1.mixins.json into net.minecraft.entity.Entity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-dimensions-v1.mixins.json:EntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing EntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.entity.Entity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing common.MixinEntity from mixins.cardinal_components_entity.json into net.minecraft.entity.Entity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing SelectionInvulnerabilityMixin from origins.mixins.json into net.minecraft.entity.Entity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:SelectionInvulnerabilityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::makeFullyFireImmune(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::makeEntitiesIgnoreWater(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::invokeActionOnLand(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::invokeActionOnLand(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::invokeActionOnLand(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::makeOriginInvulnerable(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::phantomInvisibility(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::pushOutOfBlocks(DDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::preventGameEvents(Lnet/minecraft/world/event/GameEvent;Lnet/minecraft/entity/Entity;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::saveDistanceTraveled(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::saveDistanceTraveled(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::saveDistanceTraveled(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityMixin->@Inject::checkIsMoving(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-dimensions-v1.mixins.json:EntityMixin->@Inject::getTeleportTarget(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-dimensions-v1 does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:EntityMixin->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity->@Inject::initDataTracker(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity->@Inject::initDataTracker(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity->@Inject::initDataTracker(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity->@Inject::toTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod cardinal-components-entity does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity->@Inject::fromTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity->@Inject::fromTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntity->@Inject::fromTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:SelectionInvulnerabilityMixin->@Inject::makeOriginInvulnerable(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod origins does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing WorldMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.world.World +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:WorldMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:WorldMixin->@Inject::tickWorldAfterBlockEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:WorldMixin->@Inject::tickWorldAfterBlockEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 1 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:WorldMixin->@Inject::tickWorldAfterBlockEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinViewableWorld from fabric-rendering-data-attachment-v1.mixins.json into net.minecraft.world.WorldView +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-rendering-data-attachment-v1.mixins.json:MixinViewableWorld: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing common.MixinServerWorld from mixins.cardinal_components_entity.json into net.minecraft.server.world.ServerWorld +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerWorld: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerWorldMixin from fabric-api-lookup-api-v1.mixins.json into net.minecraft.server.world.ServerWorld +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_invalidateCache$5(Ljava/util/Map$Entry;)Z to mdcc481c$lambda$fabric_invalidateCache$5$0 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_invalidateCache$4(Ljava/lang/ref/WeakReference;)Z to mdcc481c$lambda$fabric_invalidateCache$4$1 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_invalidateCache$3(Ljava/lang/ref/WeakReference;)V to mdcc481c$lambda$fabric_invalidateCache$3$2 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_invalidateCache$2(Ljava/lang/ref/WeakReference;)Z to mdcc481c$lambda$fabric_invalidateCache$2$3 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_registerCache$1(Ljava/lang/ref/WeakReference;)Z to mdcc481c$lambda$fabric_registerCache$1$4 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_registerCache$0(Lnet/minecraft/util/math/BlockPos;)Ljava/util/List; to mdcc481c$lambda$fabric_registerCache$0$5 in fabric-api-lookup-api-v1.mixins.json:ServerWorldMixin +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerWorldMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.server.world.ServerWorld +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerWorld->@Inject::tick(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerWorld->@Inject::tick(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerWorld->@Inject::tick(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerWorld->@Inject::tickRiding(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerWorld->@Inject::tickRiding(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerWorld->@Inject::tickRiding(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin->@Inject::startWorldTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin->@Inject::startWorldTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldMixin->@Inject::startWorldTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing ClientPlayerEntityMixin from apoli.mixins.json into net.minecraft.client.network.ClientPlayerEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayerEntityMixin from fabric-command-api-v1.mixins.json into net.minecraft.client.network.ClientPlayerEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.ClientPlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing elytra/ClientPlayerEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.client.network.ClientPlayerEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/ClientPlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) Mixing WaterVisibilityMixin from origins.mixins.json into net.minecraft.client.network.ClientPlayerEntity +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterVisibilityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin->@Inject::allowSwimming(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin->@Inject::beginMovementPhase(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin->@Inject::beginMovementPhase(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin->@Inject::beginMovementPhase(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin->@Inject::endMovementPhase(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin->@Inject::endMovementPhase(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerEntityMixin->@Inject::endMovementPhase(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.ClientPlayerEntityMixin->@Inject::onSendChatMessage(Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 does use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/ClientPlayerEntityMixin->@Inject::injectElytraStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/ClientPlayerEntityMixin->@Inject::injectElytraStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 has 0 override(s) in child classes +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:elytra/ClientPlayerEntityMixin->@Inject::injectElytraStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 won't be passed a CallbackInfo as a result +[19:51:42] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:WaterVisibilityMixin->@Inject::getUnderwaterVisibility(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod origins does use it's CallbackInfoReturnable +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing ScreenHandlerMixin from mixins.reach-entity-attributes.json into net.minecraft.screen.ScreenHandler +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing PlayerScreenHandlerAccessor from apoli.mixins.json into net.minecraft.screen.PlayerScreenHandler +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerScreenHandlerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinCrashReport from fabric-crash-report-info-v1.mixins.json into net.minecraft.util.SystemDetails +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-crash-report-info-v1.mixins.json:MixinCrashReport: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fillSystemDetails$0()Ljava/lang/String; to mdcc481c$lambda$fillSystemDetails$0$0 in fabric-crash-report-info-v1.mixins.json:MixinCrashReport +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-crash-report-info-v1.mixins.json:MixinCrashReport->@Inject::fillSystemDetails(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-crash-report-info-v1 doesn't use it's CallbackInfo +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-crash-report-info-v1.mixins.json:MixinCrashReport->@Inject::fillSystemDetails(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-crash-report-info-v1 has 0 override(s) in child classes +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-crash-report-info-v1.mixins.json:MixinCrashReport->@Inject::fillSystemDetails(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-crash-report-info-v1 won't be passed a CallbackInfo as a result +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinBootstrap from fabric-registry-sync-v0.mixins.json into net.minecraft.Bootstrap +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinBootstrap: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$initialize$1(Lnet/minecraft/fluid/Fluid;)Ljava/util/Collection; to mdcc481c$lambda$initialize$1$0 in fabric-registry-sync-v0.mixins.json:MixinBootstrap +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$initialize$0(Lnet/minecraft/block/Block;)Ljava/util/Collection; to mdcc481c$lambda$initialize$0$1 in fabric-registry-sync-v0.mixins.json:MixinBootstrap +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinBootstrap->@Inject::initialize(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing AccessorRegistry from fabric-registry-sync-v0.mixins.json into net.minecraft.util.registry.Registry +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:AccessorRegistry: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getROOT()Lnet/minecraft/util/registry/MutableRegistry; to getROOT_$md$cc481c$0 in fabric-registry-sync-v0.mixins.json:AccessorRegistry +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinRegistry from fabric-registry-sync-v0.mixins.json into net.minecraft.util.registry.Registry +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinRegistry: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinIdRegistry from fabric-registry-sync-v0.mixins.json into net.minecraft.util.registry.SimpleRegistry +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdRegistry: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$5([Lnet/fabricmc/fabric/api/event/registry/RegistryIdRemapCallback;)Lnet/fabricmc/fabric/api/event/registry/RegistryIdRemapCallback; to mdcc481c$lambda$new$5$0 in fabric-registry-sync-v0.mixins.json:MixinIdRegistry +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$4([Lnet/fabricmc/fabric/api/event/registry/RegistryIdRemapCallback;Lnet/fabricmc/fabric/api/event/registry/RegistryIdRemapCallback$RemapState;)V to mdcc481c$lambda$new$4$1 in fabric-registry-sync-v0.mixins.json:MixinIdRegistry +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$3([Lnet/fabricmc/fabric/api/event/registry/RegistryEntryRemovedCallback;)Lnet/fabricmc/fabric/api/event/registry/RegistryEntryRemovedCallback; to mdcc481c$lambda$new$3$2 in fabric-registry-sync-v0.mixins.json:MixinIdRegistry +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$2([Lnet/fabricmc/fabric/api/event/registry/RegistryEntryRemovedCallback;ILnet/minecraft/util/Identifier;Ljava/lang/Object;)V to mdcc481c$lambda$new$2$3 in fabric-registry-sync-v0.mixins.json:MixinIdRegistry +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$1([Lnet/fabricmc/fabric/api/event/registry/RegistryEntryAddedCallback;)Lnet/fabricmc/fabric/api/event/registry/RegistryEntryAddedCallback; to mdcc481c$lambda$new$1$4 in fabric-registry-sync-v0.mixins.json:MixinIdRegistry +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$0([Lnet/fabricmc/fabric/api/event/registry/RegistryEntryAddedCallback;ILnet/minecraft/util/Identifier;Ljava/lang/Object;)V to mdcc481c$lambda$new$0$5 in fabric-registry-sync-v0.mixins.json:MixinIdRegistry +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinSimpleRegistry from fabric-registry-sync-v0.mixins.json into net.minecraft.util.registry.SimpleRegistry +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinSimpleRegistry: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdRegistry->@Inject::setPre(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfoReturnable +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdRegistry->@Inject::setPre(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdRegistry->@Inject::setPre(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfoReturnable as a result +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdRegistry->@Inject::setPost(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfoReturnable +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdRegistry->@Inject::setPost(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdRegistry->@Inject::setPost(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfoReturnable as a result +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinSimpleRegistry->@Inject::add(Lnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfoReturnable +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinSimpleRegistry->@Inject::add(Lnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinSimpleRegistry->@Inject::add(Lnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfoReturnable as a result +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinSimpleRegistry->@Inject::set(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfoReturnable +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinSimpleRegistry->@Inject::set(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinSimpleRegistry->@Inject::set(ILnet/minecraft/util/registry/RegistryKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfoReturnable as a result +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing FluidMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.fluid.Fluid +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:FluidMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinBlock from fabric-object-builder-v1.mixins.json into net.minecraft.block.Block +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:MixinBlock: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing OldMixinBlock from fabric-object-builders-v0.mixins.json into net.minecraft.block.Block +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinBlock: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:MixinBlock->@Inject::fabric_init(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builder-api-v1 doesn't use it's CallbackInfo +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:MixinBlock->@Inject::fabric_init(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builder-api-v1 has 0 override(s) in child classes +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:MixinBlock->@Inject::fabric_init(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builder-api-v1 won't be passed a CallbackInfo as a result +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinBlock->@Inject::init(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builders-v0 doesn't use it's CallbackInfo +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinBlock->@Inject::init(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builders-v0 has 0 override(s) in child classes +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinBlock->@Inject::init(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builders-v0 won't be passed a CallbackInfo as a result +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractBlockMixin from apoli.mixins.json into net.minecraft.block.AbstractBlock +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:AbstractBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyBlockBreakSpeed$0(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/math/BlockPos;Lio/github/apace100/apoli/power/ModifyBreakSpeedPower;)Z to mdcc481c$lambda$modifyBlockBreakSpeed$0$0 in apoli.mixins.json:AbstractBlockMixin +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractBlockAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.block.AbstractBlock +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:AbstractBlockAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:AbstractBlockMixin->@Inject::modifyBlockBreakSpeed(Lnet/minecraft/block/BlockState;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:AbstractBlockMixin->@Inject::modifyBlockBreakSpeed(Lnet/minecraft/block/BlockState;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemMixin from apoli.mixins.json into net.minecraft.item.Item +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$forgeItem$1(Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ItemOnItemPower;)Z to mdcc481c$lambda$forgeItem$1$0 in apoli.mixins.json:ItemMixin +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeItemEdible$0(Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ModifyFoodPower;)Z to mdcc481c$lambda$makeItemEdible$0$1 in apoli.mixins.json:ItemMixin +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.item.Item +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:ItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemMixin from mixins.reach-entity-attributes.json into net.minecraft.item.Item +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemMixin from fabric-item-api-v1.mixins.json into net.minecraft.item.Item +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing OldMixinItem from fabric-object-builders-v0.mixins.json into net.minecraft.item.Item +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinItem: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemMixin->@Inject::forgeItem(Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Lnet/minecraft/screen/slot/Slot;Lnet/minecraft/util/ClickType;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/inventory/StackReference;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemMixin->@Inject::onConstruct(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 doesn't use it's CallbackInfo +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemMixin->@Inject::onConstruct(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 has 0 override(s) in child classes +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemMixin->@Inject::onConstruct(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 won't be passed a CallbackInfo as a result +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinItem->@Inject::init(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builders-v0 doesn't use it's CallbackInfo +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinItem->@Inject::init(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builders-v0 has 0 override(s) in child classes +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builders-v0.mixins.json:OldMixinItem->@Inject::init(Lnet/minecraft/item/Item$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builders-v0 won't be passed a CallbackInfo as a result +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing BlockEntityTypeAccessor from fabric-api-lookup-api-v1.mixins.json into net.minecraft.block.entity.BlockEntityType +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-api-lookup-api-v1.mixins.json:BlockEntityTypeAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing VillagerTypeAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.village.VillagerType +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:VillagerTypeAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getBiomeTypeToIdMap()Ljava/util/Map; to getBiomeTypeToIdMap_$md$cc481c$0 in fabric-object-builder-v1.mixins.json:VillagerTypeAccessor +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callRegister(Ljava/lang/String;)Lnet/minecraft/village/VillagerType; to callRegister_$md$cc481c$1 in fabric-object-builder-v1.mixins.json:VillagerTypeAccessor +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing VillagerProfessionAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.village.VillagerProfession +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:VillagerProfessionAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method create(Ljava/lang/String;Lnet/minecraft/world/poi/PointOfInterestType;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/sound/SoundEvent;)Lnet/minecraft/village/VillagerProfession; to create_$md$cc481c$0 in fabric-object-builder-v1.mixins.json:VillagerProfessionAccessor +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing PointOfInterestTypeAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.world.poi.PointOfInterestType +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:PointOfInterestTypeAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callCreate(Ljava/lang/String;Ljava/util/Set;ILjava/util/function/Predicate;I)Lnet/minecraft/world/poi/PointOfInterestType; to callCreate_$md$cc481c$0 in fabric-object-builder-v1.mixins.json:PointOfInterestTypeAccessor +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callCreate(Ljava/lang/String;Ljava/util/Set;II)Lnet/minecraft/world/poi/PointOfInterestType; to callCreate_$md$cc481c$1 in fabric-object-builder-v1.mixins.json:PointOfInterestTypeAccessor +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callSetup(Lnet/minecraft/world/poi/PointOfInterestType;)Lnet/minecraft/world/poi/PointOfInterestType; to callSetup_$md$cc481c$2 in fabric-object-builder-v1.mixins.json:PointOfInterestTypeAccessor +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Mixing StructureFeatureAccessor from fabric-structure-api-v1.mixins.json into net.minecraft.world.gen.feature.StructureFeature +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) fabric-structure-api-v1.mixins.json:StructureFeatureAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setSurfaceAdjustingStructures(Ljava/util/List;)V to setSurfaceAdjustingStructures_$md$cc481c$0 in fabric-structure-api-v1.mixins.json:StructureFeatureAccessor +[19:51:43] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callRegister(Ljava/lang/String;Lnet/minecraft/world/gen/feature/StructureFeature;Lnet/minecraft/world/gen/GenerationStep$Feature;)Lnet/minecraft/world/gen/feature/StructureFeature; to callRegister_$md$cc481c$1 in fabric-structure-api-v1.mixins.json:StructureFeatureAccessor +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinTheEndBiomeSource from fabric-biome-api-v1.mixins.json into net.minecraft.world.biome.source.TheEndBiomeSource +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinTheEndBiomeSource: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinTheEndBiomeSource->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-biome-api-v1 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinTheEndBiomeSource->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-biome-api-v1 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinTheEndBiomeSource->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-biome-api-v1 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinTheEndBiomeSource->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-biome-api-v1 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinTheEndBiomeSource->@Inject::getWeightedEndBiome(IIILnet/minecraft/world/biome/source/util/MultiNoiseUtil$MultiNoiseSampler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-biome-api-v1 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinRequiredTagListRegistry from fabric-tag-extensions-v0.mixins.json into net.minecraft.tag.RequiredTagListRegistry +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinRequiredTagListRegistry: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinRequiredTagListRegistry->@Inject::getBuiltinTags(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tag-extensions-v0 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinTagImpl from fabric-tag-extensions-v0.mixins.json into net.minecraft.tag.SetTag +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagImpl: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinTagImpl from fabric-tag-extensions-v0.mixins.json into net.minecraft.tag.RequiredTagList$TagWrapper +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagImpl: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing BedBlockMixin from fabric-entity-events-v1.mixins.json into net.minecraft.block.BedBlock +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:BedBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:BedBlockMixin->@Inject::onOnUse(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/entity/player/PlayerEntity$SleepFailureReason;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 does use it's CallbackInfo +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing DetectorRailBlockMixin from fabric-object-builder-v1.mixins.json into net.minecraft.block.DetectorRailBlock +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DetectorRailBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$getCustomComparatorOutput$0(Lnet/minecraft/entity/Entity;)Z to mdcc481c$lambda$getCustomComparatorOutput$0$0 in fabric-object-builder-v1.mixins.json:DetectorRailBlockMixin +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DetectorRailBlockMixin->@Inject::getCustomComparatorOutput(Lnet/minecraft/block/BlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-object-builder-api-v1 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinFireBlock from fabric-content-registries-v0.mixins.json into net.minecraft.block.FireBlock +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinFireBlock: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinFireBlock->@Inject::afterConstruct(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-content-registries-v0 doesn't use it's CallbackInfo +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinFireBlock->@Inject::afterConstruct(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-content-registries-v0 has 0 override(s) in child classes +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinFireBlock->@Inject::afterConstruct(Lnet/minecraft/block/AbstractBlock$Settings;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-content-registries-v0 won't be passed a CallbackInfo as a result +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinFireBlock->@Inject::getFabricBurnChance(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-content-registries-v0 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinFireBlock->@Inject::getFabricSpreadChance(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-content-registries-v0 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing DropperBlockMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.block.DropperBlock +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:DropperBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$hookDispense$0(Lnet/fabricmc/fabric/api/transfer/v1/item/ItemVariant;)Z to mdcc481c$lambda$hookDispense$0$0 in fabric-transfer-api-v1.mixins.json:DropperBlockMixin +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:DropperBlockMixin->@Inject::hookDispense(Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-transfer-api-v1 does use it's CallbackInfo +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing BambooBlockMixin from fabric-tool-attribute-api-v1.mixins.json into net.minecraft.block.BambooSaplingBlock +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:BambooBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:BambooBlockMixin->@Inject::onCalcBlockBreakingDelta(Lnet/minecraft/block/BlockState;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing BambooBlockMixin from fabric-tool-attribute-api-v1.mixins.json into net.minecraft.block.BambooBlock +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:BambooBlockMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:BambooBlockMixin->@Inject::onCalcBlockBreakingDelta(Lnet/minecraft/block/BlockState;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing OxidizableMixin from fabric-content-registries-v0.mixins.json into net.minecraft.block.Oxidizable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:OxidizableMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:OxidizableMixin->@Inject::createOxidationLevelIncreasesMap(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-content-registries-v0 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinIdList from fabric-registry-sync-v0.mixins.json into net.minecraft.util.collection.IdList +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinIdList: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$fabric_remapIds$0(Lit/unimi/dsi/fastutil/ints/Int2IntMap;Ljava/lang/Object;Ljava/lang/Integer;)Ljava/lang/Integer; to mdcc481c$lambda$fabric_remapIds$0$0 in fabric-registry-sync-v0.mixins.json:MixinIdList +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing MaterialBuilderAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.block.Material$Builder +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:MaterialBuilderAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractBlockSettingsAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.block.AbstractBlock$Settings +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:AbstractBlockSettingsAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractBlockSettingsMixin from fabric-object-builder-v1.mixins.json into net.minecraft.block.AbstractBlock$Settings +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:AbstractBlockSettingsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing AbstractBlockStateMixin from apoli.mixins.json into net.minecraft.block.AbstractBlock$AbstractBlockState +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:AbstractBlockStateMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventBlockSelection$0(Lnet/minecraft/entity/Entity;Lnet/minecraft/util/math/BlockPos;Lio/github/apace100/apoli/power/PreventBlockSelectionPower;)Z to mdcc481c$lambda$preventBlockSelection$0$0 in apoli.mixins.json:AbstractBlockStateMixin +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:AbstractBlockStateMixin->@Inject::preventBlockSelection(Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/ShapeContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:AbstractBlockStateMixin->@Inject::phaseThroughBlocks(Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/ShapeContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:AbstractBlockStateMixin->@Inject::preventCollisionWhenPhasing(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinBlockEntity from fabric-rendering-data-attachment-v1.mixins.json into net.minecraft.block.entity.BlockEntity +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-rendering-data-attachment-v1.mixins.json:MixinBlockEntity: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing InventoryValidationMixin from mixins.reach-entity-attributes.json into net.minecraft.block.entity.LootableContainerBlockEntity +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing CraftingScreenHandlerAccessor from apoli.mixins.json into net.minecraft.screen.CraftingScreenHandler +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingScreenHandlerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing CraftingScreenHandlerMixin from apoli.mixins.json into net.minecraft.screen.CraftingScreenHandler +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingScreenHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$allowUsingViaPower$0(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)Ljava/lang/Boolean; to mdcc481c$lambda$allowUsingViaPower$0$0 in apoli.mixins.json:CraftingScreenHandlerMixin +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingScreenHandlerMixin->@Inject::clearPowerCraftingInventory(Lnet/minecraft/screen/ScreenHandler;Lnet/minecraft/world/World;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/inventory/CraftingInventory;Lnet/minecraft/inventory/CraftingResultInventory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingScreenHandlerMixin->@Inject::allowUsingViaPower(Lnet/minecraft/entity/player/PlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing InventoryValidationMixin from mixins.reach-entity-attributes.json into net.minecraft.block.entity.AbstractFurnaceBlockEntity +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinAbstractFurnaceBlockEntity from fabric-content-registries-v0.mixins.json into net.minecraft.block.entity.AbstractFurnaceBlockEntity +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinAbstractFurnaceBlockEntity: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:MixinAbstractFurnaceBlockEntity->@Inject::fuelTimeMapHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-content-registries-v0 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing InventoryValidationMixin from mixins.reach-entity-attributes.json into net.minecraft.block.entity.BrewingStandBlockEntity +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemStackMixin from apoli.mixins.json into net.minecraft.item.ItemStack +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$addEquipmentPowerTooltips$3(Ljava/util/List;Lio/github/apace100/apoli/power/TooltipPower;)V to mdcc481c$lambda$addEquipmentPowerTooltips$3$0 in apoli.mixins.json:ItemStackMixin +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$addEquipmentPowerTooltips$2(Lio/github/apace100/apoli/power/TooltipPower;)Z to mdcc481c$lambda$addEquipmentPowerTooltips$2$1 in apoli.mixins.json:ItemStackMixin +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$addEquipmentPowerTooltips$1(Ljava/util/List;Lnet/minecraft/client/item/TooltipContext;Lio/github/apace100/apoli/util/StackPowerUtil$StackPower;)V to mdcc481c$lambda$addEquipmentPowerTooltips$1$2 in apoli.mixins.json:ItemStackMixin +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$addEquipmentPowerTooltips$0(Lio/github/apace100/apoli/util/StackPowerUtil$StackPower;)Z to mdcc481c$lambda$addEquipmentPowerTooltips$0$3 in apoli.mixins.json:ItemStackMixin +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing ItemStackMixin from fabric-item-api-v1.mixins.json into net.minecraft.item.ItemStack +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing client.ItemStackMixin from fabric-item-api-v1.mixins.json into net.minecraft.item.ItemStack +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:client.ItemStackMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing DontOverwriteAttrModsMixin from calio.mixins.json into net.minecraft.item.ItemStack +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:DontOverwriteAttrModsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing CustomNonItalicNameMixin$ModifyItalicDisplayItem from calio.mixins.json into net.minecraft.item.ItemStack +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:CustomNonItalicNameMixin$ModifyItalicDisplayItem: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinItemStack from fabric-tool-attribute-api-v1.mixins.json into net.minecraft.item.ItemStack +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::addEquipmentPowerTooltips(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/List;)V from mod apoli doesn't use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::addEquipmentPowerTooltips(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/List;)V from mod apoli has 0 override(s) in child classes +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::addEquipmentPowerTooltips(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/List;)V from mod apoli won't be passed a CallbackInfoReturnable as a result +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::use(Lnet/minecraft/world/World;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::cacheUsedItemStack(Lnet/minecraft/world/World;Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::cacheUsedItemStack(Lnet/minecraft/world/World;Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::cacheUsedItemStack(Lnet/minecraft/world/World;Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ItemStackMixin->@Inject::callActionOnUse(Lnet/minecraft/world/World;Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::saveDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 doesn't use it's CallbackInfo +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::saveDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 has 0 override(s) in child classes +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::saveDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 won't be passed a CallbackInfo as a result +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 doesn't use it's CallbackInfo +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 has 0 override(s) in child classes +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 won't be passed a CallbackInfo as a result +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 doesn't use it's CallbackInfo +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 has 0 override(s) in child classes +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 won't be passed a CallbackInfo as a result +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 doesn't use it's CallbackInfo +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 has 0 override(s) in child classes +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:ItemStackMixin->@Inject::clearDamager(ILnet/minecraft/entity/LivingEntity;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 won't be passed a CallbackInfo as a result +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:client.ItemStackMixin->@Inject::getTooltip(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-item-api-v1 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:DontOverwriteAttrModsMixin->@Inject::addAttributeModifiersFromItem(Lnet/minecraft/entity/EquipmentSlot;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lcom/google/common/collect/Multimap;)V from mod calio doesn't use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:DontOverwriteAttrModsMixin->@Inject::addAttributeModifiersFromItem(Lnet/minecraft/entity/EquipmentSlot;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lcom/google/common/collect/Multimap;)V from mod calio has 0 override(s) in child classes +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:DontOverwriteAttrModsMixin->@Inject::addAttributeModifiersFromItem(Lnet/minecraft/entity/EquipmentSlot;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lcom/google/common/collect/Multimap;)V from mod calio won't be passed a CallbackInfoReturnable as a result +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::isEffectiveOn(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::getMiningSpeedMultiplier(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::storeTooltipAttributeEntityContext(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 doesn't use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::storeTooltipAttributeEntityContext(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 has 0 override(s) in child classes +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::storeTooltipAttributeEntityContext(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 won't be passed a CallbackInfoReturnable as a result +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::revokeTooltipAttributeEntityContext(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 doesn't use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::revokeTooltipAttributeEntityContext(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 has 0 override(s) in child classes +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::revokeTooltipAttributeEntityContext(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/item/TooltipContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tool-attribute-api-v1 won't be passed a CallbackInfoReturnable as a result +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-tool-attribute-api-v1.mixins.json:MixinItemStack->@Inject::getAttributeModifiers(Lnet/minecraft/entity/EquipmentSlot;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lcom/google/common/collect/Multimap;)V from mod fabric-tool-attribute-api-v1 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing EnderChestBlockEntityMixin from mixins.reach-entity-attributes.json into net.minecraft.block.entity.EnderChestBlockEntity +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing CustomNonItalicNameMixin$RemoveNonItalicOnRename from calio.mixins.json into net.minecraft.screen.AnvilScreenHandler +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:CustomNonItalicNameMixin$RemoveNonItalicOnRename: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:CustomNonItalicNameMixin$RemoveNonItalicOnRename->@Inject::removeNonItalicFlag(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/item/ItemStack;IIILnet/minecraft/item/ItemStack;)V from mod calio doesn't use it's CallbackInfo +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:CustomNonItalicNameMixin$RemoveNonItalicOnRename->@Inject::removeNonItalicFlag(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/item/ItemStack;IIILnet/minecraft/item/ItemStack;)V from mod calio has 0 override(s) in child classes +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) calio.mixins.json:CustomNonItalicNameMixin$RemoveNonItalicOnRename->@Inject::removeNonItalicFlag(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/item/ItemStack;IIILnet/minecraft/item/ItemStack;)V from mod calio won't be passed a CallbackInfo as a result +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing ForgingScreenHandlerMixin from mixins.reach-entity-attributes.json into net.minecraft.screen.ForgingScreenHandler +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing HopperBlockEntityMixin from fabric-transfer-api-v1.mixins.json into net.minecraft.block.entity.HopperBlockEntity +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$hookExtract$1(Lnet/fabricmc/fabric/api/transfer/v1/item/ItemVariant;)Z to mdcc481c$lambda$hookExtract$1$0 in fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$hookInsert$0(Lnet/fabricmc/fabric/api/transfer/v1/item/ItemVariant;)Z to mdcc481c$lambda$hookInsert$0$1 in fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin->@Inject::hookInsert(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;Lnet/minecraft/inventory/Inventory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/inventory/Inventory;)V from mod fabric-transfer-api-v1 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:HopperBlockEntityMixin->@Inject::hookExtract(Lnet/minecraft/world/World;Lnet/minecraft/block/entity/Hopper;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/inventory/Inventory;)V from mod fabric-transfer-api-v1 does use it's CallbackInfoReturnable +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) Mixing ConduitOnLandMixin from origins.mixins.json into net.minecraft.block.entity.ConduitBlockEntity +[19:51:44] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:ConduitOnLandMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Mixing PersistentProjectileEntityMixin from apoli.mixins.json into net.minecraft.entity.projectile.PersistentProjectileEntity +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PersistentProjectileEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyProjectileDamageDealt$1(Lnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/ModifyProjectileDamagePower;)V to mdcc481c$lambda$modifyProjectileDamageDealt$1$0 in apoli.mixins.json:PersistentProjectileEntityMixin +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyProjectileDamageDealt$0(Lnet/minecraft/entity/damage/DamageSource;ILnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/ModifyProjectileDamagePower;)Z to mdcc481c$lambda$modifyProjectileDamageDealt$0$1 in apoli.mixins.json:PersistentProjectileEntityMixin +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Mixing ExperienceOrbEntityMixin from apoli.mixins.json into net.minecraft.entity.ExperienceOrbEntity +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ExperienceOrbEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ExperienceOrbEntityMixin->@Inject::modifyXpAmount(Lnet/minecraft/entity/player/PlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ExperienceOrbEntityMixin->@Inject::modifyXpAmount(Lnet/minecraft/entity/player/PlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ExperienceOrbEntityMixin->@Inject::modifyXpAmount(Lnet/minecraft/entity/player/PlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Mixing ScareCreepersMixin from origins.mixins.json into net.minecraft.entity.mob.CreeperEntity +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:ScareCreepersMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$redirectTargetGoal$0(Lnet/minecraft/entity/LivingEntity;)Z to mdcc481c$lambda$redirectTargetGoal$0$0 in origins.mixins.json:ScareCreepersMixin +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:ScareCreepersMixin->@Inject::addGoals(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins doesn't use it's CallbackInfo +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:ScareCreepersMixin->@Inject::addGoals(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) origins.mixins.json:ScareCreepersMixin->@Inject::addGoals(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins won't be passed a CallbackInfo as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Mixing TridentEntityMixin from apoli.mixins.json into net.minecraft.entity.projectile.TridentEntity +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:TridentEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyProjectileDamageDealt$1(Lnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/ModifyProjectileDamagePower;)V to mdcc481c$lambda$modifyProjectileDamageDealt$1$0 in apoli.mixins.json:TridentEntityMixin +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyProjectileDamageDealt$0(Lnet/minecraft/entity/damage/DamageSource;FLnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/ModifyProjectileDamagePower;)Z to mdcc481c$lambda$modifyProjectileDamageDealt$0$1 in apoli.mixins.json:TridentEntityMixin +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityMixin from fabric-screen-handler-api-v1.mixins.json into net.minecraft.server.network.ServerPlayerEntity +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityMixin from apoli.mixins.json into net.minecraft.server.network.ServerPlayerEntity +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventAvianSleep$0(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lio/github/apace100/apoli/power/PreventSleepPower;)V to mdcc481c$lambda$preventAvianSleep$0$0 in apoli.mixins.json:ServerPlayerEntityMixin +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinServerPlayerEntity from fabric-events-interaction-v0.mixins.json into net.minecraft.server.network.ServerPlayerEntity +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerEntity: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityAccessor from fabric-containers-v0.mixins.json into net.minecraft.server.network.ServerPlayerEntity +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-containers-v0.mixins.json:ServerPlayerEntityAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinServerPlayerEntity from fabric-containers-v0.accurate.mixins.json into net.minecraft.server.network.ServerPlayerEntity +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-containers-v0.accurate.mixins.json:MixinServerPlayerEntity: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityMixin from fabric-entity-events-v1.mixins.json into net.minecraft.server.network.ServerPlayerEntity +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Mixing common.MixinServerPlayerEntity from mixins.cardinal_components_entity.json into net.minecraft.server.network.ServerPlayerEntity +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerPlayerEntity: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerEntityMixin from mixins.playerabilitylib.common.json into net.minecraft.server.network.ServerPlayerEntity +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_storeOpenedScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/screen/ScreenHandler;)V from mod fabric-screen-handler-api-v1 doesn't use it's CallbackInfoReturnable +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_storeOpenedScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/screen/ScreenHandler;)V from mod fabric-screen-handler-api-v1 has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_storeOpenedScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/screen/ScreenHandler;)V from mod fabric-screen-handler-api-v1 won't be passed a CallbackInfoReturnable as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 doesn't use it's CallbackInfoReturnable +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 won't be passed a CallbackInfoReturnable as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 doesn't use it's CallbackInfoReturnable +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 won't be passed a CallbackInfoReturnable as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 doesn't use it's CallbackInfoReturnable +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-screen-handler-api-v1.mixins.json:ServerPlayerEntityMixin->@Inject::fabric_clearStoredScreenHandler(Lnet/minecraft/screen/NamedScreenHandlerFactory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-screen-handler-api-v1 won't be passed a CallbackInfoReturnable as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin->@Inject::preventAvianSleep(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin->@Inject::modifySpawnPointDimension(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin->@Inject::modifyPlayerSpawnPosition(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin->@Inject::modifySpawnPointSet(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin->@Inject::copyInventoryWhenKeeping(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin->@Inject::copyInventoryWhenKeeping(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerEntityMixin->@Inject::copyInventoryWhenKeeping(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerEntity->@Inject::onPlayerInteractEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-events-interaction-v0 does use it's CallbackInfo +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::callOnKillForPlayer(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::callOnKillForPlayer(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::callOnKillForPlayer(Lnet/minecraft/entity/damage/DamageSource;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 won't be passed a CallbackInfo as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::afterWorldChanged(Lnet/minecraft/server/world/ServerWorld;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 won't be passed a CallbackInfo as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::onCopyFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::onCopyFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::onCopyFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-entity-events-v1 won't be passed a CallbackInfo as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:ServerPlayerEntityMixin->@Inject::onTrySleepDirectionCheck(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/math/Direction;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerPlayerEntity->@Inject::copyDataFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerPlayerEntity->@Inject::copyDataFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinServerPlayerEntity->@Inject::copyDataFrom(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::init(Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/world/ServerWorld;Lcom/mojang/authlib/GameProfile;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib doesn't use it's CallbackInfo +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::init(Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/world/ServerWorld;Lcom/mojang/authlib/GameProfile;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::init(Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/world/ServerWorld;Lcom/mojang/authlib/GameProfile;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib won't be passed a CallbackInfo as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::checkAbilityConsistency(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib doesn't use it's CallbackInfo +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::checkAbilityConsistency(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::checkAbilityConsistency(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib won't be passed a CallbackInfo as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::writeAbilitiesToTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib doesn't use it's CallbackInfo +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::writeAbilitiesToTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::writeAbilitiesToTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib won't be passed a CallbackInfo as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::readAbilitiesFromTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib doesn't use it's CallbackInfo +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::readAbilitiesFromTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib has 0 override(s) in child classes +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerEntityMixin->@Inject::readAbilitiesFromTag(Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib won't be passed a CallbackInfo as a result +[19:51:45] [main/DEBUG] (FabricLoader/Mixin) Mixing InventoryValidationMixin from mixins.reach-entity-attributes.json into net.minecraft.entity.vehicle.StorageMinecartEntity +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing client.WorldChunkMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.world.chunk.WorldChunk +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:46] [main/WARN] (FabricLoader/Mixin) @Inject(@At("INVOKE")) Shift.BY=3 on fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin::handler$zni000$onLoadBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onLoadBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onLoadBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onLoadBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onRemoveBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onRemoveBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onRemoveBlockEntity(Lnet/minecraft/block/entity/BlockEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onRemoveBlockEntity(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onRemoveBlockEntity(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin->@Inject::onRemoveBlockEntity(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/block/entity/BlockEntity;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing StructuresConfigAccessor from fabric-structure-api-v1.mixins.json into net.minecraft.world.gen.chunk.StructuresConfig +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-structure-api-v1.mixins.json:StructuresConfigAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing BlockItemMixin from apoli.mixins.json into net.minecraft.item.BlockItem +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:BlockItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing ArmorItemMixin from apoli.mixins.json into net.minecraft.item.ArmorItem +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ArmorItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventArmorEquipping$0(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/EquipmentSlot;Lio/github/apace100/apoli/power/RestrictArmorPower;)Z to mdcc481c$lambda$preventArmorEquipping$0$0 in apoli.mixins.json:ArmorItemMixin +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ArmorItemMixin->@Inject::preventArmorEquipping(Lnet/minecraft/world/World;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/EquipmentSlot;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing SwordItemMixin from fabric-mining-level-api-v1.mixins.json into net.minecraft.item.SwordItem +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin->@Inject::fabric$onIsSuitableFor(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:SwordItemMixin->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing ShovelItemAccessor from fabric-content-registries-v0.mixins.json into net.minecraft.item.ShovelItem +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:ShovelItemAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getPathStates()Ljava/util/Map; to getPathStates_$md$cc481c$0 in fabric-content-registries-v0.mixins.json:ShovelItemAccessor +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing MiningToolItemMixin from fabric-mining-level-api-v1.mixins.json into net.minecraft.item.MiningToolItem +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:MiningToolItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:MiningToolItemMixin->@Inject::fabric$onIsSuitableFor(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;I)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing AxeItemAccessor from fabric-content-registries-v0.mixins.json into net.minecraft.item.AxeItem +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:AxeItemAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getStrippedBlocks()Ljava/util/Map; to getStrippedBlocks_$md$cc481c$0 in fabric-content-registries-v0.mixins.json:AxeItemAccessor +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method setStrippedBlocks(Ljava/util/Map;)V to setStrippedBlocks_$md$cc481c$1 in fabric-content-registries-v0.mixins.json:AxeItemAccessor +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing HoeItemAccessor from fabric-content-registries-v0.mixins.json into net.minecraft.item.HoeItem +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:HoeItemAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getTillingActions()Ljava/util/Map; to getTillingActions_$md$cc481c$0 in fabric-content-registries-v0.mixins.json:HoeItemAccessor +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing BucketItemAccessor from fabric-transfer-api-v1.mixins.json into net.minecraft.item.BucketItem +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-transfer-api-v1.mixins.json:BucketItemAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing ShearsItemMixin from fabric-mining-level-api-v1.mixins.json into net.minecraft.item.ShearsItem +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin->@Inject::fabric$onIsSuitableFor(Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:ShearsItemMixin->@Inject::fabric$onGetMiningSpeedMultiplier(Lnet/minecraft/item/ItemStack;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-mining-level-api-v1 does use it's CallbackInfoReturnable +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing HoneycombItemMixin from fabric-content-registries-v0.mixins.json into net.minecraft.item.HoneycombItem +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:HoneycombItemMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:HoneycombItemMixin->@Inject::createUnwaxedToWaxedMap(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-content-registries-v0 does use it's CallbackInfoReturnable +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinItemGroup from fabric-item-groups-v0.mixins.json into net.minecraft.item.ItemGroup +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:MixinItemGroup: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing client.MixinItemGroup from fabric-item-groups-v0.mixins.json into net.minecraft.item.ItemGroup +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:client.MixinItemGroup: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:client.MixinItemGroup->@Inject::isTopRow(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-item-groups-v0 does use it's CallbackInfoReturnable +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:client.MixinItemGroup->@Inject::getColumn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-item-groups-v0 does use it's CallbackInfoReturnable +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing StatusEffectInstanceMixin from apoli.mixins.json into net.minecraft.entity.effect.StatusEffectInstance +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:StatusEffectInstanceMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:46] [main/DEBUG] (FabricLoader/Mixin) Mixing ChestStateManagerMixin from mixins.reach-entity-attributes.json into net.minecraft.block.entity.ViewerCountManager +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) Mixing InventoryValidationMixin from mixins.reach-entity-attributes.json into net.minecraft.entity.player.PlayerInventory +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) Mixing CraftingResultSlotMixin from apoli.mixins.json into net.minecraft.screen.slot.CraftingResultSlot +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingResultSlotMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingResultSlotMixin->@Inject::testOnTakeItem(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingResultSlotMixin->@Inject::testOnTakeItem(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingResultSlotMixin->@Inject::testOnTakeItem(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) Mixing LootPoolEntryTypesAccessor from fabric-loot-tables-v1.mixins.json into net.minecraft.loot.entry.LootPoolEntryTypes +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:LootPoolEntryTypesAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method register(Ljava/lang/String;Lnet/minecraft/util/JsonSerializer;)Lnet/minecraft/loot/entry/LootPoolEntryType; to register_$md$cc481c$0 in fabric-loot-tables-v1.mixins.json:LootPoolEntryTypesAccessor +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) Mixing MixinMultiNoiseBiomeSource from fabric-biome-api-v1.mixins.json into net.minecraft.world.biome.source.MultiNoiseBiomeSource$Preset +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinMultiNoiseBiomeSource: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$appendNetherBiomes$1(Lnet/minecraft/util/registry/Registry;Ljava/util/List;Lnet/minecraft/util/registry/RegistryKey;Lnet/minecraft/world/biome/source/util/MultiNoiseUtil$NoiseHypercube;)V to mdcc481c$lambda$appendNetherBiomes$1$0 in fabric-biome-api-v1.mixins.json:MixinMultiNoiseBiomeSource +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$appendNetherBiomes$0(Lnet/minecraft/world/biome/Biome;)Lnet/minecraft/world/biome/Biome; to mdcc481c$lambda$appendNetherBiomes$0$1 in fabric-biome-api-v1.mixins.json:MixinMultiNoiseBiomeSource +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:MixinMultiNoiseBiomeSource->@Inject::appendNetherBiomes(Lnet/minecraft/util/registry/Registry;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-biome-api-v1 does use it's CallbackInfoReturnable +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) Mixing FlatChunkGeneratorConfigMixin from fabric-structure-api-v1.mixins.json into net.minecraft.world.gen.chunk.FlatChunkGeneratorConfig +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) fabric-structure-api-v1.mixins.json:FlatChunkGeneratorConfigMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) fabric-structure-api-v1.mixins.json:FlatChunkGeneratorConfigMixin->@Inject::createDefaultConfig(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-structure-api-v1 does use it's CallbackInfoReturnable +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) Mixing DefaultAttributeRegistryAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.entity.attribute.DefaultAttributeRegistry +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DefaultAttributeRegistryAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getRegistry()Ljava/util/Map; to getRegistry_$md$cc481c$0 in fabric-object-builder-v1.mixins.json:DefaultAttributeRegistryAccessor +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) Mixing DefaultAttributeRegistryMixin from fabric-object-builder-v1.mixins.json into net.minecraft.entity.attribute.DefaultAttributeRegistry +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DefaultAttributeRegistryMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [main/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:DefaultAttributeRegistryMixin->@Inject::injectAttributes(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-object-builder-api-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftClientMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.MinecraftClient +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftClientMixin from apoli.mixins.json into net.minecraft.client.MinecraftClient +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:MinecraftClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeEntitiesGlow$1(Lio/github/apace100/apoli/power/SelfGlowPower;)Z to mdcc481c$lambda$makeEntitiesGlow$1$0 in apoli.mixins.json:MinecraftClientMixin +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeEntitiesGlow$0(Lnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/EntityGlowPower;)Z to mdcc481c$lambda$makeEntitiesGlow$0$1 in apoli.mixins.json:MinecraftClientMixin +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinMinecraftClient from fabric-events-interaction-v0.mixins.json into net.minecraft.client.MinecraftClient +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinMinecraftClient: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MinecraftClientMixin from fabric-data-generation-api-v1.mixins.json into net.minecraft.client.MinecraftClient +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-data-generation-api-v1.mixins.json:client.MinecraftClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MinecraftClientMixin from fabric-command-api-v1.mixins.json into net.minecraft.client.MinecraftClient +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.MinecraftClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinMinecraftClient from fabric-registry-sync-v0.mixins.json into net.minecraft.client.MinecraftClient +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinMinecraftClient: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing accessor.MinecraftClientAccessor from fabric-networking-api-v1.mixins.json into net.minecraft.client.MinecraftClient +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:accessor.MinecraftClientAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MinecraftClientMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.client.MinecraftClient +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::onScreenRemove(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::onScreenRemove(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::onScreenRemove(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::onScreenRemoveBecauseStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::onScreenRemoveBecauseStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::onScreenRemoveBecauseStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::beforeScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::beforeScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::beforeScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::afterScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::afterScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::afterScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::beforeLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::beforeLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::beforeLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::afterLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::afterLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MinecraftClientMixin->@Inject::afterLoadingScreenTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:MinecraftClientMixin->@Inject::makeEntitiesGlow(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinMinecraftClient->@Inject::fabric_doItemPickWrapper(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-events-interaction-v0 does use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinMinecraftClient->@Inject::cancelItemPick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-events-interaction-v0 does use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-data-generation-api-v1.mixins.json:client.MinecraftClientMixin->@Inject::main(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-data-generation-api-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-data-generation-api-v1.mixins.json:client.MinecraftClientMixin->@Inject::main(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-data-generation-api-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-data-generation-api-v1.mixins.json:client.MinecraftClientMixin->@Inject::main(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-data-generation-api-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.MinecraftClientMixin->@Inject::onConstruct(Lnet/minecraft/client/RunArgs;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.MinecraftClientMixin->@Inject::onConstruct(Lnet/minecraft/client/RunArgs;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.MinecraftClientMixin->@Inject::onConstruct(Lnet/minecraft/client/RunArgs;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinMinecraftClient->@Inject::disconnectAfter(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinMinecraftClient->@Inject::disconnectAfter(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinMinecraftClient->@Inject::disconnectAfter(Lnet/minecraft/client/gui/screen/Screen;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStartTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStartTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStartTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onEndTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onEndTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onEndTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStopping(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.MinecraftClientMixin->@Inject::onStart(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ScreenAccessor from fabric-screen-api-v1.mixins.json into net.minecraft.client.gui.screen.Screen +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ScreenMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.gui.screen.Screen +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ScreenMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.gui.screen.Screen +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:ScreenMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin->@Inject::beforeInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin->@Inject::beforeInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin->@Inject::beforeInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin->@Inject::afterInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin->@Inject::afterInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:ScreenMixin->@Inject::afterInitScreen(Lnet/minecraft/client/MinecraftClient;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:ScreenMixin->@Inject::injectRenderTooltipLambda(Ljava/util/List;Lnet/minecraft/client/item/TooltipData;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinTitleScreen from mixins.modmenu.json into net.minecraft.client.gui.screen.TitleScreen +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing AspectsMixin from aspects.mixins.json into net.minecraft.client.gui.screen.TitleScreen +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) aspects.mixins.json:AspectsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) aspects.mixins.json:AspectsMixin->@Inject::init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod aspects doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) aspects.mixins.json:AspectsMixin->@Inject::init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod aspects has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) aspects.mixins.json:AspectsMixin->@Inject::init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod aspects won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinClientWorld from mixins.cardinal_components_entity.json into net.minecraft.client.world.ClientWorld +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:client.MixinClientWorld: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientWorldMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.client.world.ClientWorld +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:client.MixinClientWorld->@Inject::tick(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:client.MixinClientWorld->@Inject::tick(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:client.MixinClientWorld->@Inject::tick(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:client.MixinClientWorld->@Inject::tickRiding(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:client.MixinClientWorld->@Inject::tickRiding(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:client.MixinClientWorld->@Inject::tickRiding(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientWorldMixin->@Inject::startWorldTick(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing HandledScreenFocusedSlotAccessor from calio.mixins.json into net.minecraft.client.gui.screen.ingame.HandledScreen +[19:51:47] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:HandledScreenFocusedSlotAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing DynamicRegistryManagerAccessor from fabric-tag-extensions-v0.mixins.json into net.minecraft.util.registry.DynamicRegistryManager +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:DynamicRegistryManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getInfos()Ljava/util/Map; to getInfos_$md$cc481c$0 in fabric-tag-extensions-v0.mixins.json:DynamicRegistryManagerAccessor +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinDynamicRegistryManager from fabric-registry-sync-v0.mixins.json into net.minecraft.util.registry.DynamicRegistryManager +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinDynamicRegistryManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing DynamicRegistryManagerMixin from fabric-registry-sync-v0.mixins.json into net.minecraft.util.registry.DynamicRegistryManager +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:DynamicRegistryManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinDynamicRegistryManager->@Inject::setupBuiltInSync(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:DynamicRegistryManagerMixin->@Inject::onCreateImpl(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/registry/DynamicRegistryManager$Impl;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfoReturnable +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing modification.DynamicRegistryManagerImplMixin from fabric-biome-api-v1.mixins.json into net.minecraft.util.registry.DynamicRegistryManager$Impl +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:modification.DynamicRegistryManagerImplMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientBuiltinResourcePackProviderMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.resource.ClientBuiltinResourcePackProvider +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.ClientBuiltinResourcePackProviderMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.ClientBuiltinResourcePackProviderMixin->@Inject::addBuiltinResourcePacks(Ljava/util/function/Consumer;Lnet/minecraft/resource/ResourcePackProfile$Factory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.ClientBuiltinResourcePackProviderMixin->@Inject::addBuiltinResourcePacks(Ljava/util/function/Consumer;Lnet/minecraft/resource/ResourcePackProfile$Factory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.ClientBuiltinResourcePackProviderMixin->@Inject::addBuiltinResourcePacks(Ljava/util/function/Consumer;Lnet/minecraft/resource/ResourcePackProfile$Factory;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.ClientBuiltinResourcePackProviderMixin->@Inject::onSupplyZipProgrammerArtPack(Ljava/io/File;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 does use it's CallbackInfoReturnable +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.ClientBuiltinResourcePackProviderMixin->@Inject::onSupplyDirProgrammerArtPack(Ljava/io/File;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 does use it's CallbackInfoReturnable +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing DefaultResourcePackMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.DefaultResourcePack +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:DefaultResourcePackMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ResourcePackManagerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.ResourcePackManager +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ResourcePackManagerAccessor from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.ResourcePackManager +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackManagerMixin->@Inject::construct(Lnet/minecraft/resource/ResourcePackProfile$Factory;[Lnet/minecraft/resource/ResourcePackProvider;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackManagerMixin->@Inject::construct(Lnet/minecraft/resource/ResourcePackProfile$Factory;[Lnet/minecraft/resource/ResourcePackProvider;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackManagerMixin->@Inject::construct(Lnet/minecraft/resource/ResourcePackProfile$Factory;[Lnet/minecraft/resource/ResourcePackProvider;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ResourcePackProfileAccessor from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.ResourcePackProfile +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ResourcePackProfileAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing FileResourcePackProviderAccessor from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.FileResourcePackProvider +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:FileResourcePackProviderAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [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' +[19:51:48] [Render thread/DEBUG] (com.mojang.authlib.minecraft.client.MinecraftClient) Connecting to https://api.minecraftservices.com/player/attributes +[19:51:48] [Render thread/ERROR] (net.minecraft.client.MinecraftClient) Failed to verify authentication com.mojang.authlib.exceptions.InvalidCredentialsException: Status: 401 at com.mojang.authlib.exceptions.MinecraftClientHttpException.toAuthenticationException(MinecraftClientHttpException.java:56) ~[authlib-3.2.38.jar:?] at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:132) ~[authlib-3.2.38.jar:?] @@ -1213,968 +1213,971 @@ Caused by: com.mojang.authlib.exceptions.MinecraftClientHttpException: Status: 4 at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:48) ~[authlib-3.2.38.jar:?] at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:113) ~[authlib-3.2.38.jar:?] ... 13 more -[17:01:01] [Render thread/INFO] (net.minecraft.client.MinecraftClient) Setting user: Player131 -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyBindingAccessor from fabric-key-binding-api-v1.mixins.json into net.minecraft.client.option.KeyBinding -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:KeyBindingAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method fabric_getCategoryMap()Ljava/util/Map; to fabric_getCategoryMap_$md$f693ec$0 in fabric-key-binding-api-v1.mixins.json:KeyBindingAccessor -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyCodeAccessor from fabric-key-binding-api-v1.mixins.json into net.minecraft.client.option.KeyBinding -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:KeyCodeAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Entrypoint) Iterating over entrypoint 'main' -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.server.MinecraftServer -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$endResourceReload$0(Ljava/lang/Void;Ljava/lang/Throwable;)Ljava/lang/Void; to mdf693ec$lambda$endResourceReload$0$0 in fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.server.MinecraftServer -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:MinecraftServerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinMinecraftServer from fabric-tag-extensions-v0.mixins.json into net.minecraft.server.MinecraftServer -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinMinecraftServer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from fabric-gametest-api-v1.mixins.json into net.minecraft.server.MinecraftServer -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:MinecraftServerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::beforeSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::beforeSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::beforeSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::afterSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::afterSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::afterSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::beforeShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::beforeShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::beforeShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::afterShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::afterShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::afterShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onStartTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onStartTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onStartTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onEndTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onEndTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onEndTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onUnloadWorldAtShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/Iterator;Lnet/minecraft/server/world/ServerWorld;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onUnloadWorldAtShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/Iterator;Lnet/minecraft/server/world/ServerWorld;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onUnloadWorldAtShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/Iterator;Lnet/minecraft/server/world/ServerWorld;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::startResourceReload(Ljava/util/Collection;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfoReturnable -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::startResourceReload(Ljava/util/Collection;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::startResourceReload(Ljava/util/Collection;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfoReturnable as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::endResourceReload(Ljava/util/Collection;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-lifecycle-events-v1 does use it's CallbackInfoReturnable -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinMinecraftServer->@Inject::method_29440(Ljava/util/Collection;Lnet/minecraft/resource/ServerResourceManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-tag-extensions-v0 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinMinecraftServer->@Inject::method_29440(Ljava/util/Collection;Lnet/minecraft/resource/ServerResourceManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-tag-extensions-v0 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinMinecraftServer->@Inject::method_29440(Ljava/util/Collection;Lnet/minecraft/resource/ServerResourceManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-tag-extensions-v0 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:MinecraftServerMixin->@Inject::tickWorlds(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-gametest-api-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:MinecraftServerMixin->@Inject::tickWorlds(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-gametest-api-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:MinecraftServerMixin->@Inject::tickWorlds(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-gametest-api-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/INFO] (io.github.apace100.origins.Origins) Origins 1.3.0 is initializing. Have fun! -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing DamageSourceAccessor from calio.mixins.json into net.minecraft.entity.damage.DamageSource -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:DamageSourceAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method createDamageSource(Ljava/lang/String;)Lnet/minecraft/entity/damage/DamageSource; to createDamageSource_$md$f693ec$0 in calio.mixins.json:DamageSourceAccessor -[17:01:01] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:root has been marked as modded, registry entry apoli:power_factory was changed -[17:01:01] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:block has been marked as modded, registry entry origins:temporary_cobweb was changed -[17:01:01] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:item has been marked as modded, registry entry origins:orb_of_origin was changed -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerLoginNetworkHandlerMixin from fabric-networking-api-v1.mixins.json into net.minecraft.server.network.ServerLoginNetworkHandler -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing accessor.ServerLoginNetworkHandlerAccessor from fabric-networking-api-v1.mixins.json into net.minecraft.server.network.ServerLoginNetworkHandler -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:accessor.ServerLoginNetworkHandlerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::handleCustomPayloadReceivedAsync(Lnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 does use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::handlePlayTransitionNormal(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::handlePlayTransitionNormal(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::handlePlayTransitionNormal(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayNetworkHandlerMixin from fabric-networking-api-v1.mixins.json into net.minecraft.server.network.ServerPlayNetworkHandler -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayNetworkHandlerMixin from apoli.mixins.json into net.minecraft.server.network.ServerPlayNetworkHandler -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayNetworkHandlerMixin from mixins.reach-entity-attributes.json into net.minecraft.server.network.ServerPlayNetworkHandler -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::handleCustomPayloadReceivedAsync(Lnet/minecraft/network/packet/c2s/play/CustomPayloadC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 does use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::saveEndRespawnStatus(Lnet/minecraft/network/packet/c2s/play/ClientStatusC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::saveEndRespawnStatus(Lnet/minecraft/network/packet/c2s/play/ClientStatusC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::saveEndRespawnStatus(Lnet/minecraft/network/packet/c2s/play/ClientStatusC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::undoEndRespawnStatus(Lnet/minecraft/network/packet/c2s/play/ClientStatusC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::undoEndRespawnStatus(Lnet/minecraft/network/packet/c2s/play/ClientStatusC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::undoEndRespawnStatus(Lnet/minecraft/network/packet/c2s/play/ClientStatusC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:enchantment has been marked as modded, registry entry origins:water_protection was changed -[17:01:01] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:entity_type has been marked as modded, registry entry origins:enderian_pearl was changed -[17:01:01] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:loot_condition_type has been marked as modded, registry entry origins:origin was changed -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.loot.LootManager -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:KeyedResourceReloadListenerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinLootManager from fabric-loot-tables-v1.mixins.json into net.minecraft.loot.LootManager -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:MixinLootManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$apply$2(Lnet/minecraft/resource/ResourceManager;Ljava/util/Map;Lnet/minecraft/util/Identifier;Lnet/minecraft/loot/LootTable;)V to mdf693ec$lambda$apply$2$0 in fabric-loot-tables-v1.mixins.json:MixinLootManager -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$apply$1(Lnet/fabricmc/fabric/api/loot/v1/FabricLootSupplierBuilder;Lnet/minecraft/util/Identifier;)Lnet/minecraft/loot/LootTable; to mdf693ec$lambda$apply$1$1 in fabric-loot-tables-v1.mixins.json:MixinLootManager -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$apply$0(Ljava/util/Map;Lnet/minecraft/util/Identifier;Lnet/minecraft/loot/LootTable;)V to mdf693ec$lambda$apply$0$2 in fabric-loot-tables-v1.mixins.json:MixinLootManager -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:MixinLootManager->@Inject::apply(Ljava/util/Map;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/profiler/Profiler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-loot-tables-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:MixinLootManager->@Inject::apply(Ljava/util/Map;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/profiler/Profiler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-loot-tables-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:MixinLootManager->@Inject::apply(Ljava/util/Map;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/profiler/Profiler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-loot-tables-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LootSupplierBuilderHooks from fabric-loot-tables-v1.mixins.json into net.minecraft.loot.LootTable$Builder -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:LootSupplierBuilderHooks: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CriteriaAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.advancement.criterion.Criteria -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:CriteriaAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callRegister(Lnet/minecraft/advancement/criterion/Criterion;)Lnet/minecraft/advancement/criterion/Criterion; to callRegister_$md$f693ec$1 in fabric-object-builder-v1.mixins.json:CriteriaAccessor -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CriteriaRegistryInvoker from calio.mixins.json into net.minecraft.advancement.criterion.Criteria -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:CriteriaRegistryInvoker: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:recipe_serializer has been marked as modded, registry entry apoli:power_restricted was changed -[17:01:01] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:loot_function_type has been marked as modded, registry entry apoli:add_power was changed -[17:01:01] [Render thread/INFO] (io.github.apace100.apoli.Apoli) Apoli 2.2.0 has initialized. Ready to power up your game! -[17:01:01] [Render thread/INFO] (aspects) Hello Fabric world! -[17:01:01] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:attribute has been marked as modded, registry entry reach-entity-attributes:reach was changed -[17:01:01] [Render thread/DEBUG] (FabricLoader/Entrypoint) Iterating over entrypoint 'client' -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayNetworkHandlerMixin from fabric-networking-api-v1.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayNetworkHandlerMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinClientPlayNetworkHandler from fabric-content-registries-v0.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:client.MixinClientPlayNetworkHandler: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayNetworkHandlerMixin from fabric-mining-level-api-v1.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayNetworkHandlerMixin from fabric-command-api-v1.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::handleServerPlayReady(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::handleServerPlayReady(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::handleServerPlayReady(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::handleCustomPayload(Lnet/minecraft/network/packet/s2c/play/CustomPayloadS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 does use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onPlayerRespawn(Lnet/minecraft/network/packet/s2c/play/PlayerRespawnS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onPlayerRespawn(Lnet/minecraft/network/packet/s2c/play/PlayerRespawnS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onPlayerRespawn(Lnet/minecraft/network/packet/s2c/play/PlayerRespawnS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onGameJoin(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onGameJoin(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onGameJoin(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onClearWorld(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onClearWorld(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onClearWorld(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:client.MixinClientPlayNetworkHandler->@Inject::onSynchronizeTagsHook(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-content-registries-v0 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:client.MixinClientPlayNetworkHandler->@Inject::onSynchronizeTagsHook(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-content-registries-v0 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:client.MixinClientPlayNetworkHandler->@Inject::onSynchronizeTagsHook(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-content-registries-v0 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::fabric$clearMiningLevelCache(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-mining-level-api-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::fabric$clearMiningLevelCache(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-mining-level-api-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::fabric$clearMiningLevelCache(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-mining-level-api-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onOnCommandTree(Lnet/minecraft/network/packet/s2c/play/CommandTreeS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 doesn't use it's CallbackInfo -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onOnCommandTree(Lnet/minecraft/network/packet/s2c/play/CommandTreeS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 has 0 override(s) in child classes -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onOnCommandTree(Lnet/minecraft/network/packet/s2c/play/CommandTreeS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 won't be passed a CallbackInfo as a result -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing GameRendererMixin from apoli.mixins.json into net.minecraft.client.render.GameRenderer -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$getEyePos$7(Ljava/util/HashSet;Lnet/minecraft/util/math/BlockPos;)V to mdf693ec$lambda$getEyePos$7$0 in apoli.mixins.json:GameRendererMixin -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventThirdPerson$6(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdf693ec$lambda$preventThirdPerson$6$1 in apoli.mixins.json:GameRendererMixin -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$beforeRender$5(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdf693ec$lambda$beforeRender$5$2 in apoli.mixins.json:GameRendererMixin -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$beforeRender$4(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdf693ec$lambda$beforeRender$4$3 in apoli.mixins.json:GameRendererMixin -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$disableShaderToggle$3(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lio/github/apace100/apoli/power/ShaderPower;)V to mdf693ec$lambda$disableShaderToggle$3$4 in apoli.mixins.json:GameRendererMixin -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$renderOverlayPowers$2(ZZLio/github/apace100/apoli/power/OverlayPower;)Z to mdf693ec$lambda$renderOverlayPowers$2$5 in apoli.mixins.json:GameRendererMixin -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$loadShaderFromPower$1(Lio/github/apace100/apoli/power/ShaderPower;)V to mdf693ec$lambda$loadShaderFromPower$1$6 in apoli.mixins.json:GameRendererMixin -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$loadShaderFromPowerOnCameraEntity$0(Lio/github/apace100/apoli/power/ShaderPower;)V to mdf693ec$lambda$loadShaderFromPowerOnCameraEntity$0$7 in apoli.mixins.json:GameRendererMixin -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing GameRendererMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.render.GameRenderer -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.GameRendererMixin from mixins.reach-entity-attributes.json into net.minecraft.client.render.GameRenderer -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::loadShaderFromPowerOnCameraEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::loadShaderFromPowerOnCameraEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::loadShaderFromPowerOnCameraEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::loadShaderFromPower(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::loadShaderFromPower(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::loadShaderFromPower(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::renderOverlayPowers(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::renderOverlayPowers(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::renderOverlayPowers(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::fixHudWithShaderEnabled(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::fixHudWithShaderEnabled(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::fixHudWithShaderEnabled(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::disableShaderToggle(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::getNightVisionStrength(Lnet/minecraft/entity/LivingEntity;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::beforeRender(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::beforeRender(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::beforeRender(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin->@Inject::onBeforeRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin->@Inject::onBeforeRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin->@Inject::onBeforeRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin->@Inject::onAfterRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin->@Inject::onAfterRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin->@Inject::onAfterRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinSpriteAtlasTexture from fabric-renderer-api-v1.mixins.json into net.minecraft.client.texture.SpriteAtlasTexture -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinSpriteAtlasTexture: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinSpriteAtlasTexture from fabric-textures-v0.mixins.json into net.minecraft.client.texture.SpriteAtlasTexture -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-textures-v0.mixins.json:MixinSpriteAtlasTexture: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinSpriteAtlasTexture->@Inject::uploadHook(Lnet/minecraft/client/texture/SpriteAtlasTexture$Data;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinSpriteAtlasTexture->@Inject::uploadHook(Lnet/minecraft/client/texture/SpriteAtlasTexture$Data;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinSpriteAtlasTexture->@Inject::uploadHook(Lnet/minecraft/client/texture/SpriteAtlasTexture$Data;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-textures-v0.mixins.json:MixinSpriteAtlasTexture->@Inject::afterLoadSprites(Lnet/minecraft/resource/ResourceManager;Ljava/util/Set;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-textures-v0 does use it's CallbackInfoReturnable -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing PlayerScreenHandlerMixin from apoli.mixins.json into net.minecraft.screen.PlayerScreenHandler$1 -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerScreenHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventArmorInsertion$0(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/EquipmentSlot;Lio/github/apace100/apoli/power/RestrictArmorPower;)Z to mdf693ec$lambda$preventArmorInsertion$0$0 in apoli.mixins.json:PlayerScreenHandlerMixin -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerScreenHandlerMixin->@Inject::preventArmorInsertion(Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.render.item.ItemRenderer -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.KeyedResourceReloadListenerClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinItemRenderer from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.item.ItemRenderer -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinItemRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$0()Lnet/fabricmc/fabric/impl/client/indigo/renderer/render/ItemRenderContext; to mdf693ec$lambda$new$0$0 in fabric-renderer-indigo.mixins.json:MixinItemRenderer -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinItemRenderer->@Inject::hook_method_23179(Lnet/minecraft/item/ItemStack;Lnet/minecraft/client/render/model/json/ModelTransformation$Mode;ZLnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;IILnet/minecraft/client/render/model/BakedModel;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-indigo does use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientLoginNetworkHandlerMixin from fabric-networking-api-v1.mixins.json into net.minecraft.client.network.ClientLoginNetworkHandler -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::handleQueryRequest(Lnet/minecraft/network/packet/s2c/login/LoginQueryRequestS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 does use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::invokeLoginDisconnectEvent(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::invokeLoginDisconnectEvent(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::invokeLoginDisconnectEvent(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::handlePlayTransition(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::handlePlayTransition(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::handlePlayTransition(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ElytraFeatureRendererMixin from apoli.mixins.json into net.minecraft.client.render.entity.feature.ElytraFeatureRenderer -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ElytraFeatureRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CapeFeatureRendererMixin from apoli.mixins.json into net.minecraft.client.render.entity.feature.CapeFeatureRenderer -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CapeFeatureRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CapeFeatureRendererMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.feature.CapeFeatureRenderer -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:CapeFeatureRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CapeFeatureRendererMixin->@Inject::preventCapeRendering(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;ILnet/minecraft/client/network/AbstractClientPlayerEntity;FFFFFFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:CapeFeatureRendererMixin->@Inject::injectCapeRenderCheck(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;ILnet/minecraft/client/network/AbstractClientPlayerEntity;FFFFFFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinArmorFeatureRenderer from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.feature.ArmorFeatureRenderer -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinArmorFeatureRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinArmorFeatureRenderer->@Inject::renderArmor(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;Lnet/minecraft/entity/LivingEntity;Lnet/minecraft/entity/EquipmentSlot;ILnet/minecraft/client/render/entity/model/BipedEntityModel;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo -[17:01:02] [Render thread/INFO] (net.fabricmc.fabric.impl.client.indigo.Indigo) [Indigo] Registering Indigo renderer! -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ClientConnectionMixin from fabric-networking-api-v1.mixins.json into net.minecraft.network.ClientConnection -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::initAddedFields(Lnet/minecraft/network/NetworkSide;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::initAddedFields(Lnet/minecraft/network/NetworkSide;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::initAddedFields(Lnet/minecraft/network/NetworkSide;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::checkPacket(Lnet/minecraft/network/Packet;Lio/netty/util/concurrent/GenericFutureListener;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::checkPacket(Lnet/minecraft/network/Packet;Lio/netty/util/concurrent/GenericFutureListener;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::checkPacket(Lnet/minecraft/network/Packet;Lio/netty/util/concurrent/GenericFutureListener;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::checkPacket(Lnet/minecraft/network/Packet;Lio/netty/util/concurrent/GenericFutureListener;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::checkPacket(Lnet/minecraft/network/Packet;Lio/netty/util/concurrent/GenericFutureListener;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::checkPacket(Lnet/minecraft/network/Packet;Lio/netty/util/concurrent/GenericFutureListener;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::handleDisconnect(Lio/netty/channel/ChannelHandlerContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::handleDisconnect(Lio/netty/channel/ChannelHandlerContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::handleDisconnect(Lio/netty/channel/ChannelHandlerContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.GameOptionsMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.option.GameOptions -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.GameOptionsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinGameOptions from fabric-key-binding-api-v1.mixins.json into net.minecraft.client.option.GameOptions -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:MixinGameOptions: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.GameOptionsMixin->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.GameOptionsMixin->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.GameOptionsMixin->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.GameOptionsMixin->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.GameOptionsMixin->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.GameOptionsMixin->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:MixinGameOptions->@Inject::loadHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-key-binding-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:MixinGameOptions->@Inject::loadHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-key-binding-api-v1 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:MixinGameOptions->@Inject::loadHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-key-binding-api-v1 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/INFO] (net.minecraft.client.MinecraftClient) Backend library: LWJGL version 3.2.1 build 12 -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MouseMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.Mouse -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::beforeMouseClickedEvent([ZLnet/minecraft/client/gui/screen/Screen;DDILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 does use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::afterMouseClickedEvent([ZLnet/minecraft/client/gui/screen/Screen;DDILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::beforeMouseReleasedEvent([ZLnet/minecraft/client/gui/screen/Screen;DDILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 does use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::afterMouseReleasedEvent([ZLnet/minecraft/client/gui/screen/Screen;DDILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::beforeMouseScrollEvent(JDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;DDD)V from mod fabric-screen-api-v1 does use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::afterMouseScrollEvent(JDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;DDD)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::afterMouseScrollEvent(JDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;DDD)V from mod fabric-screen-api-v1 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::afterMouseScrollEvent(JDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;DDD)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyboardMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.Keyboard -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::beforeKeyPressedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 does use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::afterKeyPressedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::afterKeyPressedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::afterKeyPressedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::beforeKeyReleasedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 does use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::afterKeyReleasedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::afterKeyReleasedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::afterKeyReleasedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ReloadableResourceManagerImplMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.ReloadableResourceManagerImpl -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$getResourcePackNames$0(Lnet/minecraft/resource/ResourcePack;)Ljava/lang/String; to mdf693ec$lambda$getResourcePackNames$0$0 in fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin->@Inject::reload(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 doesn't use it's CallbackInfoReturnable -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin->@Inject::reload(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 has 0 override(s) in child classes -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin->@Inject::reload(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 won't be passed a CallbackInfoReturnable as a result -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin->@Inject::getResourcePackNames(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 does use it's CallbackInfoReturnable -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.resource.language.LanguageManager -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.KeyedResourceReloadListenerClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.texture.TextureManager -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.KeyedResourceReloadListenerClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.sound.SoundManager -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.KeyedResourceReloadListenerClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.FontManagerResourceReloadListenerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.font.FontManager$1 -[17:01:02] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.FontManagerResourceReloadListenerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinBlockColorMap from fabric-registry-sync-v0.mixins.json into net.minecraft.client.color.block.BlockColors -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinBlockColorMap: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinBlockColorMap from fabric-rendering-v1.mixins.json into net.minecraft.client.color.block.BlockColors -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinBlockColorMap: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinBlockColorMap->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinBlockColorMap->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinBlockColorMap->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinBlockColorMap->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-v1 does use it's CallbackInfoReturnable -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinItemColorMap from fabric-registry-sync-v0.mixins.json into net.minecraft.client.color.item.ItemColors -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemColorMap: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinItemColorMap from fabric-rendering-v1.mixins.json into net.minecraft.client.color.item.ItemColors -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinItemColorMap: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemColorMap->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemColorMap->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemColorMap->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinItemColorMap->@Inject::create(Lnet/minecraft/client/color/block/BlockColors;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-v1 does use it's CallbackInfoReturnable -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinBakedModelManager from fabric-models-v0.mixins.json into net.minecraft.client.render.model.BakedModelManager -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinBakedModelManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.render.model.BakedModelManager -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.KeyedResourceReloadListenerClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.render.block.BlockRenderManager -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.KeyedResourceReloadListenerClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinBuiltinModelItemRenderer from fabric-rendering-v1.mixins.json into net.minecraft.client.render.item.BuiltinModelItemRenderer -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinBuiltinModelItemRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinBuiltinModelItemRenderer->@Inject::fabric_onRender(Lnet/minecraft/item/ItemStack;Lnet/minecraft/client/render/model/json/ModelTransformation$Mode;Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinItemModelMap from fabric-registry-sync-v0.mixins.json into net.minecraft.client.render.item.ItemModels -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemModelMap: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemModelMap->@Inject::onInit(Lnet/minecraft/client/render/model/BakedModelManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemModelMap->@Inject::onInit(Lnet/minecraft/client/render/model/BakedModelManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemModelMap->@Inject::onInit(Lnet/minecraft/client/render/model/BakedModelManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing EntityRenderDispatcherMixin from apoli.mixins.json into net.minecraft.client.render.entity.EntityRenderDispatcher -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityRenderDispatcherMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventRenderingEntities$0(Lnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/PreventEntityRenderPower;)Z to mdf693ec$lambda$preventRenderingEntities$0$0 in apoli.mixins.json:EntityRenderDispatcherMixin -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityRenderDispatcherMixin->@Inject::preventRenderingEntities(Lnet/minecraft/entity/Entity;Lnet/minecraft/client/render/Frustum;DDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.HeldItemRendererMixin from fabric-item-api-v1.mixins.json into net.minecraft.client.render.item.HeldItemRenderer -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:client.HeldItemRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:client.HeldItemRendererMixin->@Inject::modifyProgressAnimation(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:client.HeldItemRendererMixin->@Inject::modifyProgressAnimation(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:client.HeldItemRendererMixin->@Inject::modifyProgressAnimation(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinModelLoader from fabric-models-v0.mixins.json into net.minecraft.client.render.model.ModelLoader -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader->@Inject::loadModelHook(Lnet/minecraft/util/Identifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-models-v0 does use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader->@Inject::addModelHook(Lnet/minecraft/client/util/ModelIdentifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-models-v0 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader->@Inject::addModelHook(Lnet/minecraft/client/util/ModelIdentifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-models-v0 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader->@Inject::addModelHook(Lnet/minecraft/client/util/ModelIdentifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-models-v0 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader->@Inject::initFinishedHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-models-v0 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader->@Inject::initFinishedHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-models-v0 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader->@Inject::initFinishedHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-models-v0 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinBakedModel from fabric-renderer-api-v1.mixins.json into net.minecraft.client.render.model.BakedModel -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinBakedModel: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LightmapTextureManagerMixin from apoli.mixins.json into net.minecraft.client.render.LightmapTextureManager -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LightmapTextureManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinBlockModelRenderer from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.block.BlockModelRenderer -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinBlockModelRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinBlockModelRenderer->@Inject::hookRender(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/client/render/model/BakedModel;Lnet/minecraft/block/BlockState;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumer;ZLjava/util/Random;JILorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-indigo does use it's CallbackInfoReturnable -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinBlockModelRenderer->@Inject::onInit(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-indigo doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinBlockModelRenderer->@Inject::onInit(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-indigo has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinBlockModelRenderer->@Inject::onInit(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-indigo won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinAmbientOcclusionCalculator from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.block.BlockModelRenderer$AmbientOcclusionCalculator -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinAmbientOcclusionCalculator: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinFluidRenderer from fabric-rendering-fluids-v1.mixins.json into net.minecraft.client.render.block.FluidRenderer -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$0()Ljava/lang/Boolean; to mdf693ec$lambda$new$0$0 in fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::onResourceReloadReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-fluids-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::onResourceReloadReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-fluids-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::onResourceReloadReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-fluids-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::tesselate(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-fluids-v1 does use it's CallbackInfoReturnable -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-fluids-v1 doesn't use it's CallbackInfoReturnable -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-fluids-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-fluids-v1 won't be passed a CallbackInfoReturnable as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-fluids-v1 doesn't use it's CallbackInfoReturnable -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-fluids-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-fluids-v1 won't be passed a CallbackInfoReturnable as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.render.WorldRenderer -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.KeyedResourceReloadListenerClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing WorldRendererMixin from apoli.mixins.json into net.minecraft.client.render.WorldRenderer -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:WorldRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinWorldRenderer from fabric-rendering-v1.mixins.json into net.minecraft.client.render.WorldRenderer -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:WorldRendererMixin->@Inject::updateChunksIfRenderChanged(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:WorldRendererMixin->@Inject::updateChunksIfRenderChanged(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:WorldRendererMixin->@Inject::updateChunksIfRenderChanged(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:WorldRendererMixin->@Inject::getEntity(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/profiler/Profiler;ZLnet/minecraft/util/math/Vec3d;DDDLnet/minecraft/util/math/Matrix4f;ZLnet/minecraft/client/render/Frustum;ZLnet/minecraft/client/render/VertexConsumerProvider$Immediate;Ljava/util/Iterator;Lnet/minecraft/entity/Entity;)V from mod apoli doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:WorldRendererMixin->@Inject::getEntity(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/profiler/Profiler;ZLnet/minecraft/util/math/Vec3d;DDDLnet/minecraft/util/math/Matrix4f;ZLnet/minecraft/client/render/Frustum;ZLnet/minecraft/client/render/VertexConsumerProvider$Immediate;Ljava/util/Iterator;Lnet/minecraft/entity/Entity;)V from mod apoli has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:WorldRendererMixin->@Inject::getEntity(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/profiler/Profiler;ZLnet/minecraft/util/math/Vec3d;DDDLnet/minecraft/util/math/Matrix4f;ZLnet/minecraft/client/render/Frustum;ZLnet/minecraft/client/render/VertexConsumerProvider$Immediate;Ljava/util/Iterator;Lnet/minecraft/entity/Entity;)V from mod apoli won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) ArgsClassGenerator assigning org.spongepowered.asm.synthetic.args.Args$1 for descriptor (IIII)V -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeRender(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeRender(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeRender(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterTerrainSetup(Lnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/Frustum;ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterTerrainSetup(Lnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/Frustum;ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterTerrainSetup(Lnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/Frustum;ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterTerrainSolid(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterTerrainSolid(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterTerrainSolid(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeRenderOutline(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeRenderOutline(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeRenderOutline(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onDrawBlockOutline(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/entity/Entity;DDDLnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onChunkDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onChunkDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onChunkDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onReload(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onReload(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onReload(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::renderWeather(Lnet/minecraft/client/render/LightmapTextureManager;FDDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::renderCloud(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/util/math/Matrix4f;FDDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::renderSky(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/util/math/Matrix4f;FLjava/lang/Runnable;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (com.mojang.blaze3d.systems.RenderSystem) Growing IndexBuffer: Old limit 0, new limit 9360. -[17:01:03] [Render thread/DEBUG] (com.mojang.blaze3d.systems.RenderSystem) Growing IndexBuffer: Old limit 0, new limit 20. -[17:01:03] [Render thread/DEBUG] (io.netty.util.internal.InternalThreadLocalMap) -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024 -[17:01:03] [Render thread/DEBUG] (io.netty.util.internal.InternalThreadLocalMap) -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096 -[17:01:03] [Render thread/DEBUG] (io.netty.util.internal.ThreadLocalRandom) -Dio.netty.initialSeedUniquifier: 0x2d29e972c6bf3fbc -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinParticleManager from fabric-registry-sync-v0.mixins.json into net.minecraft.client.particle.ParticleManager -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinParticleManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinParticleManager from fabric-particles-v1.mixins.json into net.minecraft.client.particle.ParticleManager -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.mixins.json:MixinParticleManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ParticleManagerAccessor from fabric-particles-v1.mixins.json into net.minecraft.client.particle.ParticleManager -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.mixins.json:ParticleManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinParticleManager->@Inject::onInit(Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/client/texture/TextureManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinParticleManager->@Inject::onInit(Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/client/texture/TextureManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinParticleManager->@Inject::onInit(Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/client/texture/TextureManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.mixins.json:MixinParticleManager->@Inject::onRegisterDefaultFactories(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-particles-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.mixins.json:MixinParticleManager->@Inject::onRegisterDefaultFactories(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-particles-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.mixins.json:MixinParticleManager->@Inject::onRegisterDefaultFactories(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-particles-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ParticleManagerAccessor$SimpleSpriteProviderAccessor from fabric-particles-v1.mixins.json into net.minecraft.client.particle.ParticleManager$SimpleSpriteProvider -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.mixins.json:ParticleManagerAccessor$SimpleSpriteProviderAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing InGameHudMixin from apoli.mixins.json into net.minecraft.client.gui.hud.InGameHud -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:InGameHudMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$renderOnHud$0(ZZLio/github/apace100/apoli/power/OverlayPower;)Z to mdf693ec$lambda$renderOnHud$0$0 in apoli.mixins.json:InGameHudMixin -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinInGameHud from fabric-rendering-v1.mixins.json into net.minecraft.client.gui.hud.InGameHud -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinInGameHud: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CustomNonItalicNameMixin$ModifyItalicDisplayHud from calio.mixins.json into net.minecraft.client.gui.hud.InGameHud -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:CustomNonItalicNameMixin$ModifyItalicDisplayHud: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:InGameHudMixin->@Inject::renderOnHud(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:InGameHudMixin->@Inject::renderOnHud(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:InGameHudMixin->@Inject::renderOnHud(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinInGameHud->@Inject::render(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinInGameHud->@Inject::render(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinInGameHud->@Inject::render(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinDebugHud from fabric-renderer-api-v1.debughud.mixins.json into net.minecraft.client.gui.hud.DebugHud -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.debughud.mixins.json:MixinDebugHud: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.debughud.mixins.json:MixinDebugHud->@Inject::getLeftText(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-api-v1 does use it's CallbackInfoReturnable -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.debughud.mixins.json:MixinDebugHud->@Inject::getLeftText(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-api-v1 does use it's CallbackInfoReturnable -[17:01:03] [Render thread/INFO] (net.minecraft.resource.ReloadableResourceManagerImpl) Reloading ResourceManager: Default, Fabric Mods (Fabric Events Interaction (v0), Fabric Data Generation API (v1), Fabric BlockRenderLayer Registration (v1), Fabric Containers (v0), Fabric Dimensions API (v1), Fabric Lifecycle Events (v1), Fabric Entity Events (v1), Fabric Object Builder API (v1), Fabric Rendering Fluids (v1), Fabric Content Registries (v0), Origins, Fabric Rendering (v0), Pal, Fabric Models (v0), Fabric Events Lifecycle (v0), Fabric Screen Handler API (v1), Fabric Crash Report Info (v1), Fabric Item API (v1), Fabric Resource Loader (v0), Fabric Loader, Fabric Key Binding API (v1), Fabric Loot Tables (v1), Fabric Structure API (v1), Fabric Networking (v0), Fabric Renderer API (v1), Fabric Game Rule API (v1), Fabric Registry Sync (v0), Fabric Tag Extensions (v0), Apoli, Fabric Renderer - Indigo, Fabric Biome API (v1), Cloth Config v6, Fabric Key Bindings (v0), Fabric API Lookup API (v1), Fabric Rendering (v1), Fabric Screen API (v1), Fabric Particles (v1), Fabric Tool Attribute API (v1), Fabric Mining Level API (v1), Fabric Object Builders (v0), Mod Menu, Fabric Item Groups (v0), Fabric Renderer Registries (v1), Aspects, Fabric Rendering Data Attachment (v1), Fabric Game Test API (v1), Fabric Command API (v1), Fabric Textures (v0), Fabric Mining Levels (v0), Fabric API Base, Fabric API, Fabric Transfer API (v1), Fabric Commands (v0), Calio, Reach Entity Attributes, Fabric Networking API (v1)) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing NamespaceResourceManagerAccessor from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.NamespaceResourceManager -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method fabric$accessor_getMetadataPath(Lnet/minecraft/util/Identifier;)Lnet/minecraft/util/Identifier; to fabric$accessor_getMetadataPath_$md$f693ec$0 in fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerAccessor -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing NamespaceResourceManagerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.NamespaceResourceManager -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerMixin->@Inject::onGetAllResources(Lnet/minecraft/util/Identifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/List;)V from mod fabric-resource-loader-v0 doesn't use it's CallbackInfoReturnable -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerMixin->@Inject::onGetAllResources(Lnet/minecraft/util/Identifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/List;)V from mod fabric-resource-loader-v0 has 0 override(s) in child classes -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerMixin->@Inject::onGetAllResources(Lnet/minecraft/util/Identifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/List;)V from mod fabric-resource-loader-v0 won't be passed a CallbackInfoReturnable as a result -[17:01:03] [Render thread/INFO] (aspects) This line is printed by an example mod mixin! -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing BackgroundRendererMixin from apoli.mixins.json into net.minecraft.client.render.BackgroundRenderer -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:BackgroundRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$redirectFogEnd$4(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdf693ec$lambda$redirectFogEnd$4$0 in apoli.mixins.json:BackgroundRendererMixin -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$redirectFogEnd$3(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdf693ec$lambda$redirectFogEnd$3$1 in apoli.mixins.json:BackgroundRendererMixin -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$redirectFogStart$2(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdf693ec$lambda$redirectFogStart$2$2 in apoli.mixins.json:BackgroundRendererMixin -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$redirectFogStart$1(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdf693ec$lambda$redirectFogStart$1$3 in apoli.mixins.json:BackgroundRendererMixin -[17:01:03] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyD$0(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdf693ec$lambda$modifyD$0$4 in apoli.mixins.json:BackgroundRendererMixin -[17:01:04] [Realms Notification Availability checker #1/INFO] (net.minecraft.client.realms.RealmsClient) Could not authorize you against Realms server: Invalid session id -[17:01:06] [Render thread/INFO] (net.minecraft.client.sound.SoundEngine) OpenAL initialized on device CoreAudio Default -[17:01:06] [Render thread/INFO] (net.minecraft.client.sound.SoundSystem) Sound engine started -[17:01:07] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 1024x1024x4 minecraft:textures/atlas/blocks.png-atlas -[17:01:07] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas -[17:01:07] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 1024x512x4 minecraft:textures/atlas/banner_patterns.png-atlas -[17:01:07] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 1024x512x4 minecraft:textures/atlas/shield_patterns.png-atlas -[17:01:07] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas -[17:01:07] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas -[17:01:07] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinMultipartBakedModel from fabric-renderer-api-v1.mixins.json into net.minecraft.client.render.model.MultipartBakedModel -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinMultipartBakedModel: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinMultipartBakedModel->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 doesn't use it's CallbackInfo -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinMultipartBakedModel->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 has 0 override(s) in child classes -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinMultipartBakedModel->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 won't be passed a CallbackInfo as a result -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinWeightedBakedModel from fabric-renderer-api-v1.mixins.json into net.minecraft.client.render.model.WeightedBakedModel -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinWeightedBakedModel: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinWeightedBakedModel->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 doesn't use it's CallbackInfo -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinWeightedBakedModel->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 has 0 override(s) in child classes -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinWeightedBakedModel->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 won't be passed a CallbackInfo as a result -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing EntityModelsMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.model.EntityModels -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:EntityModelsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:EntityModelsMixin->@Inject::registerExtraModelData(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lcom/google/common/collect/ImmutableMap$Builder;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfoReturnable -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing EntityModelLayersAccessor from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.model.EntityModelLayers -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:EntityModelLayersAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getLayers()Ljava/util/Set; to getLayers_$md$f693ec$0 in fabric-rendering-v1.mixins.json:EntityModelLayersAccessor -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinBlockEntityRenderers from fabric-rendering-v1.mixins.json into net.minecraft.client.render.block.entity.BlockEntityRendererFactories -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinBlockEntityRenderers: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$init$0(Lnet/minecraft/block/entity/BlockEntityType;Lnet/minecraft/client/render/block/entity/BlockEntityRendererFactory;)V to mdf693ec$lambda$init$0$0 in fabric-rendering-v1.mixins.json:MixinBlockEntityRenderers -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinBlockEntityRenderers->@Inject::init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinEntityRenderers from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.EntityRenderers -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinEntityRenderers: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$onRegisterRenderers$0(Lnet/minecraft/entity/EntityType;Lnet/minecraft/client/render/entity/EntityRendererFactory;)V to mdf693ec$lambda$onRegisterRenderers$0$0 in fabric-rendering-v1.mixins.json:MixinEntityRenderers -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinEntityRenderers->@Inject::onRegisterRenderers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityRendererMixin from apoli.mixins.json into net.minecraft.client.render.entity.LivingEntityRenderer -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$renderColorChangedModel$3(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdf693ec$lambda$renderColorChangedModel$3$0 in apoli.mixins.json:LivingEntityRendererMixin -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$renderColorChangedModel$2(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdf693ec$lambda$renderColorChangedModel$2$1 in apoli.mixins.json:LivingEntityRendererMixin -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$renderColorChangedModel$1(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdf693ec$lambda$renderColorChangedModel$1$2 in apoli.mixins.json:LivingEntityRendererMixin -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventFeatureRendering$0(Ljava/lang/Class;Lio/github/apace100/apoli/power/PreventFeatureRenderPower;)Z to mdf693ec$lambda$preventFeatureRendering$0$3 in apoli.mixins.json:LivingEntityRendererMixin -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityRendererAccessor from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.LivingEntityRenderer -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:LivingEntityRendererAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityRendererMixin->@Inject::letPlayersShakeTheirBodies(Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityRendererMixin->@Inject::preventPumpkinRendering(Lnet/minecraft/entity/LivingEntity;FFLnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) ArgsClassGenerator assigning org.spongepowered.asm.synthetic.args.Args$2 for descriptor (Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumer;IIFFFF)V -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing PlayerEntityRendererMixin from apoli.mixins.json into net.minecraft.client.render.entity.PlayerEntityRenderer -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeSleeveTranslucent$5(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdf693ec$lambda$makeSleeveTranslucent$5$0 in apoli.mixins.json:PlayerEntityRendererMixin -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeSleeveTranslucent$4(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdf693ec$lambda$makeSleeveTranslucent$4$1 in apoli.mixins.json:PlayerEntityRendererMixin -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeSleeveTranslucent$3(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdf693ec$lambda$makeSleeveTranslucent$3$2 in apoli.mixins.json:PlayerEntityRendererMixin -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeArmTranslucent$2(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdf693ec$lambda$makeArmTranslucent$2$3 in apoli.mixins.json:PlayerEntityRendererMixin -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeArmTranslucent$1(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdf693ec$lambda$makeArmTranslucent$1$4 in apoli.mixins.json:PlayerEntityRendererMixin -[17:01:07] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeArmTranslucent$0(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdf693ec$lambda$makeArmTranslucent$0$5 in apoli.mixins.json:PlayerEntityRendererMixin -[17:01:08] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas -[17:01:08] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas -[17:01:08] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas -[17:01:08] [Render thread/INFO] (aspects) This line is printed by an example mod mixin! -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.CreateWorldScreenMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.gui.screen.world.CreateWorldScreen -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.CreateWorldScreenMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.CreateWorldScreenMixin->@Inject::onScanPacks(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 doesn't use it's CallbackInfoReturnable -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.CreateWorldScreenMixin->@Inject::onScanPacks(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 has 0 override(s) in child classes -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.CreateWorldScreenMixin->@Inject::onScanPacks(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 won't be passed a CallbackInfoReturnable as a result -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing GameRulesAccessor from fabric-game-rule-api-v1.mixins.json into net.minecraft.world.GameRules -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-game-rule-api-v1.mixins.json:GameRulesAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callRegister(Ljava/lang/String;Lnet/minecraft/world/GameRules$Category;Lnet/minecraft/world/GameRules$Type;)Lnet/minecraft/world/GameRules$Key; to callRegister_$md$f693ec$0 in fabric-game-rule-api-v1.mixins.json:GameRulesAccessor -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getRuleTypes()Ljava/util/Map; to getRuleTypes_$md$f693ec$1 in fabric-game-rule-api-v1.mixins.json:GameRulesAccessor -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing RuleKeyMixin from fabric-game-rule-api-v1.mixins.json into net.minecraft.world.GameRules$Key -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-game-rule-api-v1.mixins.json:RuleKeyMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing BooleanRuleAccessor from fabric-game-rule-api-v1.mixins.json into net.minecraft.world.GameRules$BooleanRule -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-game-rule-api-v1.mixins.json:BooleanRuleAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method invokeCreate(ZLjava/util/function/BiConsumer;)Lnet/minecraft/world/GameRules$Type; to invokeCreate_$md$f693ec$0 in fabric-game-rule-api-v1.mixins.json:BooleanRuleAccessor -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing IntRuleAccessor from fabric-game-rule-api-v1.mixins.json into net.minecraft.world.GameRules$IntRule -[17:01:11] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-game-rule-api-v1.mixins.json:IntRuleAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:dimension_type has been marked as modded, registry entry minecraft:overworld was changed -[17:01:13] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/biome has been marked as modded, registry entry minecraft:the_void was changed -[17:01:13] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/configured_carver has been marked as modded, registry entry minecraft:cave was changed -[17:01:13] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/configured_feature has been marked as modded, registry entry minecraft:seagrass_short was changed -[17:01:13] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/placed_feature has been marked as modded, registry entry minecraft:crimson_fungi was changed -[17:01:13] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/configured_structure_feature has been marked as modded, registry entry minecraft:pillager_outpost was changed -[17:01:13] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/processor_list has been marked as modded, registry entry minecraft:empty was changed -[17:01:13] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/template_pool has been marked as modded, registry entry minecraft:empty was changed -[17:01:13] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/noise_settings has been marked as modded, registry entry minecraft:overworld was changed -[17:01:13] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/noise has been marked as modded, registry entry minecraft:temperature was changed -[17:01:13] [Render thread/DEBUG] (net.fabricmc.fabric.impl.registry.sync.DynamicRegistrySync) Setting up synchronisation of new BuiltinRegistries entries to the built-in DynamicRegistryManager -[17:01:13] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:dimension_type has been marked as modded, registry entry minecraft:overworld was changed -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinTagManager from fabric-tag-extensions-v0.mixins.json into net.minecraft.tag.TagManager -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagManager->@Inject::init(Ljava/util/Map;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-tag-extensions-v0 doesn't use it's CallbackInfo -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagManager->@Inject::init(Ljava/util/Map;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-tag-extensions-v0 has 0 override(s) in child classes -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagManager->@Inject::init(Ljava/util/Map;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-tag-extensions-v0 won't be passed a CallbackInfo as a result -[17:01:13] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/noise_settings has been marked as modded, registry entry minecraft:overworld was changed -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinRegistryOps from fabric-tag-extensions-v0.mixins.json into net.minecraft.util.dynamic.RegistryOps -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinRegistryOps: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing modification.RegistryOpsMixin from fabric-biome-api-v1.mixins.json into net.minecraft.util.dynamic.RegistryOps -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:modification.RegistryOpsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinRegistryOps->@Inject::afterDynamicRegistryLoaded(Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/registry/DynamicRegistryManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tag-extensions-v0 doesn't use it's CallbackInfoReturnable -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:modification.RegistryOpsMixin->@Inject::afterCreation(Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/registry/DynamicRegistryManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-biome-api-v1 doesn't use it's CallbackInfoReturnable -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing AccessorLevelStorageSession from fabric-registry-sync-v0.mixins.json into net.minecraft.world.level.storage.LevelStorage$Session -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:AccessorLevelStorageSession: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinLevelStorageSession from fabric-registry-sync-v0.mixins.json into net.minecraft.world.level.storage.LevelStorage$Session -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinLevelStorageSession: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinLevelStorageSession->@Inject::saveWorld(Lnet/minecraft/util/registry/DynamicRegistryManager;Lnet/minecraft/world/SaveProperties;Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinLevelStorageSession->@Inject::saveWorld(Lnet/minecraft/util/registry/DynamicRegistryManager;Lnet/minecraft/world/SaveProperties;Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinLevelStorageSession->@Inject::saveWorld(Lnet/minecraft/util/registry/DynamicRegistryManager;Lnet/minecraft/world/SaveProperties;Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfo as a result -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinLevelStorageSession->@Inject::readWorldProperties(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfoReturnable -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinLevelStorageSession->@Inject::readWorldProperties(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinLevelStorageSession->@Inject::readWorldProperties(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfoReturnable as a result -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinServerPlayerInteractionManager from fabric-events-interaction-v0.mixins.json into net.minecraft.server.network.ServerPlayerInteractionManager -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerInteractionManagerMixin from mixins.playerabilitylib.common.json into net.minecraft.server.network.ServerPlayerInteractionManager -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerInteractionManagerMixin: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerInteractionManagerAccessor from apoli.mixins.json into net.minecraft.server.network.ServerPlayerInteractionManager -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerInteractionManagerMixin from apoli.mixins.json into net.minecraft.server.network.ServerPlayerInteractionManager -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$executeBlockUseActions$4(Lnet/minecraft/util/hit/BlockHitResult;Lnet/minecraft/util/Hand;Lio/github/apace100/apoli/power/ActionOnBlockUsePower;)V to mdf693ec$lambda$executeBlockUseActions$4$0 in apoli.mixins.json:ServerPlayerInteractionManagerMixin -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$executeBlockUseActions$3(Lnet/minecraft/util/hit/BlockHitResult;Lnet/minecraft/util/Hand;Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ActionOnBlockUsePower;)Z to mdf693ec$lambda$executeBlockUseActions$3$1 in apoli.mixins.json:ServerPlayerInteractionManagerMixin -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventBlockInteraction$2(Lnet/minecraft/world/World;Lnet/minecraft/util/hit/BlockHitResult;Lio/github/apace100/apoli/power/PreventBlockUsePower;)Z to mdf693ec$lambda$preventBlockInteraction$2$2 in apoli.mixins.json:ServerPlayerInteractionManagerMixin -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$actionOnBlockBreak$1(ZZLnet/minecraft/util/math/BlockPos;Lio/github/apace100/apoli/power/ActionOnBlockBreakPower;)V to mdf693ec$lambda$actionOnBlockBreak$1$3 in apoli.mixins.json:ServerPlayerInteractionManagerMixin -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$actionOnBlockBreak$0(Lio/github/apace100/apoli/power/ActionOnBlockBreakPower;)Z to mdf693ec$lambda$actionOnBlockBreak$0$4 in apoli.mixins.json:ServerPlayerInteractionManagerMixin -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerInteractionManagerMixin from mixins.reach-entity-attributes.json into net.minecraft.server.network.ServerPlayerInteractionManager -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager->@Inject::startBlockBreak(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/network/packet/c2s/play/PlayerActionC2SPacket$Action;Lnet/minecraft/util/math/Direction;ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-events-interaction-v0 does use it's CallbackInfo -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager->@Inject::interactBlock(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager->@Inject::interactItem(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/Hand;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager->@Inject::breakBlock(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/block/Block;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager->@Inject::onBlockBroken(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/block/Block;Z)V from mod fabric-events-interaction-v0 doesn't use it's CallbackInfoReturnable -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager->@Inject::onBlockBroken(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/block/Block;Z)V from mod fabric-events-interaction-v0 has 0 override(s) in child classes -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager->@Inject::onBlockBroken(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/block/Block;Z)V from mod fabric-events-interaction-v0 won't be passed a CallbackInfoReturnable as a result -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerInteractionManagerMixin->@Inject::saveFlying(Lnet/minecraft/world/GameMode;Lnet/minecraft/world/GameMode;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib doesn't use it's CallbackInfo -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerInteractionManagerMixin->@Inject::saveFlying(Lnet/minecraft/world/GameMode;Lnet/minecraft/world/GameMode;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib has 0 override(s) in child classes -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerInteractionManagerMixin->@Inject::saveFlying(Lnet/minecraft/world/GameMode;Lnet/minecraft/world/GameMode;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib won't be passed a CallbackInfo as a result -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerInteractionManagerMixin->@Inject::keepAbilities(Lnet/minecraft/world/GameMode;Lnet/minecraft/world/GameMode;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib doesn't use it's CallbackInfo -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerInteractionManagerMixin->@Inject::keepAbilities(Lnet/minecraft/world/GameMode;Lnet/minecraft/world/GameMode;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib has 0 override(s) in child classes -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerInteractionManagerMixin->@Inject::keepAbilities(Lnet/minecraft/world/GameMode;Lnet/minecraft/world/GameMode;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib won't be passed a CallbackInfo as a result -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::cacheBlock(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::cacheBlock(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::cacheBlock(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::actionOnBlockBreak(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/block/Block;ZLnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Z)V from mod apoli doesn't use it's CallbackInfoReturnable -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::actionOnBlockBreak(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/block/Block;ZLnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Z)V from mod apoli has 0 override(s) in child classes -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::actionOnBlockBreak(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/block/Block;ZLnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Z)V from mod apoli won't be passed a CallbackInfoReturnable as a result -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::preventBlockInteraction(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::executeBlockUseActions(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::executeBlockUseActions(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::executeBlockUseActions(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.recipe.RecipeManager -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:KeyedResourceReloadListenerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing RecipeManagerAccessor from apoli.mixins.json into net.minecraft.recipe.RecipeManager -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:RecipeManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing RecipeManagerMixin from apoli.mixins.json into net.minecraft.recipe.RecipeManager -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:RecipeManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$prioritizeModifiedRecipes$1(Lnet/minecraft/recipe/Recipe;)Z to mdf693ec$lambda$prioritizeModifiedRecipes$1$0 in apoli.mixins.json:RecipeManagerMixin -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$prioritizeModifiedRecipes$0(Lnet/minecraft/recipe/RecipeType;Lnet/minecraft/world/World;Lnet/minecraft/inventory/Inventory;Lnet/minecraft/recipe/Recipe;)Ljava/util/stream/Stream; to mdf693ec$lambda$prioritizeModifiedRecipes$0$1 in apoli.mixins.json:RecipeManagerMixin -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:RecipeManagerMixin->@Inject::prioritizeModifiedRecipes(Lnet/minecraft/recipe/RecipeType;Lnet/minecraft/inventory/Inventory;Lnet/minecraft/world/World;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinLootPool from fabric-loot-tables-v1.mixins.json into net.minecraft.loot.LootPool -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:MixinLootPool: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinLootSupplier from fabric-loot-tables-v1.mixins.json into net.minecraft.loot.LootTable -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:MixinLootSupplier: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.server.ServerAdvancementLoader -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:KeyedResourceReloadListenerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.tag.TagManagerLoader -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:KeyedResourceReloadListenerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinTagManagerLoader from fabric-tag-extensions-v0.mixins.json into net.minecraft.tag.TagManagerLoader -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagManagerLoader: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagManagerLoader->@Inject::method_33179(Lnet/minecraft/resource/ResourceManager;Ljava/util/concurrent/Executor;Ljava/util/List;Lnet/minecraft/tag/RequiredTagList;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-tag-extensions-v0 does use it's CallbackInfo -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CommandManagerMixin from fabric-gametest-api-v1.mixins.json into net.minecraft.server.command.CommandManager -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:CommandManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CommandManagerMixin from fabric-command-api-v1.mixins.json into net.minecraft.server.command.CommandManager -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:CommandManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:CommandManagerMixin->@Inject::construct(Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-gametest-api-v1 doesn't use it's CallbackInfo -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:CommandManagerMixin->@Inject::construct(Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-gametest-api-v1 has 0 override(s) in child classes -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:CommandManagerMixin->@Inject::construct(Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-gametest-api-v1 won't be passed a CallbackInfo as a result -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:CommandManagerMixin->@Inject::fabric_addCommands(Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 doesn't use it's CallbackInfo -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:CommandManagerMixin->@Inject::fabric_addCommands(Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 has 0 override(s) in child classes -[17:01:13] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:CommandManagerMixin->@Inject::fabric_addCommands(Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 won't be passed a CallbackInfo as a result -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing GameRuleCommandAccessor from fabric-game-rule-api-v1.mixins.json into net.minecraft.server.command.GameRuleCommand -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-game-rule-api-v1.mixins.json:GameRuleCommandAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method invokeExecuteSet(Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/world/GameRules$Key;)I to invokeExecuteSet_$md$f693ec$0 in fabric-game-rule-api-v1.mixins.json:GameRuleCommandAccessor -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method invokeExecuteQuery(Lnet/minecraft/server/command/ServerCommandSource;Lnet/minecraft/world/GameRules$Key;)I to invokeExecuteQuery_$md$f693ec$1 in fabric-game-rule-api-v1.mixins.json:GameRuleCommandAccessor -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing GameRuleCommandVisitorMixin from fabric-game-rule-api-v1.mixins.json into net.minecraft.server.command.GameRuleCommand$1 -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-game-rule-api-v1.mixins.json:GameRuleCommandVisitorMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-game-rule-api-v1.mixins.json:GameRuleCommandVisitorMixin->@Inject::onRegisterCommand(Lnet/minecraft/world/GameRules$Key;Lnet/minecraft/world/GameRules$Type;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-game-rule-api-v1 does use it's CallbackInfo -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing HelpCommandAccessor from fabric-command-api-v1.mixins.json into net.minecraft.server.command.HelpCommand -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:HelpCommandAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getFailedException()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; to getFailedException_$md$f693ec$0 in fabric-command-api-v1.mixins.json:HelpCommandAccessor -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing TeleportCommandMixin from fabric-entity-events-v1.mixins.json into net.minecraft.server.command.TeleportCommand -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:TeleportCommandMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:TeleportCommandMixin->@Inject::afterEntityTeleportedToWorld(Lnet/minecraft/server/command/ServerCommandSource;Lnet/minecraft/entity/Entity;Lnet/minecraft/server/world/ServerWorld;DDDLjava/util/Set;FFLjava/lang/Object;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;FFFLnet/minecraft/entity/Entity;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo -[17:01:14] [Render thread/WARN] (net.minecraft.server.command.CommandManager) Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0] -[17:01:14] [Render thread/WARN] (net.minecraft.server.command.CommandManager) Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0] -[17:01:14] [Render thread/WARN] (net.minecraft.server.command.CommandManager) Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498] -[17:01:14] [Render thread/WARN] (net.minecraft.server.command.CommandManager) Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498] -[17:01:14] [Render thread/WARN] (net.minecraft.server.command.CommandManager) Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0] -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing TestFunctionsMixin from fabric-gametest-api-v1.mixins.json into net.minecraft.test.TestFunctions -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:TestFunctionsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:TestFunctionsMixin->@Inject::getTestFunction(Ljava/lang/reflect/Method;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-gametest-api-v1 does use it's CallbackInfoReturnable -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.server.function.FunctionLoader -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:KeyedResourceReloadListenerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:14] [Render thread/INFO] (net.minecraft.resource.ReloadableResourceManagerImpl) Reloading ResourceManager: Default, Fabric Mods (Origins, Apoli, Fabric Tool Attribute API (v1), Aspects, Fabric Game Test API (v1)) -[17:01:14] [Worker-Main-21/DEBUG] (FabricLoader/Mixin) Mixing TagBuilderMixin from fabric-data-generation-api-v1.mixins.json into net.minecraft.tag.Tag$Builder -[17:01:14] [Worker-Main-21/DEBUG] (FabricLoader/Mixin) fabric-data-generation-api-v1.mixins.json:TagBuilderMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:14] [Worker-Main-21/DEBUG] (FabricLoader/Mixin) Mixing MixinTagBuilder from fabric-tag-extensions-v0.mixins.json into net.minecraft.tag.Tag$Builder -[17:01:14] [Worker-Main-21/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagBuilder: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:14] [Worker-Main-21/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagBuilder->@Inject::onFromJsonClear(Lcom/google/gson/JsonObject;Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tag-extensions-v0 doesn't use it's CallbackInfoReturnable -[17:01:14] [Worker-Main-21/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagBuilder->@Inject::onFromJsonClear(Lcom/google/gson/JsonObject;Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tag-extensions-v0 has 0 override(s) in child classes -[17:01:14] [Worker-Main-21/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagBuilder->@Inject::onFromJsonClear(Lcom/google/gson/JsonObject;Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tag-extensions-v0 won't be passed a CallbackInfoReturnable as a result -[17:01:14] [Render thread/INFO] (net.minecraft.recipe.RecipeManager) Loaded 7 recipes -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LootPoolBuilderHooks from fabric-loot-tables-v1.mixins.json into net.minecraft.loot.LootPool$Builder -[17:01:14] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:LootPoolBuilderHooks: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:14] [Render thread/INFO] (net.minecraft.advancement.AdvancementManager) Loaded 1143 advancements -[17:01:14] [Render thread/INFO] (io.github.apace100.apoli.Apoli) Finished loading powers from data files. Registry contains 99 powers. -[17:01:14] [Render thread/ERROR] (io.github.apace100.origins.Origins) Origin "aspects:cryodisabled" contained unregistered power: "aspects:frost_walker" -[17:01:14] [Render thread/ERROR] (io.github.apace100.origins.Origins) Origin "aspects:cryodisabled" contained unregistered power: "aspects:cryo_secondary" -[17:01:14] [Render thread/ERROR] (io.github.apace100.origins.Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:water_breathing" -[17:01:14] [Render thread/ERROR] (io.github.apace100.origins.Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:constitution" -[17:01:14] [Render thread/ERROR] (io.github.apace100.origins.Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:fire_damage" -[17:01:14] [Render thread/INFO] (io.github.apace100.origins.Origins) Finished loading origins from data files. Registry contains 15 origins. -[17:01:14] [Render thread/INFO] (io.github.apace100.origins.Origins) Trying to read layer file: aspects:elements -[17:01:14] [Render thread/INFO] (io.github.apace100.origins.Origins) Trying to read layer file: origins:origin -[17:01:14] [Render thread/INFO] (io.github.apace100.origins.Origins) Trying to read layer file: aspects:origins -[17:01:14] [Render thread/INFO] (io.github.apace100.origins.Origins) Finished loading origin layers from data files. Read 3 layers. -[17:01:14] [Render thread/INFO] (net.fabricmc.fabric.impl.biome.modification.BiomeModificationImpl) Applied 0 biome modifications to 0 of 61 new biomes in 1.779 ms -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Reading registry data from /Users/adellanicholson/Documents/Aspects/run/saves/New World/data/fabricRegistry.dat -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Reading registry data from /Users/adellanicholson/Documents/Aspects/run/saves/New World/data/fabricRegistry.dat.1 -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Reading registry data from /Users/adellanicholson/Documents/Aspects/run/saves/New World/data/fabricRegistry.dat.2 -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Starting registry save -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:game_event -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:sound_event -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:fluid -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:mob_effect -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:enchantment -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:entity_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:item -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:potion -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:particle_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block_entity_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:motive -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:custom_stat -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:chunk_status -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:rule_test -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:pos_rule_test -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:menu -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:recipe_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:recipe_serializer -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:attribute -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:position_source_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:stat_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:villager_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:villager_profession -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:point_of_interest_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:memory_module_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:sensor_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:schedule -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:activity -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_pool_entry_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_function_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_condition_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_number_provider_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_nbt_provider_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_score_provider_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:float_provider_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:int_provider_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:height_provider_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block_predicate_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/carver -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/feature -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_feature -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_piece -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/placement_modifier_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/block_state_provider_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/foliage_placer_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/trunk_placer_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/tree_decorator_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/feature_size_type -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/biome_source -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/chunk_generator -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/material_condition -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/material_rule -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_processor -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_pool_element -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:power_factory -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:entity_condition -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:bientity_condition -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:item_condition -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:block_condition -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:damage_condition -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:fluid_condition -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:biome_condition -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:entity_action -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:item_action -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:block_action -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:bientity_action -[17:01:14] [Render thread/DEBUG] (FabricRegistrySync) Not saving empty registry data -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:dimension has been marked as modded, registry entry minecraft:overworld was changed -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:dimension has been marked as modded, registry entry minecraft:overworld was changed -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Starting registry save -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:game_event -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:sound_event -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:fluid -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:mob_effect -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:enchantment -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:entity_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:item -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:potion -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:particle_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block_entity_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:motive -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:custom_stat -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:chunk_status -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:rule_test -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:pos_rule_test -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:menu -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:recipe_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:recipe_serializer -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:attribute -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:position_source_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:stat_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:villager_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:villager_profession -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:point_of_interest_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:memory_module_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:sensor_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:schedule -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:activity -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_pool_entry_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_function_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_condition_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_number_provider_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_nbt_provider_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_score_provider_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:float_provider_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:int_provider_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:height_provider_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block_predicate_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/carver -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/feature -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_feature -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_piece -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/placement_modifier_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/block_state_provider_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/foliage_placer_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/trunk_placer_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/tree_decorator_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/feature_size_type -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/biome_source -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/chunk_generator -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/material_condition -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/material_rule -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_processor -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_pool_element -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:power_factory -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:entity_condition -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:bientity_condition -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:item_condition -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:block_condition -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:damage_condition -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:fluid_condition -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:biome_condition -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:entity_action -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:item_action -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:block_action -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:bientity_action -[17:01:15] [Render thread/DEBUG] (FabricRegistrySync) Not saving empty registry data -[17:01:16] [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' -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LoginMixin from apoli.mixins.json into net.minecraft.server.PlayerManager -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$syncPowerTypes$1(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/server/network/ServerPlayerEntity;)V to mdf693ec$lambda$syncPowerTypes$1$0 in apoli.mixins.json:LoginMixin -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$syncPowerTypes$0(Lnet/minecraft/network/PacketByteBuf;Ljava/util/Map$Entry;)V to mdf693ec$lambda$syncPowerTypes$0$1 in apoli.mixins.json:LoginMixin -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing PlayerManagerMixin from fabric-entity-events-v1.mixins.json into net.minecraft.server.PlayerManager -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:PlayerManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LoginMixin from origins.mixins.json into net.minecraft.server.PlayerManager -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:LoginMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$openOriginsGui$2(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/server/network/ServerPlayerEntity;)V to mdf693ec$lambda$openOriginsGui$2$2 in origins.mixins.json:LoginMixin -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$openOriginsGui$1(Lnet/minecraft/network/PacketByteBuf;Lio/github/apace100/origins/component/OriginComponent;Lio/github/apace100/origins/origin/OriginLayer;)V to mdf693ec$lambda$openOriginsGui$1$3 in origins.mixins.json:LoginMixin -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$openOriginsGui$0(Lnet/minecraft/network/PacketByteBuf;Ljava/util/Map$Entry;)V to mdf693ec$lambda$openOriginsGui$0$4 in origins.mixins.json:LoginMixin -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinPlayerManager from fabric-registry-sync-v0.mixins.json into net.minecraft.server.PlayerManager -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinPlayerManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing common.MixinPlayerManager from mixins.cardinal_components_entity.json into net.minecraft.server.PlayerManager -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing RegistrySyncMixin from calio.mixins.json into net.minecraft.server.PlayerManager -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:RegistrySyncMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing PlayerManagerMixin from fabric-networking-api-v1.mixins.json into net.minecraft.server.PlayerManager -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:PlayerManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::syncPowerTypes(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::syncPowerTypes(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::syncPowerTypes(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokeOnRemovedCallback(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokeOnRemovedCallback(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokeOnRemovedCallback(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokePowerRemovedCallback(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokePowerRemovedCallback(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokePowerRemovedCallback(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokePowerRespawnCallback(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/math/BlockPos;FZLnet/minecraft/server/world/ServerWorld;Ljava/util/Optional;Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/server/network/ServerPlayerEntity;Z)V from mod apoli doesn't use it's CallbackInfoReturnable -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokePowerRespawnCallback(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/math/BlockPos;FZLnet/minecraft/server/world/ServerWorld;Ljava/util/Optional;Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/server/network/ServerPlayerEntity;Z)V from mod apoli has 0 override(s) in child classes -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokePowerRespawnCallback(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/math/BlockPos;FZLnet/minecraft/server/world/ServerWorld;Ljava/util/Optional;Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/server/network/ServerPlayerEntity;Z)V from mod apoli won't be passed a CallbackInfoReturnable as a result -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:PlayerManagerMixin->@Inject::afterRespawn(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:LoginMixin->@Inject::openOriginsGui(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins doesn't use it's CallbackInfo -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:LoginMixin->@Inject::openOriginsGui(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins has 0 override(s) in child classes -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:LoginMixin->@Inject::openOriginsGui(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins won't be passed a CallbackInfo as a result -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinPlayerManager->@Inject::onPlayerConnect(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinPlayerManager->@Inject::onPlayerConnect(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinPlayerManager->@Inject::onPlayerConnect(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfo as a result -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager->@Inject::onPlayerLogIn(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager->@Inject::onPlayerLogIn(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager->@Inject::onPlayerLogIn(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager->@Inject::sendPlayerStatus(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager->@Inject::sendPlayerStatus(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager->@Inject::sendPlayerStatus(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager->@Inject::respawnPlayer(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod cardinal-components-entity does use it's CallbackInfoReturnable -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:RegistrySyncMixin->@Inject::autoSyncDataObjectRegistries(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod calio doesn't use it's CallbackInfo -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:RegistrySyncMixin->@Inject::autoSyncDataObjectRegistries(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod calio has 0 override(s) in child classes -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:RegistrySyncMixin->@Inject::autoSyncDataObjectRegistries(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod calio won't be passed a CallbackInfo as a result -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:PlayerManagerMixin->@Inject::handlePlayerConnection(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:PlayerManagerMixin->@Inject::handlePlayerConnection(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:PlayerManagerMixin->@Inject::handlePlayerConnection(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:16] [Server thread/INFO] (net.minecraft.server.integrated.IntegratedServer) Starting integrated minecraft server version 1.18 -[17:01:16] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Generating keypair -[17:01:17] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing ServerWorldEntityLoaderMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.server.world.ServerWorld$ServerEntityHandler -[17:01:17] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldEntityLoaderMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:17] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldEntityLoaderMixin->@Inject::invokeEntityLoadEvent(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:17] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldEntityLoaderMixin->@Inject::invokeEntityUnloadEvent(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:17] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing ThreadedAnvilChunkStorageMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.server.world.ThreadedAnvilChunkStorage -[17:01:17] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ThreadedAnvilChunkStorageMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:17] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing accessor.ThreadedAnvilChunkStorageAccessor from fabric-networking-api-v1.mixins.json into net.minecraft.server.world.ThreadedAnvilChunkStorage -[17:01:17] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:accessor.ThreadedAnvilChunkStorageAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:17] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ThreadedAnvilChunkStorageMixin->@Inject::onChunkUnload(Lnet/minecraft/server/world/ChunkHolder;Ljava/util/concurrent/CompletableFuture;JLnet/minecraft/world/chunk/Chunk;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:17] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ThreadedAnvilChunkStorageMixin->@Inject::onChunkUnload(Lnet/minecraft/server/world/ChunkHolder;Ljava/util/concurrent/CompletableFuture;JLnet/minecraft/world/chunk/Chunk;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:17] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ThreadedAnvilChunkStorageMixin->@Inject::onChunkUnload(Lnet/minecraft/server/world/ChunkHolder;Ljava/util/concurrent/CompletableFuture;JLnet/minecraft/world/chunk/Chunk;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:17] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ThreadedAnvilChunkStorageMixin->@Inject::onChunkLoad(Lnet/minecraft/server/world/ChunkHolder;Lnet/minecraft/world/chunk/Chunk;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-lifecycle-events-v1 does use it's CallbackInfoReturnable -[17:01:17] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Preparing start region for dimension minecraft:overworld -[17:01:18] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing ChunkSerializerMixin from fabric-structure-api-v1.mixins.json into net.minecraft.world.ChunkSerializer -[17:01:18] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-structure-api-v1.mixins.json:ChunkSerializerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:18] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$static$0()Ljava/lang/Boolean; to mdf693ec$lambda$static$0$0 in fabric-structure-api-v1.mixins.json:ChunkSerializerMixin -[17:01:18] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-structure-api-v1.mixins.json:ChunkSerializerMixin->@Inject::removeNullKeys(Lnet/minecraft/util/math/ChunkPos;Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-structure-api-v1 does use it's CallbackInfoReturnable -[17:01:18] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% -[17:01:18] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% -[17:01:18] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% -[17:01:18] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 4% -[17:01:24] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 35% -[17:01:24] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 58% -[17:01:25] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 63% -[17:01:25] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 88% -[17:01:26] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Time elapsed: 8776 ms -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing accessor.EntityTrackerAccessor from fabric-networking-api-v1.mixins.json into net.minecraft.server.world.ThreadedAnvilChunkStorage$EntityTracker -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:accessor.EntityTrackerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing common.MixinEntityTrackerEntry from mixins.cardinal_components_entity.json into net.minecraft.server.network.EntityTrackerEntry -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntityTrackerEntry: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing EntityTrackerEntryMixin from fabric-networking-api-v1.mixins.json into net.minecraft.server.network.EntityTrackerEntry -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:EntityTrackerEntryMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntityTrackerEntry->@Inject::onStartedTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntityTrackerEntry->@Inject::onStartedTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntityTrackerEntry->@Inject::onStartedTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:EntityTrackerEntryMixin->@Inject::onStartTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:EntityTrackerEntryMixin->@Inject::onStartTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:EntityTrackerEntryMixin->@Inject::onStartTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:EntityTrackerEntryMixin->@Inject::onStopTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:EntityTrackerEntryMixin->@Inject::onStopTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:EntityTrackerEntryMixin->@Inject::onStopTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result -[17:01:26] [Server thread/INFO] (net.minecraft.server.integrated.IntegratedServer) Changing view distance to 12, from 10 -[17:01:26] [Server thread/INFO] (net.minecraft.server.integrated.IntegratedServer) Changing simulation distance to 12, from 0 -[17:01:26] [Render thread/DEBUG] (io.netty.channel.MultithreadEventLoopGroup) -Dio.netty.eventLoopThreads: 32 -[17:01:26] [Render thread/DEBUG] (io.netty.channel.nio.NioEventLoop) -Dio.netty.noKeySetOptimization: false -[17:01:26] [Render thread/DEBUG] (io.netty.channel.nio.NioEventLoop) -Dio.netty.selectorAutoRebuildThreshold: 512 -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) -Dio.netty.noUnsafe: false -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) Java version: 17 -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) sun.misc.Unsafe.theUnsafe: available -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) sun.misc.Unsafe.copyMemory: available -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) java.nio.Buffer.address: available -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) direct buffer constructor: unavailable +[19:51:48] [Render thread/INFO] (net.minecraft.client.MinecraftClient) Setting user: Player600 +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyBindingAccessor from fabric-key-binding-api-v1.mixins.json into net.minecraft.client.option.KeyBinding +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:KeyBindingAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method fabric_getCategoryMap()Ljava/util/Map; to fabric_getCategoryMap_$md$cc481c$0 in fabric-key-binding-api-v1.mixins.json:KeyBindingAccessor +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyCodeAccessor from fabric-key-binding-api-v1.mixins.json into net.minecraft.client.option.KeyBinding +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:KeyCodeAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Entrypoint) Iterating over entrypoint 'main' +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.server.MinecraftServer +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:MinecraftServerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinMinecraftServer from fabric-tag-extensions-v0.mixins.json into net.minecraft.server.MinecraftServer +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinMinecraftServer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from fabric-gametest-api-v1.mixins.json into net.minecraft.server.MinecraftServer +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:MinecraftServerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MinecraftServerMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.server.MinecraftServer +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$endResourceReload$0(Ljava/lang/Void;Ljava/lang/Throwable;)Ljava/lang/Void; to mdcc481c$lambda$endResourceReload$0$0 in fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinMinecraftServer->@Inject::method_29440(Ljava/util/Collection;Lnet/minecraft/resource/ServerResourceManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-tag-extensions-v0 doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinMinecraftServer->@Inject::method_29440(Ljava/util/Collection;Lnet/minecraft/resource/ServerResourceManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-tag-extensions-v0 has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinMinecraftServer->@Inject::method_29440(Ljava/util/Collection;Lnet/minecraft/resource/ServerResourceManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-tag-extensions-v0 won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:MinecraftServerMixin->@Inject::tickWorlds(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-gametest-api-v1 doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:MinecraftServerMixin->@Inject::tickWorlds(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-gametest-api-v1 has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:MinecraftServerMixin->@Inject::tickWorlds(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-gametest-api-v1 won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::beforeSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::beforeSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::beforeSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::afterSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::afterSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::afterSetupServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::beforeShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::beforeShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::beforeShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::afterShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::afterShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::afterShutdownServer(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onStartTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onStartTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onStartTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onEndTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onEndTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onEndTick(Ljava/util/function/BooleanSupplier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onUnloadWorldAtShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/Iterator;Lnet/minecraft/server/world/ServerWorld;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onUnloadWorldAtShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/Iterator;Lnet/minecraft/server/world/ServerWorld;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::onUnloadWorldAtShutdown(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Ljava/util/Iterator;Lnet/minecraft/server/world/ServerWorld;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::startResourceReload(Ljava/util/Collection;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfoReturnable +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::startResourceReload(Ljava/util/Collection;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::startResourceReload(Ljava/util/Collection;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfoReturnable as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:MinecraftServerMixin->@Inject::endResourceReload(Ljava/util/Collection;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-lifecycle-events-v1 does use it's CallbackInfoReturnable +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayNetworkHandlerMixin from fabric-networking-api-v1.mixins.json into net.minecraft.server.network.ServerPlayNetworkHandler +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayNetworkHandlerMixin from apoli.mixins.json into net.minecraft.server.network.ServerPlayNetworkHandler +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayNetworkHandlerMixin from mixins.reach-entity-attributes.json into net.minecraft.server.network.ServerPlayNetworkHandler +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::handleCustomPayloadReceivedAsync(Lnet/minecraft/network/packet/c2s/play/CustomPayloadC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 does use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::saveEndRespawnStatus(Lnet/minecraft/network/packet/c2s/play/ClientStatusC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::saveEndRespawnStatus(Lnet/minecraft/network/packet/c2s/play/ClientStatusC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::saveEndRespawnStatus(Lnet/minecraft/network/packet/c2s/play/ClientStatusC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::undoEndRespawnStatus(Lnet/minecraft/network/packet/c2s/play/ClientStatusC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::undoEndRespawnStatus(Lnet/minecraft/network/packet/c2s/play/ClientStatusC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayNetworkHandlerMixin->@Inject::undoEndRespawnStatus(Lnet/minecraft/network/packet/c2s/play/ClientStatusC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:48] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:recipe_serializer has been marked as modded, registry entry apoli:power_restricted was changed +[19:51:48] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:loot_function_type has been marked as modded, registry entry apoli:add_power was changed +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing DamageSourceAccessor from calio.mixins.json into net.minecraft.entity.damage.DamageSource +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:DamageSourceAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:48] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method createDamageSource(Ljava/lang/String;)Lnet/minecraft/entity/damage/DamageSource; to createDamageSource_$md$cc481c$0 in calio.mixins.json:DamageSourceAccessor +[19:51:48] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:root has been marked as modded, registry entry apoli:power_factory was changed +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CriteriaRegistryInvoker from calio.mixins.json into net.minecraft.advancement.criterion.Criteria +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:CriteriaRegistryInvoker: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CriteriaAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.advancement.criterion.Criteria +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:CriteriaAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callRegister(Lnet/minecraft/advancement/criterion/Criterion;)Lnet/minecraft/advancement/criterion/Criterion; to callRegister_$md$cc481c$1 in fabric-object-builder-v1.mixins.json:CriteriaAccessor +[19:51:49] [Render thread/INFO] (io.github.apace100.apoli.Apoli) Apoli 2.2.0 has initialized. Ready to power up your game! +[19:51:49] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:attribute has been marked as modded, registry entry reach-entity-attributes:reach was changed +[19:51:49] [Render thread/INFO] (aspects) Hello Fabric world! +[19:51:49] [Render thread/INFO] (io.github.apace100.origins.Origins) Origins 1.3.0 is initializing. Have fun! +[19:51:49] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:block has been marked as modded, registry entry origins:temporary_cobweb was changed +[19:51:49] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:item has been marked as modded, registry entry origins:orb_of_origin was changed +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerLoginNetworkHandlerMixin from fabric-networking-api-v1.mixins.json into net.minecraft.server.network.ServerLoginNetworkHandler +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing accessor.ServerLoginNetworkHandlerAccessor from fabric-networking-api-v1.mixins.json into net.minecraft.server.network.ServerLoginNetworkHandler +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:accessor.ServerLoginNetworkHandlerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::handleCustomPayloadReceivedAsync(Lnet/minecraft/network/packet/c2s/login/LoginQueryResponseC2SPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 does use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::handlePlayTransitionNormal(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::handlePlayTransitionNormal(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ServerLoginNetworkHandlerMixin->@Inject::handlePlayTransitionNormal(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:enchantment has been marked as modded, registry entry origins:water_protection was changed +[19:51:49] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:entity_type has been marked as modded, registry entry origins:enderian_pearl was changed +[19:51:49] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:loot_condition_type has been marked as modded, registry entry origins:origin was changed +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinLootManager from fabric-loot-tables-v1.mixins.json into net.minecraft.loot.LootManager +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:MixinLootManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$apply$2(Lnet/minecraft/resource/ResourceManager;Ljava/util/Map;Lnet/minecraft/util/Identifier;Lnet/minecraft/loot/LootTable;)V to mdcc481c$lambda$apply$2$0 in fabric-loot-tables-v1.mixins.json:MixinLootManager +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$apply$1(Lnet/fabricmc/fabric/api/loot/v1/FabricLootSupplierBuilder;Lnet/minecraft/util/Identifier;)Lnet/minecraft/loot/LootTable; to mdcc481c$lambda$apply$1$1 in fabric-loot-tables-v1.mixins.json:MixinLootManager +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$apply$0(Ljava/util/Map;Lnet/minecraft/util/Identifier;Lnet/minecraft/loot/LootTable;)V to mdcc481c$lambda$apply$0$2 in fabric-loot-tables-v1.mixins.json:MixinLootManager +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.loot.LootManager +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:KeyedResourceReloadListenerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:MixinLootManager->@Inject::apply(Ljava/util/Map;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/profiler/Profiler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-loot-tables-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:MixinLootManager->@Inject::apply(Ljava/util/Map;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/profiler/Profiler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-loot-tables-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:MixinLootManager->@Inject::apply(Ljava/util/Map;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/profiler/Profiler;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-loot-tables-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LootSupplierBuilderHooks from fabric-loot-tables-v1.mixins.json into net.minecraft.loot.LootTable$Builder +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:LootSupplierBuilderHooks: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Entrypoint) Iterating over entrypoint 'client' +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayNetworkHandlerMixin from fabric-networking-api-v1.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayNetworkHandlerMixin from fabric-command-api-v1.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayNetworkHandlerMixin from fabric-mining-level-api-v1.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinClientPlayNetworkHandler from fabric-content-registries-v0.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:client.MixinClientPlayNetworkHandler: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayNetworkHandlerMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.client.network.ClientPlayNetworkHandler +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::handleServerPlayReady(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::handleServerPlayReady(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::handleServerPlayReady(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::handleCustomPayload(Lnet/minecraft/network/packet/s2c/play/CustomPayloadS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 does use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::handleDisconnection(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onOnCommandTree(Lnet/minecraft/network/packet/s2c/play/CommandTreeS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onOnCommandTree(Lnet/minecraft/network/packet/s2c/play/CommandTreeS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onOnCommandTree(Lnet/minecraft/network/packet/s2c/play/CommandTreeS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::fabric$clearMiningLevelCache(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-mining-level-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::fabric$clearMiningLevelCache(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-mining-level-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-mining-level-api-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::fabric$clearMiningLevelCache(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-mining-level-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:client.MixinClientPlayNetworkHandler->@Inject::onSynchronizeTagsHook(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-content-registries-v0 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:client.MixinClientPlayNetworkHandler->@Inject::onSynchronizeTagsHook(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-content-registries-v0 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-content-registries-v0.mixins.json:client.MixinClientPlayNetworkHandler->@Inject::onSynchronizeTagsHook(Lnet/minecraft/network/packet/s2c/play/SynchronizeTagsS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-content-registries-v0 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onPlayerRespawn(Lnet/minecraft/network/packet/s2c/play/PlayerRespawnS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onPlayerRespawn(Lnet/minecraft/network/packet/s2c/play/PlayerRespawnS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onPlayerRespawn(Lnet/minecraft/network/packet/s2c/play/PlayerRespawnS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onGameJoin(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onGameJoin(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onGameJoin(Lnet/minecraft/network/packet/s2c/play/GameJoinS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onClearWorld(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onClearWorld(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientPlayNetworkHandlerMixin->@Inject::onClearWorld(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientLoginNetworkHandlerMixin from fabric-networking-api-v1.mixins.json into net.minecraft.client.network.ClientLoginNetworkHandler +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::initAddon(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::handleQueryRequest(Lnet/minecraft/network/packet/s2c/login/LoginQueryRequestS2CPacket;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 does use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::invokeLoginDisconnectEvent(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::invokeLoginDisconnectEvent(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::invokeLoginDisconnectEvent(Lnet/minecraft/text/Text;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::handlePlayTransition(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::handlePlayTransition(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:client.ClientLoginNetworkHandlerMixin->@Inject::handlePlayTransition(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ElytraFeatureRendererMixin from apoli.mixins.json into net.minecraft.client.render.entity.feature.ElytraFeatureRenderer +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ElytraFeatureRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CapeFeatureRendererMixin from apoli.mixins.json into net.minecraft.client.render.entity.feature.CapeFeatureRenderer +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CapeFeatureRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CapeFeatureRendererMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.feature.CapeFeatureRenderer +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:CapeFeatureRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CapeFeatureRendererMixin->@Inject::preventCapeRendering(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;ILnet/minecraft/client/network/AbstractClientPlayerEntity;FFFFFFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:CapeFeatureRendererMixin->@Inject::injectCapeRenderCheck(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;ILnet/minecraft/client/network/AbstractClientPlayerEntity;FFFFFFLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinArmorFeatureRenderer from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.feature.ArmorFeatureRenderer +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinArmorFeatureRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinArmorFeatureRenderer->@Inject::renderArmor(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;Lnet/minecraft/entity/LivingEntity;Lnet/minecraft/entity/EquipmentSlot;ILnet/minecraft/client/render/entity/model/BipedEntityModel;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo +[19:51:49] [Render thread/INFO] (net.fabricmc.fabric.impl.client.indigo.Indigo) [Indigo] Registering Indigo renderer! +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing GameRendererMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.render.GameRenderer +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing GameRendererMixin from apoli.mixins.json into net.minecraft.client.render.GameRenderer +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$getEyePos$7(Ljava/util/HashSet;Lnet/minecraft/util/math/BlockPos;)V to mdcc481c$lambda$getEyePos$7$0 in apoli.mixins.json:GameRendererMixin +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventThirdPerson$6(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdcc481c$lambda$preventThirdPerson$6$1 in apoli.mixins.json:GameRendererMixin +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$beforeRender$5(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdcc481c$lambda$beforeRender$5$2 in apoli.mixins.json:GameRendererMixin +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$beforeRender$4(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdcc481c$lambda$beforeRender$4$3 in apoli.mixins.json:GameRendererMixin +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$disableShaderToggle$3(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lio/github/apace100/apoli/power/ShaderPower;)V to mdcc481c$lambda$disableShaderToggle$3$4 in apoli.mixins.json:GameRendererMixin +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$renderOverlayPowers$2(ZZLio/github/apace100/apoli/power/OverlayPower;)Z to mdcc481c$lambda$renderOverlayPowers$2$5 in apoli.mixins.json:GameRendererMixin +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$loadShaderFromPower$1(Lio/github/apace100/apoli/power/ShaderPower;)V to mdcc481c$lambda$loadShaderFromPower$1$6 in apoli.mixins.json:GameRendererMixin +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$loadShaderFromPowerOnCameraEntity$0(Lio/github/apace100/apoli/power/ShaderPower;)V to mdcc481c$lambda$loadShaderFromPowerOnCameraEntity$0$7 in apoli.mixins.json:GameRendererMixin +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.GameRendererMixin from mixins.reach-entity-attributes.json into net.minecraft.client.render.GameRenderer +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin->@Inject::onBeforeRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin->@Inject::onBeforeRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin->@Inject::onBeforeRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin->@Inject::onAfterRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin->@Inject::onAfterRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:GameRendererMixin->@Inject::onAfterRenderScreen(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;IILnet/minecraft/client/util/math/MatrixStack;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::loadShaderFromPowerOnCameraEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::loadShaderFromPowerOnCameraEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::loadShaderFromPowerOnCameraEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::loadShaderFromPower(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::loadShaderFromPower(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::loadShaderFromPower(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::renderOverlayPowers(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::renderOverlayPowers(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::renderOverlayPowers(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::fixHudWithShaderEnabled(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::fixHudWithShaderEnabled(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::fixHudWithShaderEnabled(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::disableShaderToggle(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::getNightVisionStrength(Lnet/minecraft/entity/LivingEntity;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::beforeRender(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::beforeRender(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:GameRendererMixin->@Inject::beforeRender(FJZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinSpriteAtlasTexture from fabric-textures-v0.mixins.json into net.minecraft.client.texture.SpriteAtlasTexture +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-textures-v0.mixins.json:MixinSpriteAtlasTexture: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinSpriteAtlasTexture from fabric-renderer-api-v1.mixins.json into net.minecraft.client.texture.SpriteAtlasTexture +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinSpriteAtlasTexture: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-textures-v0.mixins.json:MixinSpriteAtlasTexture->@Inject::afterLoadSprites(Lnet/minecraft/resource/ResourceManager;Ljava/util/Set;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-textures-v0 does use it's CallbackInfoReturnable +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinSpriteAtlasTexture->@Inject::uploadHook(Lnet/minecraft/client/texture/SpriteAtlasTexture$Data;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinSpriteAtlasTexture->@Inject::uploadHook(Lnet/minecraft/client/texture/SpriteAtlasTexture$Data;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinSpriteAtlasTexture->@Inject::uploadHook(Lnet/minecraft/client/texture/SpriteAtlasTexture$Data;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing PlayerScreenHandlerMixin from apoli.mixins.json into net.minecraft.screen.PlayerScreenHandler$1 +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerScreenHandlerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventArmorInsertion$0(Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/EquipmentSlot;Lio/github/apace100/apoli/power/RestrictArmorPower;)Z to mdcc481c$lambda$preventArmorInsertion$0$0 in apoli.mixins.json:PlayerScreenHandlerMixin +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerScreenHandlerMixin->@Inject::preventArmorInsertion(Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.render.item.ItemRenderer +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.KeyedResourceReloadListenerClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinItemRenderer from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.item.ItemRenderer +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinItemRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$0()Lnet/fabricmc/fabric/impl/client/indigo/renderer/render/ItemRenderContext; to mdcc481c$lambda$new$0$0 in fabric-renderer-indigo.mixins.json:MixinItemRenderer +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinItemRenderer->@Inject::hook_method_23179(Lnet/minecraft/item/ItemStack;Lnet/minecraft/client/render/model/json/ModelTransformation$Mode;ZLnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;IILnet/minecraft/client/render/model/BakedModel;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-indigo does use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ClientConnectionMixin from fabric-networking-api-v1.mixins.json into net.minecraft.network.ClientConnection +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::initAddedFields(Lnet/minecraft/network/NetworkSide;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::initAddedFields(Lnet/minecraft/network/NetworkSide;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::initAddedFields(Lnet/minecraft/network/NetworkSide;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::checkPacket(Lnet/minecraft/network/Packet;Lio/netty/util/concurrent/GenericFutureListener;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::checkPacket(Lnet/minecraft/network/Packet;Lio/netty/util/concurrent/GenericFutureListener;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::checkPacket(Lnet/minecraft/network/Packet;Lio/netty/util/concurrent/GenericFutureListener;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::checkPacket(Lnet/minecraft/network/Packet;Lio/netty/util/concurrent/GenericFutureListener;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::checkPacket(Lnet/minecraft/network/Packet;Lio/netty/util/concurrent/GenericFutureListener;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::checkPacket(Lnet/minecraft/network/Packet;Lio/netty/util/concurrent/GenericFutureListener;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::handleDisconnect(Lio/netty/channel/ChannelHandlerContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::handleDisconnect(Lio/netty/channel/ChannelHandlerContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:ClientConnectionMixin->@Inject::handleDisconnect(Lio/netty/channel/ChannelHandlerContext;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinGameOptions from fabric-key-binding-api-v1.mixins.json into net.minecraft.client.option.GameOptions +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:MixinGameOptions: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.GameOptionsMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.option.GameOptions +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.GameOptionsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:MixinGameOptions->@Inject::loadHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-key-binding-api-v1 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:MixinGameOptions->@Inject::loadHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-key-binding-api-v1 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-key-binding-api-v1.mixins.json:MixinGameOptions->@Inject::loadHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-key-binding-api-v1 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.GameOptionsMixin->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.GameOptionsMixin->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.GameOptionsMixin->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.GameOptionsMixin->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 doesn't use it's CallbackInfo +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.GameOptionsMixin->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 has 0 override(s) in child classes +[19:51:49] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.GameOptionsMixin->@Inject::onLoad(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-resource-loader-v0 won't be passed a CallbackInfo as a result +[19:51:49] [Render thread/INFO] (net.minecraft.client.MinecraftClient) Backend library: LWJGL version 3.2.1 build 12 +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MouseMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.Mouse +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::beforeMouseClickedEvent([ZLnet/minecraft/client/gui/screen/Screen;DDILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 does use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::afterMouseClickedEvent([ZLnet/minecraft/client/gui/screen/Screen;DDILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::beforeMouseReleasedEvent([ZLnet/minecraft/client/gui/screen/Screen;DDILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 does use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::afterMouseReleasedEvent([ZLnet/minecraft/client/gui/screen/Screen;DDILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::beforeMouseScrollEvent(JDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;DDD)V from mod fabric-screen-api-v1 does use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::afterMouseScrollEvent(JDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;DDD)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::afterMouseScrollEvent(JDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;DDD)V from mod fabric-screen-api-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:MouseMixin->@Inject::afterMouseScrollEvent(JDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;DDD)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyboardMixin from fabric-screen-api-v1.mixins.json into net.minecraft.client.Keyboard +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::beforeKeyPressedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 does use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::afterKeyPressedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::afterKeyPressedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::afterKeyPressedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::beforeKeyReleasedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 does use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::afterKeyReleasedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::afterKeyReleasedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-screen-api-v1.mixins.json:KeyboardMixin->@Inject::afterKeyReleasedEvent(ILnet/minecraft/client/gui/screen/Screen;[ZIIILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-screen-api-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ReloadableResourceManagerImplMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.ReloadableResourceManagerImpl +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$getResourcePackNames$0(Lnet/minecraft/resource/ResourcePack;)Ljava/lang/String; to mdcc481c$lambda$getResourcePackNames$0$0 in fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin->@Inject::reload(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 doesn't use it's CallbackInfoReturnable +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin->@Inject::reload(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin->@Inject::reload(Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 won't be passed a CallbackInfoReturnable as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:ReloadableResourceManagerImplMixin->@Inject::getResourcePackNames(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 does use it's CallbackInfoReturnable +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.resource.language.LanguageManager +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.KeyedResourceReloadListenerClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.texture.TextureManager +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.KeyedResourceReloadListenerClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.sound.SoundManager +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.KeyedResourceReloadListenerClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.FontManagerResourceReloadListenerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.font.FontManager$1 +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.FontManagerResourceReloadListenerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinBlockColorMap from fabric-rendering-v1.mixins.json into net.minecraft.client.color.block.BlockColors +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinBlockColorMap: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinBlockColorMap from fabric-registry-sync-v0.mixins.json into net.minecraft.client.color.block.BlockColors +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinBlockColorMap: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinBlockColorMap->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-v1 does use it's CallbackInfoReturnable +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinBlockColorMap->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinBlockColorMap->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinBlockColorMap->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinItemColorMap from fabric-rendering-v1.mixins.json into net.minecraft.client.color.item.ItemColors +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinItemColorMap: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinItemColorMap from fabric-registry-sync-v0.mixins.json into net.minecraft.client.color.item.ItemColors +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemColorMap: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinItemColorMap->@Inject::create(Lnet/minecraft/client/color/block/BlockColors;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-v1 does use it's CallbackInfoReturnable +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemColorMap->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemColorMap->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemColorMap->@Inject::create(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinBakedModelManager from fabric-models-v0.mixins.json into net.minecraft.client.render.model.BakedModelManager +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinBakedModelManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.render.model.BakedModelManager +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.KeyedResourceReloadListenerClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.render.block.BlockRenderManager +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.KeyedResourceReloadListenerClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinBuiltinModelItemRenderer from fabric-rendering-v1.mixins.json into net.minecraft.client.render.item.BuiltinModelItemRenderer +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinBuiltinModelItemRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinBuiltinModelItemRenderer->@Inject::fabric_onRender(Lnet/minecraft/item/ItemStack;Lnet/minecraft/client/render/model/json/ModelTransformation$Mode;Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinItemModelMap from fabric-registry-sync-v0.mixins.json into net.minecraft.client.render.item.ItemModels +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemModelMap: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemModelMap->@Inject::onInit(Lnet/minecraft/client/render/model/BakedModelManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemModelMap->@Inject::onInit(Lnet/minecraft/client/render/model/BakedModelManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinItemModelMap->@Inject::onInit(Lnet/minecraft/client/render/model/BakedModelManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing EntityRenderDispatcherMixin from apoli.mixins.json into net.minecraft.client.render.entity.EntityRenderDispatcher +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityRenderDispatcherMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventRenderingEntities$0(Lnet/minecraft/entity/Entity;Lio/github/apace100/apoli/power/PreventEntityRenderPower;)Z to mdcc481c$lambda$preventRenderingEntities$0$0 in apoli.mixins.json:EntityRenderDispatcherMixin +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:EntityRenderDispatcherMixin->@Inject::preventRenderingEntities(Lnet/minecraft/entity/Entity;Lnet/minecraft/client/render/Frustum;DDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.HeldItemRendererMixin from fabric-item-api-v1.mixins.json into net.minecraft.client.render.item.HeldItemRenderer +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:client.HeldItemRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:client.HeldItemRendererMixin->@Inject::modifyProgressAnimation(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:client.HeldItemRendererMixin->@Inject::modifyProgressAnimation(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:client.HeldItemRendererMixin->@Inject::modifyProgressAnimation(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-api-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinModelLoader from fabric-models-v0.mixins.json into net.minecraft.client.render.model.ModelLoader +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader->@Inject::loadModelHook(Lnet/minecraft/util/Identifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-models-v0 does use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader->@Inject::addModelHook(Lnet/minecraft/client/util/ModelIdentifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-models-v0 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader->@Inject::addModelHook(Lnet/minecraft/client/util/ModelIdentifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-models-v0 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader->@Inject::addModelHook(Lnet/minecraft/client/util/ModelIdentifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-models-v0 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader->@Inject::initFinishedHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-models-v0 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader->@Inject::initFinishedHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-models-v0 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-models-v0.mixins.json:MixinModelLoader->@Inject::initFinishedHook(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-models-v0 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinBakedModel from fabric-renderer-api-v1.mixins.json into net.minecraft.client.render.model.BakedModel +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinBakedModel: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LightmapTextureManagerMixin from apoli.mixins.json into net.minecraft.client.render.LightmapTextureManager +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LightmapTextureManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinBlockModelRenderer from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.block.BlockModelRenderer +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinBlockModelRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinBlockModelRenderer->@Inject::hookRender(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/client/render/model/BakedModel;Lnet/minecraft/block/BlockState;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumer;ZLjava/util/Random;JILorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-indigo does use it's CallbackInfoReturnable +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinBlockModelRenderer->@Inject::onInit(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-indigo doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinBlockModelRenderer->@Inject::onInit(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-indigo has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinBlockModelRenderer->@Inject::onInit(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-indigo won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinAmbientOcclusionCalculator from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.block.BlockModelRenderer$AmbientOcclusionCalculator +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinAmbientOcclusionCalculator: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinFluidRenderer from fabric-rendering-fluids-v1.mixins.json into net.minecraft.client.render.block.FluidRenderer +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$new$0()Ljava/lang/Boolean; to mdcc481c$lambda$new$0$0 in fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::onResourceReloadReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-fluids-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::onResourceReloadReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-fluids-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::onResourceReloadReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-fluids-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::tesselate(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-fluids-v1 does use it's CallbackInfoReturnable +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-fluids-v1 doesn't use it's CallbackInfoReturnable +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-fluids-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-fluids-v1 won't be passed a CallbackInfoReturnable as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-fluids-v1 doesn't use it's CallbackInfoReturnable +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-fluids-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-fluids-v1.mixins.json:MixinFluidRenderer->@Inject::tesselateReturn(Lnet/minecraft/world/BlockRenderView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/fluid/FluidState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-rendering-fluids-v1 won't be passed a CallbackInfoReturnable as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing WorldRendererMixin from apoli.mixins.json into net.minecraft.client.render.WorldRenderer +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:WorldRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.KeyedResourceReloadListenerClientMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.render.WorldRenderer +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.KeyedResourceReloadListenerClientMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinWorldRenderer from fabric-rendering-v1.mixins.json into net.minecraft.client.render.WorldRenderer +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:WorldRendererMixin->@Inject::updateChunksIfRenderChanged(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:WorldRendererMixin->@Inject::updateChunksIfRenderChanged(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:WorldRendererMixin->@Inject::updateChunksIfRenderChanged(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:WorldRendererMixin->@Inject::getEntity(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/profiler/Profiler;ZLnet/minecraft/util/math/Vec3d;DDDLnet/minecraft/util/math/Matrix4f;ZLnet/minecraft/client/render/Frustum;ZLnet/minecraft/client/render/VertexConsumerProvider$Immediate;Ljava/util/Iterator;Lnet/minecraft/entity/Entity;)V from mod apoli doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:WorldRendererMixin->@Inject::getEntity(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/profiler/Profiler;ZLnet/minecraft/util/math/Vec3d;DDDLnet/minecraft/util/math/Matrix4f;ZLnet/minecraft/client/render/Frustum;ZLnet/minecraft/client/render/VertexConsumerProvider$Immediate;Ljava/util/Iterator;Lnet/minecraft/entity/Entity;)V from mod apoli has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:WorldRendererMixin->@Inject::getEntity(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;Lnet/minecraft/util/profiler/Profiler;ZLnet/minecraft/util/math/Vec3d;DDDLnet/minecraft/util/math/Matrix4f;ZLnet/minecraft/client/render/Frustum;ZLnet/minecraft/client/render/VertexConsumerProvider$Immediate;Ljava/util/Iterator;Lnet/minecraft/entity/Entity;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) ArgsClassGenerator assigning org.spongepowered.asm.synthetic.args.Args$1 for descriptor (IIII)V +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeRender(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeRender(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeRender(Lnet/minecraft/client/util/math/MatrixStack;FJZLnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/GameRenderer;Lnet/minecraft/client/render/LightmapTextureManager;Lnet/minecraft/util/math/Matrix4f;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterTerrainSetup(Lnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/Frustum;ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterTerrainSetup(Lnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/Frustum;ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterTerrainSetup(Lnet/minecraft/client/render/Camera;Lnet/minecraft/client/render/Frustum;ZZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterTerrainSolid(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterTerrainSolid(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterTerrainSolid(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterEntities(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeRenderOutline(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeRenderOutline(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeRenderOutline(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onDrawBlockOutline(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/entity/Entity;DDDLnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onRenderParticles(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::beforeClouds(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onChunkDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onChunkDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onChunkDebugRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::afterRender(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onReload(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onReload(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::onReload(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::renderWeather(Lnet/minecraft/client/render/LightmapTextureManager;FDDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::renderCloud(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/util/math/Matrix4f;FDDDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinWorldRenderer->@Inject::renderSky(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/util/math/Matrix4f;FLjava/lang/Runnable;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 does use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (com.mojang.blaze3d.systems.RenderSystem) Growing IndexBuffer: Old limit 0, new limit 9360. +[19:51:50] [Render thread/DEBUG] (com.mojang.blaze3d.systems.RenderSystem) Growing IndexBuffer: Old limit 0, new limit 20. +[19:51:50] [Render thread/DEBUG] (io.netty.util.internal.InternalThreadLocalMap) -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024 +[19:51:50] [Render thread/DEBUG] (io.netty.util.internal.InternalThreadLocalMap) -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096 +[19:51:50] [Render thread/DEBUG] (io.netty.util.internal.ThreadLocalRandom) -Dio.netty.initialSeedUniquifier: 0xc3db08d66e299aba +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinParticleManager from fabric-particles-v1.mixins.json into net.minecraft.client.particle.ParticleManager +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.mixins.json:MixinParticleManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ParticleManagerAccessor from fabric-particles-v1.mixins.json into net.minecraft.client.particle.ParticleManager +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.mixins.json:ParticleManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinParticleManager from fabric-registry-sync-v0.mixins.json into net.minecraft.client.particle.ParticleManager +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinParticleManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.mixins.json:MixinParticleManager->@Inject::onRegisterDefaultFactories(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-particles-v1 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.mixins.json:MixinParticleManager->@Inject::onRegisterDefaultFactories(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-particles-v1 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.mixins.json:MixinParticleManager->@Inject::onRegisterDefaultFactories(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-particles-v1 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinParticleManager->@Inject::onInit(Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/client/texture/TextureManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinParticleManager->@Inject::onInit(Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/client/texture/TextureManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:client.MixinParticleManager->@Inject::onInit(Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/client/texture/TextureManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfo as a result +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ParticleManagerAccessor$SimpleSpriteProviderAccessor from fabric-particles-v1.mixins.json into net.minecraft.client.particle.ParticleManager$SimpleSpriteProvider +[19:51:50] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-particles-v1.mixins.json:ParticleManagerAccessor$SimpleSpriteProviderAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing InGameHudMixin from apoli.mixins.json into net.minecraft.client.gui.hud.InGameHud +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:InGameHudMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$renderOnHud$0(ZZLio/github/apace100/apoli/power/OverlayPower;)Z to mdcc481c$lambda$renderOnHud$0$0 in apoli.mixins.json:InGameHudMixin +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinInGameHud from fabric-rendering-v1.mixins.json into net.minecraft.client.gui.hud.InGameHud +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinInGameHud: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CustomNonItalicNameMixin$ModifyItalicDisplayHud from calio.mixins.json into net.minecraft.client.gui.hud.InGameHud +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:CustomNonItalicNameMixin$ModifyItalicDisplayHud: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:InGameHudMixin->@Inject::renderOnHud(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:InGameHudMixin->@Inject::renderOnHud(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:InGameHudMixin->@Inject::renderOnHud(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinInGameHud->@Inject::render(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinInGameHud->@Inject::render(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 has 0 override(s) in child classes +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinInGameHud->@Inject::render(Lnet/minecraft/client/util/math/MatrixStack;FLorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 won't be passed a CallbackInfo as a result +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinDebugHud from fabric-renderer-api-v1.debughud.mixins.json into net.minecraft.client.gui.hud.DebugHud +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.debughud.mixins.json:MixinDebugHud: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.debughud.mixins.json:MixinDebugHud->@Inject::getLeftText(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-api-v1 does use it's CallbackInfoReturnable +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.debughud.mixins.json:MixinDebugHud->@Inject::getLeftText(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-api-v1 does use it's CallbackInfoReturnable +[19:51:51] [Render thread/INFO] (net.minecraft.resource.ReloadableResourceManagerImpl) Reloading ResourceManager: Default, Fabric Mods (Fabric BlockRenderLayer Registration (v1), Fabric Screen API (v1), Mod Menu, Fabric Screen Handler API (v1), Fabric Rendering Data Attachment (v1), Fabric Item Groups (v0), Fabric Loot Tables (v1), Apoli, Fabric Events Interaction (v0), Fabric Models (v0), Fabric Data Generation API (v1), Fabric Key Bindings (v0), Fabric Rendering Fluids (v1), Fabric Command API (v1), Fabric Dimensions API (v1), Fabric Particles (v1), Fabric Transfer API (v1), Fabric Key Binding API (v1), Fabric Networking (v0), Reach Entity Attributes, Fabric Resource Loader (v0), Fabric Containers (v0), Fabric Renderer - Indigo, Fabric Events Lifecycle (v0), Fabric Textures (v0), Fabric Entity Events (v1), Fabric Structure API (v1), Fabric Item API (v1), Aspects, Fabric Rendering (v1), Fabric Tag Extensions (v0), Fabric Commands (v0), Fabric Renderer Registries (v1), Calio, Fabric Loader, Fabric Game Test API (v1), Cloth Config v6, Fabric API, Fabric API Base, Fabric Renderer API (v1), Fabric Registry Sync (v0), Fabric Mining Level API (v1), Fabric Rendering (v0), Origins, Fabric Content Registries (v0), Fabric Networking API (v1), Fabric API Lookup API (v1), Fabric Tool Attribute API (v1), Fabric Object Builder API (v1), Fabric Game Rule API (v1), Fabric Mining Levels (v0), Pal, Fabric Biome API (v1), Fabric Object Builders (v0), Fabric Lifecycle Events (v1), Fabric Crash Report Info (v1)) +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing NamespaceResourceManagerAccessor from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.NamespaceResourceManager +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method fabric$accessor_getMetadataPath(Lnet/minecraft/util/Identifier;)Lnet/minecraft/util/Identifier; to fabric$accessor_getMetadataPath_$md$cc481c$0 in fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerAccessor +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing NamespaceResourceManagerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.resource.NamespaceResourceManager +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerMixin->@Inject::onGetAllResources(Lnet/minecraft/util/Identifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/List;)V from mod fabric-resource-loader-v0 doesn't use it's CallbackInfoReturnable +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerMixin->@Inject::onGetAllResources(Lnet/minecraft/util/Identifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/List;)V from mod fabric-resource-loader-v0 has 0 override(s) in child classes +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:NamespaceResourceManagerMixin->@Inject::onGetAllResources(Lnet/minecraft/util/Identifier;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Ljava/util/List;)V from mod fabric-resource-loader-v0 won't be passed a CallbackInfoReturnable as a result +[19:51:51] [Render thread/INFO] (aspects) This line is printed by an example mod mixin! +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing BackgroundRendererMixin from apoli.mixins.json into net.minecraft.client.render.BackgroundRenderer +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:BackgroundRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$redirectFogEnd$4(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdcc481c$lambda$redirectFogEnd$4$0 in apoli.mixins.json:BackgroundRendererMixin +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$redirectFogEnd$3(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdcc481c$lambda$redirectFogEnd$3$1 in apoli.mixins.json:BackgroundRendererMixin +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$redirectFogStart$2(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdcc481c$lambda$redirectFogStart$2$2 in apoli.mixins.json:BackgroundRendererMixin +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$redirectFogStart$1(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdcc481c$lambda$redirectFogStart$1$3 in apoli.mixins.json:BackgroundRendererMixin +[19:51:51] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyD$0(Lio/github/apace100/apoli/power/PhasingPower;)Z to mdcc481c$lambda$modifyD$0$4 in apoli.mixins.json:BackgroundRendererMixin +[19:51:51] [Realms Notification Availability checker #1/INFO] (net.minecraft.client.realms.RealmsClient) Could not authorize you against Realms server: Invalid session id +[19:51:54] [Render thread/INFO] (net.minecraft.client.sound.SoundEngine) OpenAL initialized on device CoreAudio Default +[19:51:54] [Render thread/INFO] (net.minecraft.client.sound.SoundSystem) Sound engine started +[19:51:54] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 1024x1024x4 minecraft:textures/atlas/blocks.png-atlas +[19:51:54] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas +[19:51:54] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 1024x512x4 minecraft:textures/atlas/banner_patterns.png-atlas +[19:51:54] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 1024x512x4 minecraft:textures/atlas/shield_patterns.png-atlas +[19:51:54] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas +[19:51:54] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas +[19:51:54] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas +[19:51:54] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinMultipartBakedModel from fabric-renderer-api-v1.mixins.json into net.minecraft.client.render.model.MultipartBakedModel +[19:51:54] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinMultipartBakedModel: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:54] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinMultipartBakedModel->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 doesn't use it's CallbackInfo +[19:51:54] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinMultipartBakedModel->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 has 0 override(s) in child classes +[19:51:54] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinMultipartBakedModel->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 won't be passed a CallbackInfo as a result +[19:51:54] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinWeightedBakedModel from fabric-renderer-api-v1.mixins.json into net.minecraft.client.render.model.WeightedBakedModel +[19:51:54] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinWeightedBakedModel: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:54] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinWeightedBakedModel->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 doesn't use it's CallbackInfo +[19:51:54] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinWeightedBakedModel->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 has 0 override(s) in child classes +[19:51:54] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-api-v1.mixins.json:client.MixinWeightedBakedModel->@Inject::onInit(Ljava/util/List;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-renderer-api-v1 won't be passed a CallbackInfo as a result +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing EntityModelsMixin from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.model.EntityModels +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:EntityModelsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:EntityModelsMixin->@Inject::registerExtraModelData(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lcom/google/common/collect/ImmutableMap$Builder;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfoReturnable +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing EntityModelLayersAccessor from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.model.EntityModelLayers +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:EntityModelLayersAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getLayers()Ljava/util/Set; to getLayers_$md$cc481c$0 in fabric-rendering-v1.mixins.json:EntityModelLayersAccessor +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinBlockEntityRenderers from fabric-rendering-v1.mixins.json into net.minecraft.client.render.block.entity.BlockEntityRendererFactories +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinBlockEntityRenderers: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$init$0(Lnet/minecraft/block/entity/BlockEntityType;Lnet/minecraft/client/render/block/entity/BlockEntityRendererFactory;)V to mdcc481c$lambda$init$0$0 in fabric-rendering-v1.mixins.json:MixinBlockEntityRenderers +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinBlockEntityRenderers->@Inject::init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinEntityRenderers from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.EntityRenderers +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinEntityRenderers: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$onRegisterRenderers$0(Lnet/minecraft/entity/EntityType;Lnet/minecraft/client/render/entity/EntityRendererFactory;)V to mdcc481c$lambda$onRegisterRenderers$0$0 in fabric-rendering-v1.mixins.json:MixinEntityRenderers +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:MixinEntityRenderers->@Inject::onRegisterRenderers(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-rendering-v1 doesn't use it's CallbackInfo +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityRendererMixin from apoli.mixins.json into net.minecraft.client.render.entity.LivingEntityRenderer +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$renderColorChangedModel$3(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdcc481c$lambda$renderColorChangedModel$3$0 in apoli.mixins.json:LivingEntityRendererMixin +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$renderColorChangedModel$2(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdcc481c$lambda$renderColorChangedModel$2$1 in apoli.mixins.json:LivingEntityRendererMixin +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$renderColorChangedModel$1(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdcc481c$lambda$renderColorChangedModel$1$2 in apoli.mixins.json:LivingEntityRendererMixin +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventFeatureRendering$0(Ljava/lang/Class;Lio/github/apace100/apoli/power/PreventFeatureRenderPower;)Z to mdcc481c$lambda$preventFeatureRendering$0$3 in apoli.mixins.json:LivingEntityRendererMixin +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LivingEntityRendererAccessor from fabric-rendering-v1.mixins.json into net.minecraft.client.render.entity.LivingEntityRenderer +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:LivingEntityRendererAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityRendererMixin->@Inject::letPlayersShakeTheirBodies(Lnet/minecraft/entity/LivingEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LivingEntityRendererMixin->@Inject::preventPumpkinRendering(Lnet/minecraft/entity/LivingEntity;FFLnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumerProvider;ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) ArgsClassGenerator assigning org.spongepowered.asm.synthetic.args.Args$2 for descriptor (Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render/VertexConsumer;IIFFFF)V +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing PlayerEntityRendererMixin from apoli.mixins.json into net.minecraft.client.render.entity.PlayerEntityRenderer +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:PlayerEntityRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeSleeveTranslucent$5(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdcc481c$lambda$makeSleeveTranslucent$5$0 in apoli.mixins.json:PlayerEntityRendererMixin +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeSleeveTranslucent$4(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdcc481c$lambda$makeSleeveTranslucent$4$1 in apoli.mixins.json:PlayerEntityRendererMixin +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeSleeveTranslucent$3(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdcc481c$lambda$makeSleeveTranslucent$3$2 in apoli.mixins.json:PlayerEntityRendererMixin +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeArmTranslucent$2(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdcc481c$lambda$makeArmTranslucent$2$3 in apoli.mixins.json:PlayerEntityRendererMixin +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeArmTranslucent$1(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdcc481c$lambda$makeArmTranslucent$1$4 in apoli.mixins.json:PlayerEntityRendererMixin +[19:51:55] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$makeArmTranslucent$0(Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/Float; to mdcc481c$lambda$makeArmTranslucent$0$5 in apoli.mixins.json:PlayerEntityRendererMixin +[19:51:56] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas +[19:51:56] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas +[19:51:56] [Render thread/INFO] (net.minecraft.client.texture.SpriteAtlasTexture) Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas +[19:51:56] [Render thread/INFO] (aspects) This line is printed by an example mod mixin! +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.CreateWorldScreenMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.client.gui.screen.world.CreateWorldScreen +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.CreateWorldScreenMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.CreateWorldScreenMixin->@Inject::onScanPacks(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 doesn't use it's CallbackInfoReturnable +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.CreateWorldScreenMixin->@Inject::onScanPacks(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 has 0 override(s) in child classes +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:client.CreateWorldScreenMixin->@Inject::onScanPacks(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-resource-loader-v0 won't be passed a CallbackInfoReturnable as a result +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing GameRulesAccessor from fabric-game-rule-api-v1.mixins.json into net.minecraft.world.GameRules +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-game-rule-api-v1.mixins.json:GameRulesAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callRegister(Ljava/lang/String;Lnet/minecraft/world/GameRules$Category;Lnet/minecraft/world/GameRules$Type;)Lnet/minecraft/world/GameRules$Key; to callRegister_$md$cc481c$0 in fabric-game-rule-api-v1.mixins.json:GameRulesAccessor +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getRuleTypes()Ljava/util/Map; to getRuleTypes_$md$cc481c$1 in fabric-game-rule-api-v1.mixins.json:GameRulesAccessor +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing RuleKeyMixin from fabric-game-rule-api-v1.mixins.json into net.minecraft.world.GameRules$Key +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-game-rule-api-v1.mixins.json:RuleKeyMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing BooleanRuleAccessor from fabric-game-rule-api-v1.mixins.json into net.minecraft.world.GameRules$BooleanRule +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-game-rule-api-v1.mixins.json:BooleanRuleAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method invokeCreate(ZLjava/util/function/BiConsumer;)Lnet/minecraft/world/GameRules$Type; to invokeCreate_$md$cc481c$0 in fabric-game-rule-api-v1.mixins.json:BooleanRuleAccessor +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing IntRuleAccessor from fabric-game-rule-api-v1.mixins.json into net.minecraft.world.GameRules$IntRule +[19:51:58] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-game-rule-api-v1.mixins.json:IntRuleAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:59] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:dimension_type has been marked as modded, registry entry minecraft:overworld was changed +[19:51:59] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/biome has been marked as modded, registry entry minecraft:the_void was changed +[19:51:59] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/configured_carver has been marked as modded, registry entry minecraft:cave was changed +[19:51:59] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/configured_feature has been marked as modded, registry entry minecraft:seagrass_short was changed +[19:51:59] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/placed_feature has been marked as modded, registry entry minecraft:crimson_fungi was changed +[19:51:59] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/configured_structure_feature has been marked as modded, registry entry minecraft:pillager_outpost was changed +[19:51:59] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/processor_list has been marked as modded, registry entry minecraft:empty was changed +[19:51:59] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/template_pool has been marked as modded, registry entry minecraft:empty was changed +[19:51:59] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/noise_settings has been marked as modded, registry entry minecraft:overworld was changed +[19:51:59] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/noise has been marked as modded, registry entry minecraft:temperature was changed +[19:51:59] [Render thread/DEBUG] (net.fabricmc.fabric.impl.registry.sync.DynamicRegistrySync) Setting up synchronisation of new BuiltinRegistries entries to the built-in DynamicRegistryManager +[19:51:59] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:dimension_type has been marked as modded, registry entry minecraft:overworld was changed +[19:51:59] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinTagManager from fabric-tag-extensions-v0.mixins.json into net.minecraft.tag.TagManager +[19:51:59] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:59] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagManager->@Inject::init(Ljava/util/Map;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-tag-extensions-v0 doesn't use it's CallbackInfo +[19:51:59] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagManager->@Inject::init(Ljava/util/Map;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-tag-extensions-v0 has 0 override(s) in child classes +[19:51:59] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagManager->@Inject::init(Ljava/util/Map;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-tag-extensions-v0 won't be passed a CallbackInfo as a result +[19:51:59] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/noise_settings has been marked as modded, registry entry minecraft:overworld was changed +[19:51:59] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinRegistryOps from fabric-tag-extensions-v0.mixins.json into net.minecraft.util.dynamic.RegistryOps +[19:51:59] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinRegistryOps: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:59] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing modification.RegistryOpsMixin from fabric-biome-api-v1.mixins.json into net.minecraft.util.dynamic.RegistryOps +[19:51:59] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:modification.RegistryOpsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:51:59] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinRegistryOps->@Inject::afterDynamicRegistryLoaded(Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/registry/DynamicRegistryManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tag-extensions-v0 doesn't use it's CallbackInfoReturnable +[19:51:59] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-biome-api-v1.mixins.json:modification.RegistryOpsMixin->@Inject::afterCreation(Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resource/ResourceManager;Lnet/minecraft/util/registry/DynamicRegistryManager;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-biome-api-v1 doesn't use it's CallbackInfoReturnable +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing AccessorLevelStorageSession from fabric-registry-sync-v0.mixins.json into net.minecraft.world.level.storage.LevelStorage$Session +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:AccessorLevelStorageSession: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinLevelStorageSession from fabric-registry-sync-v0.mixins.json into net.minecraft.world.level.storage.LevelStorage$Session +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinLevelStorageSession: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinLevelStorageSession->@Inject::saveWorld(Lnet/minecraft/util/registry/DynamicRegistryManager;Lnet/minecraft/world/SaveProperties;Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinLevelStorageSession->@Inject::saveWorld(Lnet/minecraft/util/registry/DynamicRegistryManager;Lnet/minecraft/world/SaveProperties;Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinLevelStorageSession->@Inject::saveWorld(Lnet/minecraft/util/registry/DynamicRegistryManager;Lnet/minecraft/world/SaveProperties;Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfo as a result +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinLevelStorageSession->@Inject::readWorldProperties(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfoReturnable +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinLevelStorageSession->@Inject::readWorldProperties(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinLevelStorageSession->@Inject::readWorldProperties(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfoReturnable as a result +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerInteractionManagerAccessor from apoli.mixins.json into net.minecraft.server.network.ServerPlayerInteractionManager +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerInteractionManagerMixin from apoli.mixins.json into net.minecraft.server.network.ServerPlayerInteractionManager +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$executeBlockUseActions$4(Lnet/minecraft/util/hit/BlockHitResult;Lnet/minecraft/util/Hand;Lio/github/apace100/apoli/power/ActionOnBlockUsePower;)V to mdcc481c$lambda$executeBlockUseActions$4$0 in apoli.mixins.json:ServerPlayerInteractionManagerMixin +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$executeBlockUseActions$3(Lnet/minecraft/util/hit/BlockHitResult;Lnet/minecraft/util/Hand;Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ActionOnBlockUsePower;)Z to mdcc481c$lambda$executeBlockUseActions$3$1 in apoli.mixins.json:ServerPlayerInteractionManagerMixin +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventBlockInteraction$2(Lnet/minecraft/world/World;Lnet/minecraft/util/hit/BlockHitResult;Lio/github/apace100/apoli/power/PreventBlockUsePower;)Z to mdcc481c$lambda$preventBlockInteraction$2$2 in apoli.mixins.json:ServerPlayerInteractionManagerMixin +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$actionOnBlockBreak$1(ZZLnet/minecraft/util/math/BlockPos;Lio/github/apace100/apoli/power/ActionOnBlockBreakPower;)V to mdcc481c$lambda$actionOnBlockBreak$1$3 in apoli.mixins.json:ServerPlayerInteractionManagerMixin +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$actionOnBlockBreak$0(Lio/github/apace100/apoli/power/ActionOnBlockBreakPower;)Z to mdcc481c$lambda$actionOnBlockBreak$0$4 in apoli.mixins.json:ServerPlayerInteractionManagerMixin +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinServerPlayerInteractionManager from fabric-events-interaction-v0.mixins.json into net.minecraft.server.network.ServerPlayerInteractionManager +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerInteractionManagerMixin from mixins.reach-entity-attributes.json into net.minecraft.server.network.ServerPlayerInteractionManager +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ServerPlayerInteractionManagerMixin from mixins.playerabilitylib.common.json into net.minecraft.server.network.ServerPlayerInteractionManager +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerInteractionManagerMixin: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::cacheBlock(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::cacheBlock(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::cacheBlock(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::actionOnBlockBreak(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/block/Block;ZLnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Z)V from mod apoli doesn't use it's CallbackInfoReturnable +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::actionOnBlockBreak(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/block/Block;ZLnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Z)V from mod apoli has 0 override(s) in child classes +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::actionOnBlockBreak(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/block/Block;ZLnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Z)V from mod apoli won't be passed a CallbackInfoReturnable as a result +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::preventBlockInteraction(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::executeBlockUseActions(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::executeBlockUseActions(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ServerPlayerInteractionManagerMixin->@Inject::executeBlockUseActions(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager->@Inject::startBlockBreak(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/network/packet/c2s/play/PlayerActionC2SPacket$Action;Lnet/minecraft/util/math/Direction;ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-events-interaction-v0 does use it's CallbackInfo +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager->@Inject::interactBlock(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager->@Inject::interactItem(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/Hand;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager->@Inject::breakBlock(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/block/Block;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager->@Inject::onBlockBroken(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/block/Block;Z)V from mod fabric-events-interaction-v0 doesn't use it's CallbackInfoReturnable +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager->@Inject::onBlockBroken(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/block/Block;Z)V from mod fabric-events-interaction-v0 has 0 override(s) in child classes +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayerInteractionManager->@Inject::onBlockBroken(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/BlockEntity;Lnet/minecraft/block/Block;Z)V from mod fabric-events-interaction-v0 won't be passed a CallbackInfoReturnable as a result +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerInteractionManagerMixin->@Inject::saveFlying(Lnet/minecraft/world/GameMode;Lnet/minecraft/world/GameMode;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib doesn't use it's CallbackInfo +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerInteractionManagerMixin->@Inject::saveFlying(Lnet/minecraft/world/GameMode;Lnet/minecraft/world/GameMode;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib has 0 override(s) in child classes +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerInteractionManagerMixin->@Inject::saveFlying(Lnet/minecraft/world/GameMode;Lnet/minecraft/world/GameMode;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib won't be passed a CallbackInfo as a result +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerInteractionManagerMixin->@Inject::keepAbilities(Lnet/minecraft/world/GameMode;Lnet/minecraft/world/GameMode;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib doesn't use it's CallbackInfo +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerInteractionManagerMixin->@Inject::keepAbilities(Lnet/minecraft/world/GameMode;Lnet/minecraft/world/GameMode;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib has 0 override(s) in child classes +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.playerabilitylib.common.json:ServerPlayerInteractionManagerMixin->@Inject::keepAbilities(Lnet/minecraft/world/GameMode;Lnet/minecraft/world/GameMode;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod playerabilitylib won't be passed a CallbackInfo as a result +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing RecipeManagerAccessor from apoli.mixins.json into net.minecraft.recipe.RecipeManager +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:RecipeManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing RecipeManagerMixin from apoli.mixins.json into net.minecraft.recipe.RecipeManager +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:RecipeManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$prioritizeModifiedRecipes$1(Lnet/minecraft/recipe/Recipe;)Z to mdcc481c$lambda$prioritizeModifiedRecipes$1$0 in apoli.mixins.json:RecipeManagerMixin +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$prioritizeModifiedRecipes$0(Lnet/minecraft/recipe/RecipeType;Lnet/minecraft/world/World;Lnet/minecraft/inventory/Inventory;Lnet/minecraft/recipe/Recipe;)Ljava/util/stream/Stream; to mdcc481c$lambda$prioritizeModifiedRecipes$0$1 in apoli.mixins.json:RecipeManagerMixin +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.recipe.RecipeManager +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:KeyedResourceReloadListenerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:RecipeManagerMixin->@Inject::prioritizeModifiedRecipes(Lnet/minecraft/recipe/RecipeType;Lnet/minecraft/inventory/Inventory;Lnet/minecraft/world/World;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinLootPool from fabric-loot-tables-v1.mixins.json into net.minecraft.loot.LootPool +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:MixinLootPool: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinLootSupplier from fabric-loot-tables-v1.mixins.json into net.minecraft.loot.LootTable +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:MixinLootSupplier: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.server.ServerAdvancementLoader +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:KeyedResourceReloadListenerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.tag.TagManagerLoader +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:KeyedResourceReloadListenerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinTagManagerLoader from fabric-tag-extensions-v0.mixins.json into net.minecraft.tag.TagManagerLoader +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagManagerLoader: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagManagerLoader->@Inject::method_33179(Lnet/minecraft/resource/ResourceManager;Ljava/util/concurrent/Executor;Ljava/util/List;Lnet/minecraft/tag/RequiredTagList;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-tag-extensions-v0 does use it's CallbackInfo +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CommandManagerMixin from fabric-command-api-v1.mixins.json into net.minecraft.server.command.CommandManager +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:CommandManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing CommandManagerMixin from fabric-gametest-api-v1.mixins.json into net.minecraft.server.command.CommandManager +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:CommandManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:CommandManagerMixin->@Inject::fabric_addCommands(Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 doesn't use it's CallbackInfo +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:CommandManagerMixin->@Inject::fabric_addCommands(Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 has 0 override(s) in child classes +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:CommandManagerMixin->@Inject::fabric_addCommands(Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-command-api-v1 won't be passed a CallbackInfo as a result +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:CommandManagerMixin->@Inject::construct(Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-gametest-api-v1 doesn't use it's CallbackInfo +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:CommandManagerMixin->@Inject::construct(Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-gametest-api-v1 has 0 override(s) in child classes +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:CommandManagerMixin->@Inject::construct(Lnet/minecraft/server/command/CommandManager$RegistrationEnvironment;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-gametest-api-v1 won't be passed a CallbackInfo as a result +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing GameRuleCommandAccessor from fabric-game-rule-api-v1.mixins.json into net.minecraft.server.command.GameRuleCommand +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-game-rule-api-v1.mixins.json:GameRuleCommandAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method invokeExecuteSet(Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/world/GameRules$Key;)I to invokeExecuteSet_$md$cc481c$0 in fabric-game-rule-api-v1.mixins.json:GameRuleCommandAccessor +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method invokeExecuteQuery(Lnet/minecraft/server/command/ServerCommandSource;Lnet/minecraft/world/GameRules$Key;)I to invokeExecuteQuery_$md$cc481c$1 in fabric-game-rule-api-v1.mixins.json:GameRuleCommandAccessor +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing GameRuleCommandVisitorMixin from fabric-game-rule-api-v1.mixins.json into net.minecraft.server.command.GameRuleCommand$1 +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-game-rule-api-v1.mixins.json:GameRuleCommandVisitorMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-game-rule-api-v1.mixins.json:GameRuleCommandVisitorMixin->@Inject::onRegisterCommand(Lnet/minecraft/world/GameRules$Key;Lnet/minecraft/world/GameRules$Type;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-game-rule-api-v1 does use it's CallbackInfo +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing HelpCommandAccessor from fabric-command-api-v1.mixins.json into net.minecraft.server.command.HelpCommand +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:HelpCommandAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getFailedException()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; to getFailedException_$md$cc481c$0 in fabric-command-api-v1.mixins.json:HelpCommandAccessor +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing TeleportCommandMixin from fabric-entity-events-v1.mixins.json into net.minecraft.server.command.TeleportCommand +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:TeleportCommandMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:TeleportCommandMixin->@Inject::afterEntityTeleportedToWorld(Lnet/minecraft/server/command/ServerCommandSource;Lnet/minecraft/entity/Entity;Lnet/minecraft/server/world/ServerWorld;DDDLjava/util/Set;FFLjava/lang/Object;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;FFFLnet/minecraft/entity/Entity;)V from mod fabric-entity-events-v1 doesn't use it's CallbackInfo +[19:52:00] [Render thread/WARN] (net.minecraft.server.command.CommandManager) Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0] +[19:52:00] [Render thread/WARN] (net.minecraft.server.command.CommandManager) Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0] +[19:52:00] [Render thread/WARN] (net.minecraft.server.command.CommandManager) Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498] +[19:52:00] [Render thread/WARN] (net.minecraft.server.command.CommandManager) Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498] +[19:52:00] [Render thread/WARN] (net.minecraft.server.command.CommandManager) Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0] +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing TestFunctionsMixin from fabric-gametest-api-v1.mixins.json into net.minecraft.test.TestFunctions +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:TestFunctionsMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-gametest-api-v1.mixins.json:TestFunctionsMixin->@Inject::getTestFunction(Ljava/lang/reflect/Method;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-gametest-api-v1 does use it's CallbackInfoReturnable +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing KeyedResourceReloadListenerMixin from fabric-resource-loader-v0.mixins.json into net.minecraft.server.function.FunctionLoader +[19:52:00] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-resource-loader-v0.mixins.json:KeyedResourceReloadListenerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:00] [Render thread/INFO] (net.minecraft.resource.ReloadableResourceManagerImpl) Reloading ResourceManager: Default, Fabric Mods (Apoli, Aspects, Fabric Game Test API (v1), Origins, Fabric Tool Attribute API (v1)) +[19:52:01] [Worker-Main-25/DEBUG] (FabricLoader/Mixin) Mixing TagBuilderMixin from fabric-data-generation-api-v1.mixins.json into net.minecraft.tag.Tag$Builder +[19:52:01] [Worker-Main-25/DEBUG] (FabricLoader/Mixin) fabric-data-generation-api-v1.mixins.json:TagBuilderMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:01] [Worker-Main-25/DEBUG] (FabricLoader/Mixin) Mixing MixinTagBuilder from fabric-tag-extensions-v0.mixins.json into net.minecraft.tag.Tag$Builder +[19:52:01] [Worker-Main-25/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagBuilder: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:01] [Worker-Main-25/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagBuilder->@Inject::onFromJsonClear(Lcom/google/gson/JsonObject;Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tag-extensions-v0 doesn't use it's CallbackInfoReturnable +[19:52:01] [Worker-Main-25/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagBuilder->@Inject::onFromJsonClear(Lcom/google/gson/JsonObject;Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tag-extensions-v0 has 0 override(s) in child classes +[19:52:01] [Worker-Main-25/DEBUG] (FabricLoader/Mixin) fabric-tag-extensions-v0.mixins.json:MixinTagBuilder->@Inject::onFromJsonClear(Lcom/google/gson/JsonObject;Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-tag-extensions-v0 won't be passed a CallbackInfoReturnable as a result +[19:52:01] [Render thread/INFO] (net.minecraft.recipe.RecipeManager) Loaded 7 recipes +[19:52:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LootPoolBuilderHooks from fabric-loot-tables-v1.mixins.json into net.minecraft.loot.LootPool$Builder +[19:52:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-loot-tables-v1.mixins.json:LootPoolBuilderHooks: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:01] [Render thread/INFO] (net.minecraft.advancement.AdvancementManager) Loaded 1143 advancements +[19:52:01] [Render thread/INFO] (io.github.apace100.apoli.Apoli) Finished loading powers from data files. Registry contains 104 powers. +[19:52:01] [Render thread/ERROR] (io.github.apace100.origins.Origins) Origin "aspects:cryodisabled" contained unregistered power: "aspects:frost_walker" +[19:52:01] [Render thread/ERROR] (io.github.apace100.origins.Origins) Origin "aspects:cryodisabled" contained unregistered power: "aspects:cryo_secondary" +[19:52:01] [Render thread/ERROR] (io.github.apace100.origins.Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:water_breathing" +[19:52:01] [Render thread/ERROR] (io.github.apace100.origins.Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:constitution" +[19:52:01] [Render thread/ERROR] (io.github.apace100.origins.Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:fire_damage" +[19:52:01] [Render thread/INFO] (io.github.apace100.origins.Origins) Finished loading origins from data files. Registry contains 16 origins. +[19:52:01] [Render thread/INFO] (io.github.apace100.origins.Origins) Trying to read layer file: aspects:elements +[19:52:01] [Render thread/INFO] (io.github.apace100.origins.Origins) Trying to read layer file: origins:origin +[19:52:01] [Render thread/INFO] (io.github.apace100.origins.Origins) Trying to read layer file: aspects:origins +[19:52:01] [Render thread/INFO] (io.github.apace100.origins.Origins) Finished loading origin layers from data files. Read 3 layers. +[19:52:01] [Render thread/INFO] (net.fabricmc.fabric.impl.biome.modification.BiomeModificationImpl) Applied 0 biome modifications to 0 of 61 new biomes in 2.166 ms +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Reading registry data from /Users/adellanicholson/Documents/Aspects/run/saves/New World/data/fabricRegistry.dat +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Reading registry data from /Users/adellanicholson/Documents/Aspects/run/saves/New World/data/fabricRegistry.dat.1 +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Reading registry data from /Users/adellanicholson/Documents/Aspects/run/saves/New World/data/fabricRegistry.dat.2 +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Starting registry save +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:game_event +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:sound_event +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:fluid +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:mob_effect +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:enchantment +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:entity_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:item +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:potion +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:particle_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block_entity_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:motive +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:custom_stat +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:chunk_status +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:rule_test +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:pos_rule_test +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:menu +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:recipe_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:recipe_serializer +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:attribute +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:position_source_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:stat_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:villager_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:villager_profession +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:point_of_interest_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:memory_module_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:sensor_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:schedule +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:activity +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_pool_entry_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_function_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_condition_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_number_provider_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_nbt_provider_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_score_provider_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:float_provider_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:int_provider_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:height_provider_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block_predicate_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/carver +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/feature +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_feature +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_piece +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/placement_modifier_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/block_state_provider_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/foliage_placer_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/trunk_placer_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/tree_decorator_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/feature_size_type +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/biome_source +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/chunk_generator +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/material_condition +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/material_rule +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_processor +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_pool_element +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:power_factory +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:entity_condition +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:bientity_condition +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:item_condition +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:block_condition +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:damage_condition +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:fluid_condition +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:biome_condition +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:entity_action +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:item_action +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:block_action +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:bientity_action +[19:52:01] [Render thread/DEBUG] (FabricRegistrySync) Not saving empty registry data +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:dimension has been marked as modded, registry entry minecraft:overworld was changed +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Registry minecraft:dimension has been marked as modded, registry entry minecraft:overworld was changed +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Starting registry save +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:game_event +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:sound_event +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:fluid +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:mob_effect +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:enchantment +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:entity_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:item +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:potion +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:particle_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block_entity_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:motive +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:custom_stat +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:chunk_status +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:rule_test +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:pos_rule_test +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:menu +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:recipe_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:recipe_serializer +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:attribute +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:position_source_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:stat_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:villager_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:villager_profession +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:point_of_interest_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:memory_module_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:sensor_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:schedule +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:activity +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_pool_entry_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_function_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_condition_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_number_provider_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_nbt_provider_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_score_provider_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:float_provider_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:int_provider_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:height_provider_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block_predicate_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/carver +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/feature +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_feature +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_piece +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/placement_modifier_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/block_state_provider_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/foliage_placer_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/trunk_placer_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/tree_decorator_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/feature_size_type +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/biome_source +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/chunk_generator +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/material_condition +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/material_rule +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_processor +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_pool_element +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:power_factory +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:entity_condition +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:bientity_condition +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:item_condition +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:block_condition +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:damage_condition +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:fluid_condition +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:biome_condition +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:entity_action +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:item_action +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:block_action +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:bientity_action +[19:52:02] [Render thread/DEBUG] (FabricRegistrySync) Not saving empty registry data +[19:52:03] [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' +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LoginMixin from apoli.mixins.json into net.minecraft.server.PlayerManager +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$syncPowerTypes$1(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/server/network/ServerPlayerEntity;)V to mdcc481c$lambda$syncPowerTypes$1$0 in apoli.mixins.json:LoginMixin +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$syncPowerTypes$0(Lnet/minecraft/network/PacketByteBuf;Ljava/util/Map$Entry;)V to mdcc481c$lambda$syncPowerTypes$0$1 in apoli.mixins.json:LoginMixin +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing PlayerManagerMixin from fabric-entity-events-v1.mixins.json into net.minecraft.server.PlayerManager +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:PlayerManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing RegistrySyncMixin from calio.mixins.json into net.minecraft.server.PlayerManager +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:RegistrySyncMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing common.MixinPlayerManager from mixins.cardinal_components_entity.json into net.minecraft.server.PlayerManager +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinPlayerManager from fabric-registry-sync-v0.mixins.json into net.minecraft.server.PlayerManager +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinPlayerManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing LoginMixin from origins.mixins.json into net.minecraft.server.PlayerManager +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:LoginMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$openOriginsGui$2(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/server/network/ServerPlayerEntity;)V to mdcc481c$lambda$openOriginsGui$2$2 in origins.mixins.json:LoginMixin +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$openOriginsGui$1(Lnet/minecraft/network/PacketByteBuf;Lio/github/apace100/origins/component/OriginComponent;Lio/github/apace100/origins/origin/OriginLayer;)V to mdcc481c$lambda$openOriginsGui$1$3 in origins.mixins.json:LoginMixin +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$openOriginsGui$0(Lnet/minecraft/network/PacketByteBuf;Ljava/util/Map$Entry;)V to mdcc481c$lambda$openOriginsGui$0$4 in origins.mixins.json:LoginMixin +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing PlayerManagerMixin from fabric-networking-api-v1.mixins.json into net.minecraft.server.PlayerManager +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:PlayerManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::syncPowerTypes(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::syncPowerTypes(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::syncPowerTypes(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokeOnRemovedCallback(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokeOnRemovedCallback(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokeOnRemovedCallback(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokePowerRemovedCallback(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli doesn't use it's CallbackInfoReturnable +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokePowerRemovedCallback(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli has 0 override(s) in child classes +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokePowerRemovedCallback(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli won't be passed a CallbackInfoReturnable as a result +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokePowerRespawnCallback(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/math/BlockPos;FZLnet/minecraft/server/world/ServerWorld;Ljava/util/Optional;Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/server/network/ServerPlayerEntity;Z)V from mod apoli doesn't use it's CallbackInfoReturnable +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokePowerRespawnCallback(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/math/BlockPos;FZLnet/minecraft/server/world/ServerWorld;Ljava/util/Optional;Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/server/network/ServerPlayerEntity;Z)V from mod apoli has 0 override(s) in child classes +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:LoginMixin->@Inject::invokePowerRespawnCallback(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;Lnet/minecraft/util/math/BlockPos;FZLnet/minecraft/server/world/ServerWorld;Ljava/util/Optional;Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/server/network/ServerPlayerEntity;Z)V from mod apoli won't be passed a CallbackInfoReturnable as a result +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-entity-events-v1.mixins.json:PlayerManagerMixin->@Inject::afterRespawn(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-entity-events-v1 does use it's CallbackInfoReturnable +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:RegistrySyncMixin->@Inject::autoSyncDataObjectRegistries(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod calio doesn't use it's CallbackInfo +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:RegistrySyncMixin->@Inject::autoSyncDataObjectRegistries(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod calio has 0 override(s) in child classes +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) calio.mixins.json:RegistrySyncMixin->@Inject::autoSyncDataObjectRegistries(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod calio won't be passed a CallbackInfo as a result +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager->@Inject::onPlayerLogIn(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager->@Inject::onPlayerLogIn(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager->@Inject::onPlayerLogIn(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager->@Inject::sendPlayerStatus(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager->@Inject::sendPlayerStatus(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager->@Inject::sendPlayerStatus(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinPlayerManager->@Inject::respawnPlayer(Lnet/minecraft/server/network/ServerPlayerEntity;ZLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod cardinal-components-entity does use it's CallbackInfoReturnable +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinPlayerManager->@Inject::onPlayerConnect(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 doesn't use it's CallbackInfo +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinPlayerManager->@Inject::onPlayerConnect(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 has 0 override(s) in child classes +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-registry-sync-v0.mixins.json:MixinPlayerManager->@Inject::onPlayerConnect(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-registry-sync-v0 won't be passed a CallbackInfo as a result +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:LoginMixin->@Inject::openOriginsGui(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins doesn't use it's CallbackInfo +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:LoginMixin->@Inject::openOriginsGui(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins has 0 override(s) in child classes +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:LoginMixin->@Inject::openOriginsGui(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod origins won't be passed a CallbackInfo as a result +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:PlayerManagerMixin->@Inject::handlePlayerConnection(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:PlayerManagerMixin->@Inject::handlePlayerConnection(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:52:03] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:PlayerManagerMixin->@Inject::handlePlayerConnection(Lnet/minecraft/network/ClientConnection;Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:52:03] [Server thread/INFO] (net.minecraft.server.integrated.IntegratedServer) Starting integrated minecraft server version 1.18 +[19:52:03] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Generating keypair +[19:52:03] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing ServerWorldEntityLoaderMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.server.world.ServerWorld$ServerEntityHandler +[19:52:03] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldEntityLoaderMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:03] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldEntityLoaderMixin->@Inject::invokeEntityLoadEvent(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:52:03] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ServerWorldEntityLoaderMixin->@Inject::invokeEntityUnloadEvent(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:52:03] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing accessor.ThreadedAnvilChunkStorageAccessor from fabric-networking-api-v1.mixins.json into net.minecraft.server.world.ThreadedAnvilChunkStorage +[19:52:03] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:accessor.ThreadedAnvilChunkStorageAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:03] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing ThreadedAnvilChunkStorageMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.server.world.ThreadedAnvilChunkStorage +[19:52:03] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ThreadedAnvilChunkStorageMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:03] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ThreadedAnvilChunkStorageMixin->@Inject::onChunkUnload(Lnet/minecraft/server/world/ChunkHolder;Ljava/util/concurrent/CompletableFuture;JLnet/minecraft/world/chunk/Chunk;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:52:03] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ThreadedAnvilChunkStorageMixin->@Inject::onChunkUnload(Lnet/minecraft/server/world/ChunkHolder;Ljava/util/concurrent/CompletableFuture;JLnet/minecraft/world/chunk/Chunk;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:52:03] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ThreadedAnvilChunkStorageMixin->@Inject::onChunkUnload(Lnet/minecraft/server/world/ChunkHolder;Ljava/util/concurrent/CompletableFuture;JLnet/minecraft/world/chunk/Chunk;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:52:03] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:ThreadedAnvilChunkStorageMixin->@Inject::onChunkLoad(Lnet/minecraft/server/world/ChunkHolder;Lnet/minecraft/world/chunk/Chunk;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-lifecycle-events-v1 does use it's CallbackInfoReturnable +[19:52:04] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Preparing start region for dimension minecraft:overworld +[19:52:06] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing ChunkSerializerMixin from fabric-structure-api-v1.mixins.json into net.minecraft.world.ChunkSerializer +[19:52:06] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-structure-api-v1.mixins.json:ChunkSerializerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:06] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$static$0()Ljava/lang/Boolean; to mdcc481c$lambda$static$0$0 in fabric-structure-api-v1.mixins.json:ChunkSerializerMixin +[19:52:06] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-structure-api-v1.mixins.json:ChunkSerializerMixin->@Inject::removeNullKeys(Lnet/minecraft/util/math/ChunkPos;Lnet/minecraft/nbt/NbtCompound;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-structure-api-v1 does use it's CallbackInfoReturnable +[19:52:06] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:06] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:06] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:06] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:06] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:06] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:07] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:07] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:08] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:08] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:09] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:12] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:12] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:12] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:12] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:12] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:12] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:12] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 0% +[19:52:13] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 20% +[19:52:13] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 63% +[19:52:14] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Preparing spawn area: 97% +[19:52:14] [Render thread/INFO] (net.minecraft.server.WorldGenerationProgressLogger) Time elapsed: 10004 ms +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing accessor.EntityTrackerAccessor from fabric-networking-api-v1.mixins.json into net.minecraft.server.world.ThreadedAnvilChunkStorage$EntityTracker +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:accessor.EntityTrackerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing common.MixinEntityTrackerEntry from mixins.cardinal_components_entity.json into net.minecraft.server.network.EntityTrackerEntry +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntityTrackerEntry: Class version 60 required is higher than the class version supported by the current version of Mixin (JAVA_8 supports class version 52) +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing EntityTrackerEntryMixin from fabric-networking-api-v1.mixins.json into net.minecraft.server.network.EntityTrackerEntry +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:EntityTrackerEntryMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntityTrackerEntry->@Inject::onStartedTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity doesn't use it's CallbackInfo +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntityTrackerEntry->@Inject::onStartedTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity has 0 override(s) in child classes +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) mixins.cardinal_components_entity.json:common.MixinEntityTrackerEntry->@Inject::onStartedTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod cardinal-components-entity won't be passed a CallbackInfo as a result +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:EntityTrackerEntryMixin->@Inject::onStartTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:EntityTrackerEntryMixin->@Inject::onStartTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:EntityTrackerEntryMixin->@Inject::onStartTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:EntityTrackerEntryMixin->@Inject::onStopTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 doesn't use it's CallbackInfo +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:EntityTrackerEntryMixin->@Inject::onStopTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 has 0 override(s) in child classes +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:EntityTrackerEntryMixin->@Inject::onStopTracking(Lnet/minecraft/server/network/ServerPlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-networking-api-v1 won't be passed a CallbackInfo as a result +[19:52:14] [Server thread/INFO] (net.minecraft.server.integrated.IntegratedServer) Changing view distance to 12, from 10 +[19:52:14] [Server thread/INFO] (net.minecraft.server.integrated.IntegratedServer) Changing simulation distance to 12, from 0 +[19:52:14] [Render thread/DEBUG] (io.netty.channel.MultithreadEventLoopGroup) -Dio.netty.eventLoopThreads: 32 +[19:52:14] [Render thread/DEBUG] (io.netty.channel.nio.NioEventLoop) -Dio.netty.noKeySetOptimization: false +[19:52:14] [Render thread/DEBUG] (io.netty.channel.nio.NioEventLoop) -Dio.netty.selectorAutoRebuildThreshold: 512 +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) -Dio.netty.noUnsafe: false +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) Java version: 17 +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) sun.misc.Unsafe.theUnsafe: available +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) sun.misc.Unsafe.copyMemory: available +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) java.nio.Buffer.address: available +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) direct buffer constructor: unavailable java.lang.UnsupportedOperationException: Reflective setAccessible(true) disabled at io.netty.util.internal.ReflectionUtil.trySetAccessible(ReflectionUtil.java:31) ~[netty-all-4.1.68.Final.jar:4.1.68.Final] at io.netty.util.internal.PlatformDependent0$4.run(PlatformDependent0.java:253) ~[netty-all-4.1.68.Final.jar:4.1.68.Final] @@ -2213,9 +2216,10 @@ java.lang.UnsupportedOperationException: Reflective setAccessible(true) disabled at net.minecraft.client.Mouse.method_22684(Mouse.java:165) ~[minecraft-project-@-mapped.jar:?] at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) [lwjgl-glfw-3.2.1.jar:build 12] at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.1.jar:build 12] - at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3129) [lwjgl-glfw-3.2.1.jar:build 12] - at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:218) [minecraft-project-@-mapped.jar:?] - at net.minecraft.client.MinecraftClient.render(MinecraftClient.java:1145) [minecraft-project-@-mapped.jar:?] + at org.lwjgl.glfw.GLFW.glfwPollEvents(GLFW.java:3050) [lwjgl-glfw-3.2.1.jar:build 12] + at com.mojang.blaze3d.systems.RenderSystem.flipFrame(RenderSystem.java:193) [minecraft-project-@-mapped.jar:?] + at net.minecraft.client.util.Window.swapBuffers(Window.java:310) [minecraft-project-@-mapped.jar:?] + at net.minecraft.client.MinecraftClient.render(MinecraftClient.java:1142) [minecraft-project-@-mapped.jar:?] at net.minecraft.client.MinecraftClient.run(MinecraftClient.java:733) [minecraft-project-@-mapped.jar:?] at net.minecraft.client.main.Main.main(Main.java:236) [minecraft-project-@-mapped.jar:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] @@ -2226,8 +2230,8 @@ java.lang.UnsupportedOperationException: Reflective setAccessible(true) disabled at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:77) [fabric-loader-0.12.10.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) [fabric-loader-0.12.10.jar:?] at net.fabricmc.devlaunchinjector.Main.main(Main.java:86) [dev-launch-injector-0.2.1+build.8.jar:?] -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) java.nio.Bits.unaligned: available, true -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) java.nio.Bits.unaligned: available, true +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable java.lang.IllegalAccessException: class io.netty.util.internal.PlatformDependent0$6 cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to unnamed module @1796cf6c at jdk.internal.reflect.Reflection.newIllegalAccessException(Reflection.java:392) ~[?:?] at java.lang.reflect.AccessibleObject.checkAccess(AccessibleObject.java:674) ~[?:?] @@ -2268,9 +2272,10 @@ java.lang.IllegalAccessException: class io.netty.util.internal.PlatformDependent at net.minecraft.client.Mouse.method_22684(Mouse.java:165) ~[minecraft-project-@-mapped.jar:?] at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) [lwjgl-glfw-3.2.1.jar:build 12] at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.1.jar:build 12] - at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3129) [lwjgl-glfw-3.2.1.jar:build 12] - at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:218) [minecraft-project-@-mapped.jar:?] - at net.minecraft.client.MinecraftClient.render(MinecraftClient.java:1145) [minecraft-project-@-mapped.jar:?] + at org.lwjgl.glfw.GLFW.glfwPollEvents(GLFW.java:3050) [lwjgl-glfw-3.2.1.jar:build 12] + at com.mojang.blaze3d.systems.RenderSystem.flipFrame(RenderSystem.java:193) [minecraft-project-@-mapped.jar:?] + at net.minecraft.client.util.Window.swapBuffers(Window.java:310) [minecraft-project-@-mapped.jar:?] + at net.minecraft.client.MinecraftClient.render(MinecraftClient.java:1142) [minecraft-project-@-mapped.jar:?] at net.minecraft.client.MinecraftClient.run(MinecraftClient.java:733) [minecraft-project-@-mapped.jar:?] at net.minecraft.client.main.Main.main(Main.java:236) [minecraft-project-@-mapped.jar:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] @@ -2281,537 +2286,768 @@ java.lang.IllegalAccessException: class io.netty.util.internal.PlatformDependent at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:77) [fabric-loader-0.12.10.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) [fabric-loader-0.12.10.jar:?] at net.fabricmc.devlaunchinjector.Main.main(Main.java:86) [dev-launch-injector-0.2.1+build.8.jar:?] -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) java.nio.DirectByteBuffer.(long, int): unavailable -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) sun.misc.Unsafe: available -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) maxDirectMemory: 8589934592 bytes (maybe) -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) -Dio.netty.tmpdir: /var/folders/hd/4xsb86b57kxgdy1rw0c11hn00000gn/T (java.io.tmpdir) -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) -Dio.netty.bitMode: 64 (sun.arch.data.model) -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) Platform: MacOS -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) -Dio.netty.maxDirectMemory: -1 bytes -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) -Dio.netty.uninitializedArrayAllocationThreshold: -1 -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.CleanerJava9) java.nio.ByteBuffer.cleaner(): available -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) -Dio.netty.noPreferDirect: false -[17:01:26] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) org.jctools-core.MpscChunkedArrayQueue: available -[17:01:26] [Render thread/DEBUG] (io.netty.channel.DefaultChannelId) -Dio.netty.processId: 6171 (auto-detected) -[17:01:26] [Render thread/DEBUG] (io.netty.util.NetUtil) -Djava.net.preferIPv4Stack: false -[17:01:26] [Render thread/DEBUG] (io.netty.util.NetUtil) -Djava.net.preferIPv6Addresses: false -[17:01:26] [Render thread/DEBUG] (io.netty.util.NetUtilInitializations) Loopback interface: lo0 (lo0, 0:0:0:0:0:0:0:1%lo0) -[17:01:26] [Render thread/DEBUG] (io.netty.util.NetUtil) Failed to get SOMAXCONN from sysctl and file /proc/sys/net/core/somaxconn. Default: 128 -[17:01:26] [Render thread/DEBUG] (io.netty.channel.DefaultChannelId) -Dio.netty.machineId: ac:de:48:ff:fe:00:11:22 (auto-detected) -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.numHeapArenas: 32 -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.numDirectArenas: 32 -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.pageSize: 8192 -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.maxOrder: 11 -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.chunkSize: 16777216 -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.smallCacheSize: 256 -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.normalCacheSize: 64 -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.maxCachedBufferCapacity: 32768 -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.cacheTrimInterval: 8192 -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.cacheTrimIntervalMillis: 0 -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.useCacheForAllThreads: true -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023 -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.ByteBufUtil) -Dio.netty.allocator.type: pooled -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.ByteBufUtil) -Dio.netty.threadLocalDirectBufferSize: 0 -[17:01:26] [Render thread/DEBUG] (io.netty.buffer.ByteBufUtil) -Dio.netty.maxThreadLocalCharBufferSize: 16384 -[17:01:26] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) Mixing accessor.CustomPayloadC2SPacketAccessor from fabric-networking-api-v1.mixins.json into net.minecraft.network.packet.c2s.play.CustomPayloadC2SPacket -[17:01:26] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:accessor.CustomPayloadC2SPacketAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) Mixing accessor.LoginQueryResponseC2SPacketAccessor from fabric-networking-api-v1.mixins.json into net.minecraft.network.packet.c2s.login.LoginQueryResponseC2SPacket -[17:01:26] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:accessor.LoginQueryResponseC2SPacketAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Netty Local Client IO #0/DEBUG] (io.netty.util.Recycler) -Dio.netty.recycler.maxCapacityPerThread: 4096 -[17:01:26] [Netty Local Client IO #0/DEBUG] (io.netty.util.Recycler) -Dio.netty.recycler.maxSharedCapacityFactor: 2 -[17:01:26] [Netty Local Client IO #0/DEBUG] (io.netty.util.Recycler) -Dio.netty.recycler.linkCapacity: 16 -[17:01:26] [Netty Local Client IO #0/DEBUG] (io.netty.util.Recycler) -Dio.netty.recycler.ratio: 8 -[17:01:26] [Netty Local Client IO #0/DEBUG] (io.netty.util.Recycler) -Dio.netty.recycler.delayedQueue.ratio: 8 -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientLoginNetworkAddon for Client) Handling inbound login response with id 0 and channel with name origins:handshake -[17:01:26] [Server thread/DEBUG] (io.netty.buffer.AbstractByteBuf) -Dio.netty.buffer.checkAccessible: true -[17:01:26] [Server thread/DEBUG] (io.netty.buffer.AbstractByteBuf) -Dio.netty.buffer.checkBounds: true -[17:01:26] [Server thread/DEBUG] (io.netty.util.ResourceLeakDetectorFactory) Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@4d9ac540 -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientLoginNetworkAddon for Client) Handling inbound login response with id 1 and channel with name fabric-networking-api-v1:early_registration -[17:01:26] [Netty Server IO #1/DEBUG] (ServerLoginNetworkAddon for local:E:91aab204) Handling inbound login query with id 0 -[17:01:26] [Netty Local Client IO #0/DEBUG] (fabric-networking-api-v1) Received accepted channels from the server -[17:01:26] [Netty Local Client IO #0/DEBUG] (fabric-networking-api-v1) Sent accepted channels to the server -[17:01:26] [Netty Server IO #1/DEBUG] (ServerLoginNetworkAddon for local:E:91aab204) Handling inbound login query with id 1 -[17:01:26] [Netty Server IO #1/DEBUG] (fabric-networking-api-v1) Received accepted channels from the client for "com.mojang.authlib.GameProfile@1cccdd74[id=27903c96-6327-3ab4-9463-21017fd8955d,name=Player131,properties={},legacy=false] (local:E:91aab204)" -[17:01:26] [Server thread/DEBUG] (fabric-networking-api-v1) Sent accepted channels to the client for "com.mojang.authlib.GameProfile@1cccdd74[id=27903c96-6327-3ab4-9463-21017fd8955d,name=Player131,properties={},legacy=false] (local:E:91aab204)" -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing HungerManagerMixin from apoli.mixins.json into net.minecraft.entity.player.HungerManager -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:HungerManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$executeAdditionalEatAction$4(Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ModifyFoodPower;)Z to mdf693ec$lambda$executeAdditionalEatAction$4$0 in apoli.mixins.json:HungerManagerMixin -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifySaturation$3(Lio/github/apace100/apoli/power/ModifyFoodPower;)Ljava/util/stream/Stream; to mdf693ec$lambda$modifySaturation$3$1 in apoli.mixins.json:HungerManagerMixin -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifySaturation$2(Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ModifyFoodPower;)Z to mdf693ec$lambda$modifySaturation$2$2 in apoli.mixins.json:HungerManagerMixin -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyHunger$1(Lio/github/apace100/apoli/power/ModifyFoodPower;)Ljava/util/stream/Stream; to mdf693ec$lambda$modifyHunger$1$3 in apoli.mixins.json:HungerManagerMixin -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyHunger$0(Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ModifyFoodPower;)Z to mdf693ec$lambda$modifyHunger$0$4 in apoli.mixins.json:HungerManagerMixin -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:HungerManagerMixin->@Inject::executeAdditionalEatAction(Lnet/minecraft/item/Item;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:HungerManagerMixin->@Inject::executeAdditionalEatAction(Lnet/minecraft/item/Item;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:HungerManagerMixin->@Inject::executeAdditionalEatAction(Lnet/minecraft/item/Item;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:HungerManagerMixin->@Inject::cachePlayer(Lnet/minecraft/entity/player/PlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:HungerManagerMixin->@Inject::cachePlayer(Lnet/minecraft/entity/player/PlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:HungerManagerMixin->@Inject::cachePlayer(Lnet/minecraft/entity/player/PlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing CraftingInventoryAccessor from apoli.mixins.json into net.minecraft.inventory.CraftingInventory -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingInventoryAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing CraftingInventoryMixin from apoli.mixins.json into net.minecraft.inventory.CraftingInventory -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingInventoryMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Netty Local Client IO #0/DEBUG] (FabricRegistrySync) Registry minecraft:dimension_type has been marked as modded, registry entry minecraft:overworld was changed -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing OriginUpgradeMixin from origins.mixins.json into net.minecraft.advancement.PlayerAdvancementTracker -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:OriginUpgradeMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$checkOriginUpgrade$0(Lnet/minecraft/advancement/Advancement;Lio/github/apace100/origins/origin/OriginLayer;Lio/github/apace100/origins/origin/Origin;)V to mdf693ec$lambda$checkOriginUpgrade$0$0 in origins.mixins.json:OriginUpgradeMixin -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:OriginUpgradeMixin->@Inject::checkOriginUpgrade(Lnet/minecraft/advancement/Advancement;Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;ZLnet/minecraft/advancement/AdvancementProgress;Z)V from mod origins doesn't use it's CallbackInfoReturnable -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:OriginUpgradeMixin->@Inject::checkOriginUpgrade(Lnet/minecraft/advancement/Advancement;Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;ZLnet/minecraft/advancement/AdvancementProgress;Z)V from mod origins has 0 override(s) in child classes -[17:01:26] [Server thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:OriginUpgradeMixin->@Inject::checkOriginUpgrade(Lnet/minecraft/advancement/Advancement;Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;ZLnet/minecraft/advancement/AdvancementProgress;Z)V from mod origins won't be passed a CallbackInfoReturnable as a result -[17:01:26] [Server thread/INFO] (net.minecraft.server.PlayerManager) Player131[local:E:91aab204] logged in with entity id 183 at (-52.458286356428445, 64.0, -78.3884941042894) -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Creating registry sync packet -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:game_event -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:sound_event -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:fluid -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:mob_effect -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Syncing registry: minecraft:block -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Syncing registry: minecraft:enchantment -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Syncing registry: minecraft:entity_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Syncing registry: minecraft:item -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:potion -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:particle_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:block_entity_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:motive -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:custom_stat -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:chunk_status -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:rule_test -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:pos_rule_test -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:menu -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:recipe_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:recipe_serializer -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:attribute -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:position_source_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:stat_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:villager_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:villager_profession -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:point_of_interest_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:memory_module_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:sensor_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:schedule -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:activity -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:loot_pool_entry_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:loot_function_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:loot_condition_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:loot_number_provider_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:loot_nbt_provider_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:loot_score_provider_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:float_provider_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:int_provider_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:height_provider_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:block_predicate_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/carver -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/feature -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/structure_feature -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/structure_piece -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/placement_modifier_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/block_state_provider_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/foliage_placer_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/trunk_placer_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/tree_decorator_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/feature_size_type -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/biome_source -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/chunk_generator -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/material_condition -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/material_rule -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/structure_processor -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/structure_pool_element -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:power_factory -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:entity_condition -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:bientity_condition -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:item_condition -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:block_condition -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:damage_condition -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:fluid_condition -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:biome_condition -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:entity_action -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:item_action -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:block_action -[17:01:26] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:bientity_action -[17:01:26] [Netty Local Client IO #0/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/noise_settings has been marked as modded, registry entry minecraft:overworld was changed -[17:01:26] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Player131 joined the game -[17:01:26] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) Mixing ClientAdvancementManagerAccessor from apoli.mixins.json into net.minecraft.client.network.ClientAdvancementManager -[17:01:26] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientAdvancementManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) Mixing client.ClientCommandSourceMixin from fabric-command-api-v1.mixins.json into net.minecraft.client.network.ClientCommandSource -[17:01:26] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.ClientCommandSourceMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "minecraft:register" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "minecraft:brand" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "fabric:registry/sync" -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinClientPlayerInteractionManager from fabric-events-interaction-v0.mixins.json into net.minecraft.client.network.ClientPlayerInteractionManager -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinClientPlayerInteractionManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayerInteractionManagerMixin from fabric-item-api-v1.mixins.json into net.minecraft.client.network.ClientPlayerInteractionManager -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:client.ClientPlayerInteractionManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ClientPlayerInteractionManagerAccessor from apoli.mixins.json into net.minecraft.client.network.ClientPlayerInteractionManager -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerInteractionManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ClientPlayerInteractionManagerMixin from apoli.mixins.json into net.minecraft.client.network.ClientPlayerInteractionManager -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerInteractionManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$executeBlockUseActions$1(Lnet/minecraft/util/hit/BlockHitResult;Lnet/minecraft/util/Hand;Lnet/minecraft/client/network/ClientPlayerEntity;Lio/github/apace100/apoli/power/ActionOnBlockUsePower;)Z to mdf693ec$lambda$executeBlockUseActions$1$0 in apoli.mixins.json:ClientPlayerInteractionManagerMixin -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventBlockInteraction$0(Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/util/hit/BlockHitResult;Lio/github/apace100/apoli/power/PreventBlockUsePower;)Z to mdf693ec$lambda$preventBlockInteraction$0$1 in apoli.mixins.json:ClientPlayerInteractionManagerMixin -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayerInteractionManagerMixin from mixins.reach-entity-attributes.json into net.minecraft.client.network.ClientPlayerInteractionManager -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinClientPlayerInteractionManager->@Inject::attackBlock(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/math/Direction;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinClientPlayerInteractionManager->@Inject::method_2902(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/math/Direction;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinClientPlayerInteractionManager->@Inject::interactBlock(Lnet/minecraft/client/network/ClientPlayerEntity;Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinClientPlayerInteractionManager->@Inject::interactItem(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/util/Hand;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinClientPlayerInteractionManager->@Inject::attackEntity(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-events-interaction-v0 does use it's CallbackInfo -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinClientPlayerInteractionManager->@Inject::interactEntityAtLocation(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/entity/Entity;Lnet/minecraft/util/hit/EntityHitResult;Lnet/minecraft/util/Hand;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerInteractionManagerMixin->@Inject::preventBlockInteraction(Lnet/minecraft/client/network/ClientPlayerEntity;Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerInteractionManagerMixin->@Inject::executeBlockUseActions(Lnet/minecraft/client/network/ClientPlayerEntity;Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientChunkManagerMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.client.world.ClientChunkManager -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientChunkManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientChunkManagerMixin->@Inject::onChunkLoad(IILnet/minecraft/network/PacketByteBuf;Lnet/minecraft/nbt/NbtCompound;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-lifecycle-events-v1 does use it's CallbackInfoReturnable -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientChunkManagerMixin->@Inject::onChunkUnload(IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;ILnet/minecraft/world/chunk/WorldChunk;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientChunkManagerMixin->@Inject::onChunkUnload(IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;ILnet/minecraft/world/chunk/WorldChunk;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientChunkManagerMixin->@Inject::onChunkUnload(IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;ILnet/minecraft/world/chunk/WorldChunk;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientWorldEntityLoaderMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.client.world.ClientWorld$ClientEntityHandler -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientWorldEntityLoaderMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientWorldEntityLoaderMixin->@Inject::invokeLoadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientWorldEntityLoaderMixin->@Inject::invokeUnloadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing DimensionEffectsAccessor from fabric-rendering-v1.mixins.json into net.minecraft.client.render.DimensionEffects -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:DimensionEffectsAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getIdentifierMap()Lit/unimi/dsi/fastutil/objects/Object2ObjectMap; to getIdentifierMap_$md$f693ec$0 in fabric-rendering-v1.mixins.json:DimensionEffectsAccessor -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinBlockRenderLayer from fabric-blockrenderlayer-v1.mixins.json into net.minecraft.client.render.RenderLayers -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-blockrenderlayer-v1.mixins.json:MixinBlockRenderLayer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-blockrenderlayer-v1.mixins.json:MixinBlockRenderLayer->@Inject::onInitialize(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-blockrenderlayer-v1 doesn't use it's CallbackInfo -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinChunkRenderer from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.chunk.ChunkBuilder$BuiltChunk -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinChunkRebuildTask from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.chunk.ChunkBuilder$BuiltChunk$RebuildTask -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask->@Inject::hookChunkBuild(FFFLnet/minecraft/client/render/chunk/ChunkBuilder$ChunkData;Lnet/minecraft/client/render/chunk/BlockBufferBuilderStorage;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-indigo doesn't use it's CallbackInfoReturnable -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask->@Inject::hookChunkBuild(FFFLnet/minecraft/client/render/chunk/ChunkBuilder$ChunkData;Lnet/minecraft/client/render/chunk/BlockBufferBuilderStorage;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-indigo has 0 override(s) in child classes -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask->@Inject::hookChunkBuild(FFFLnet/minecraft/client/render/chunk/ChunkBuilder$ChunkData;Lnet/minecraft/client/render/chunk/BlockBufferBuilderStorage;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-indigo won't be passed a CallbackInfoReturnable as a result -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask->@Inject::hookRebuildChunkReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-indigo doesn't use it's CallbackInfoReturnable -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask->@Inject::hookRebuildChunkReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-indigo has 0 override(s) in child classes -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask->@Inject::hookRebuildChunkReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-indigo won't be passed a CallbackInfoReturnable as a result -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinChunkRenderData from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.chunk.ChunkBuilder$ChunkData -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRenderData: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "apoli:power_list" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "origins:origin_list" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "origins:layer_list" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "origins:badge_list" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:26] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player131) Handling inbound packet from channel with name "minecraft:brand" -[17:01:26] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player131) Handling inbound packet from channel with name "minecraft:register" -[17:01:26] [Render thread/INFO] (net.minecraft.advancement.AdvancementManager) Loaded 0 advancements -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinChunkRendererRegionBuilder from fabric-rendering-data-attachment-v1.mixins.json into net.minecraft.client.render.chunk.ChunkRendererRegionBuilder -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-data-attachment-v1.mixins.json:client.MixinChunkRendererRegionBuilder: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-data-attachment-v1.mixins.json:client.MixinChunkRendererRegionBuilder->@Inject::create(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/math/BlockPos;ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;IIII[[Lnet/minecraft/client/render/chunk/ChunkRendererRegionBuilder$ClientChunk;)V from mod fabric-rendering-data-attachment-v1 does use it's CallbackInfoReturnable -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-data-attachment-v1.mixins.json:client.MixinChunkRendererRegionBuilder->@Inject::create(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/math/BlockPos;ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;IIII[[Lnet/minecraft/client/render/chunk/ChunkRendererRegionBuilder$ClientChunk;)V from mod fabric-rendering-data-attachment-v1 does use it's CallbackInfoReturnable -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ModelPredicateProviderRegistryAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.client.item.ModelPredicateProviderRegistry -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:ModelPredicateProviderRegistryAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callRegister(Lnet/minecraft/util/Identifier;Lnet/minecraft/client/item/UnclampedModelPredicateProvider;)Lnet/minecraft/client/item/UnclampedModelPredicateProvider; to callRegister_$md$f693ec$0 in fabric-object-builder-v1.mixins.json:ModelPredicateProviderRegistryAccessor -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ModelPredicateProviderRegistrySpecificAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.client.item.ModelPredicateProviderRegistry -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:ModelPredicateProviderRegistrySpecificAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callRegister(Lnet/minecraft/item/Item;Lnet/minecraft/util/Identifier;Lnet/minecraft/client/item/UnclampedModelPredicateProvider;)V to callRegister_$md$f693ec$1 in fabric-object-builder-v1.mixins.json:ModelPredicateProviderRegistrySpecificAccessor -[17:01:26] [Render thread/DEBUG] (com.mojang.blaze3d.systems.RenderSystem) Growing IndexBuffer: Old limit 0, new limit 144. -[17:01:26] [Worker-Main-25/DEBUG] (com.mojang.authlib.HttpAuthenticationService) Opening connection to https://sessionserver.mojang.com/session/minecraft/profile/27903c9663273ab4946321017fd8955d?unsigned=true -[17:01:26] [Worker-Main-25/DEBUG] (com.mojang.authlib.HttpAuthenticationService) Reading data from https://sessionserver.mojang.com/session/minecraft/profile/27903c9663273ab4946321017fd8955d?unsigned=true -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing InGameOverlayRendererMixin from apoli.mixins.json into net.minecraft.client.gui.hud.InGameOverlayRenderer -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:InGameOverlayRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:26] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:InGameOverlayRendererMixin->@Inject::preventInWallOverlayRendering(Lnet/minecraft/client/texture/Sprite;Lnet/minecraft/client/util/math/MatrixStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo -[17:01:27] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ChunkRendererRegionMixin from apoli.mixins.json into net.minecraft.client.render.chunk.ChunkRendererRegion -[17:01:27] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ChunkRendererRegionMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:27] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinChunkRendererRegion from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.chunk.ChunkRendererRegion -[17:01:27] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRendererRegion: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:27] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinChunkRendererRegion from fabric-rendering-data-attachment-v1.mixins.json into net.minecraft.client.render.chunk.ChunkRendererRegion -[17:01:27] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-data-attachment-v1.mixins.json:client.MixinChunkRendererRegion: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) -[17:01:27] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ChunkRendererRegionMixin->@Inject::modifyBlockRender(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:01:27] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ChunkRendererRegionMixin->@Inject::modifyFluidRender(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable -[17:01:27] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:27] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:27] [Render thread/WARN] (net.minecraft.client.sound.SoundSystem) Unable to play empty soundEvent: minecraft:entity.cod.ambient -[17:01:27] [Render thread/DEBUG] (com.mojang.blaze3d.systems.RenderSystem) Growing IndexBuffer: Old limit 9360, new limit 21072. -[17:01:28] [Worker-Main-25/DEBUG] (com.mojang.authlib.HttpAuthenticationService) Successful read, server response was 204 -[17:01:28] [Worker-Main-25/DEBUG] (com.mojang.authlib.HttpAuthenticationService) Response: -[17:01:28] [Worker-Main-25/DEBUG] (com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService) Couldn't fetch profile properties for com.mojang.authlib.GameProfile@34be8d27[id=27903c96-6327-3ab4-9463-21017fd8955d,name=Player131,properties={},legacy=false] as the profile does not exist -[17:01:32] [Render thread/INFO] (net.minecraft.advancement.AdvancementManager) Loaded 7 advancements -[17:01:35] [Render thread/WARN] (net.minecraft.client.sound.SoundSystem) Unable to play empty soundEvent: minecraft:entity.salmon.ambient -[17:01:36] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player131) Handling inbound packet from channel with name "cardinal-components:entity_sync" -[17:01:38] [Server thread/INFO] (net.minecraft.server.integrated.IntegratedServer) Saving and pausing game... -[17:01:38] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld -[17:01:38] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether -[17:01:38] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Starting registry save -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:game_event -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:sound_event -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:fluid -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:mob_effect -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:enchantment -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:entity_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:item -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:potion -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:particle_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block_entity_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:motive -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:custom_stat -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:chunk_status -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:rule_test -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:pos_rule_test -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:menu -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:recipe_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:recipe_serializer -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:attribute -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:position_source_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:stat_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:villager_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:villager_profession -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:point_of_interest_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:memory_module_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:sensor_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:schedule -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:activity -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_pool_entry_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_function_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_condition_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_number_provider_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_nbt_provider_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_score_provider_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:float_provider_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:int_provider_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:height_provider_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block_predicate_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/carver -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/feature -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_feature -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_piece -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/placement_modifier_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/block_state_provider_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/foliage_placer_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/trunk_placer_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/tree_decorator_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/feature_size_type -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/biome_source -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/chunk_generator -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/material_condition -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/material_rule -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_processor -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_pool_element -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:power_factory -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:entity_condition -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:bientity_condition -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:item_condition -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:block_condition -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:damage_condition -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:fluid_condition -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:biome_condition -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:entity_action -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:item_action -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:block_action -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:bientity_action -[17:01:38] [Server thread/DEBUG] (FabricRegistrySync) Not saving empty registry data -[17:01:40] [Render thread/INFO] (net.minecraft.client.MinecraftClient) Stopping! -[17:01:40] [Server thread/INFO] (net.minecraft.server.network.ServerPlayNetworkHandler) Player131 lost connection: Disconnected -[17:01:40] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Player131 left the game -[17:01:40] [Server thread/INFO] (net.minecraft.server.network.ServerPlayNetworkHandler) Stopping singleplayer server as player logged out -[17:01:40] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Stopping server -[17:01:40] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Saving players -[17:01:40] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Saving worlds -[17:01:40] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld -[17:01:41] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether -[17:01:41] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Starting registry save -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:game_event -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:sound_event -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:fluid -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:mob_effect -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:enchantment -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:entity_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:item -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:potion -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:particle_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block_entity_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:motive -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:custom_stat -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:chunk_status -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:rule_test -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:pos_rule_test -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:menu -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:recipe_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:recipe_serializer -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:attribute -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:position_source_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:stat_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:villager_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:villager_profession -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:point_of_interest_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:memory_module_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:sensor_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:schedule -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:activity -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_pool_entry_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_function_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_condition_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_number_provider_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_nbt_provider_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_score_provider_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:float_provider_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:int_provider_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:height_provider_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block_predicate_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/carver -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/feature -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_feature -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_piece -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/placement_modifier_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/block_state_provider_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/foliage_placer_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/trunk_placer_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/tree_decorator_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/feature_size_type -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/biome_source -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/chunk_generator -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/material_condition -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/material_rule -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_processor -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_pool_element -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:power_factory -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:entity_condition -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:bientity_condition -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:item_condition -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:block_condition -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:damage_condition -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:fluid_condition -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:biome_condition -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:entity_action -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:item_action -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:block_action -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:bientity_action -[17:01:41] [Server thread/DEBUG] (FabricRegistrySync) Not saving empty registry data -[17:01:41] [Server thread/INFO] (net.minecraft.server.MinecraftServer) ThreadedAnvilChunkStorage (New World): All chunks are saved -[17:01:41] [Server thread/INFO] (net.minecraft.server.MinecraftServer) ThreadedAnvilChunkStorage (DIM-1): All chunks are saved -[17:01:41] [Server thread/INFO] (net.minecraft.server.MinecraftServer) ThreadedAnvilChunkStorage (DIM1): All chunks are saved -[17:01:41] [Server thread/INFO] (net.minecraft.server.MinecraftServer) ThreadedAnvilChunkStorage: All dimensions are saved +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent0) java.nio.DirectByteBuffer.(long, int): unavailable +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) sun.misc.Unsafe: available +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) maxDirectMemory: 8589934592 bytes (maybe) +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) -Dio.netty.tmpdir: /var/folders/hd/4xsb86b57kxgdy1rw0c11hn00000gn/T (java.io.tmpdir) +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) -Dio.netty.bitMode: 64 (sun.arch.data.model) +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) Platform: MacOS +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) -Dio.netty.maxDirectMemory: -1 bytes +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) -Dio.netty.uninitializedArrayAllocationThreshold: -1 +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.CleanerJava9) java.nio.ByteBuffer.cleaner(): available +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) -Dio.netty.noPreferDirect: false +[19:52:14] [Render thread/DEBUG] (io.netty.util.internal.PlatformDependent) org.jctools-core.MpscChunkedArrayQueue: available +[19:52:14] [Render thread/DEBUG] (io.netty.channel.DefaultChannelId) -Dio.netty.processId: 7917 (auto-detected) +[19:52:14] [Render thread/DEBUG] (io.netty.util.NetUtil) -Djava.net.preferIPv4Stack: false +[19:52:14] [Render thread/DEBUG] (io.netty.util.NetUtil) -Djava.net.preferIPv6Addresses: false +[19:52:14] [Render thread/DEBUG] (io.netty.util.NetUtilInitializations) Loopback interface: lo0 (lo0, 0:0:0:0:0:0:0:1%lo0) +[19:52:14] [Render thread/DEBUG] (io.netty.util.NetUtil) Failed to get SOMAXCONN from sysctl and file /proc/sys/net/core/somaxconn. Default: 128 +[19:52:14] [Render thread/DEBUG] (io.netty.channel.DefaultChannelId) -Dio.netty.machineId: ac:de:48:ff:fe:00:11:22 (auto-detected) +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.numHeapArenas: 32 +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.numDirectArenas: 32 +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.pageSize: 8192 +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.maxOrder: 11 +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.chunkSize: 16777216 +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.smallCacheSize: 256 +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.normalCacheSize: 64 +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.maxCachedBufferCapacity: 32768 +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.cacheTrimInterval: 8192 +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.cacheTrimIntervalMillis: 0 +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.useCacheForAllThreads: true +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.PooledByteBufAllocator) -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023 +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.ByteBufUtil) -Dio.netty.allocator.type: pooled +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.ByteBufUtil) -Dio.netty.threadLocalDirectBufferSize: 0 +[19:52:14] [Render thread/DEBUG] (io.netty.buffer.ByteBufUtil) -Dio.netty.maxThreadLocalCharBufferSize: 16384 +[19:52:14] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) Mixing accessor.CustomPayloadC2SPacketAccessor from fabric-networking-api-v1.mixins.json into net.minecraft.network.packet.c2s.play.CustomPayloadC2SPacket +[19:52:14] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:accessor.CustomPayloadC2SPacketAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:14] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) Mixing accessor.LoginQueryResponseC2SPacketAccessor from fabric-networking-api-v1.mixins.json into net.minecraft.network.packet.c2s.login.LoginQueryResponseC2SPacket +[19:52:14] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) fabric-networking-api-v1.mixins.json:accessor.LoginQueryResponseC2SPacketAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:14] [Netty Local Client IO #0/DEBUG] (io.netty.util.Recycler) -Dio.netty.recycler.maxCapacityPerThread: 4096 +[19:52:14] [Netty Local Client IO #0/DEBUG] (io.netty.util.Recycler) -Dio.netty.recycler.maxSharedCapacityFactor: 2 +[19:52:14] [Netty Local Client IO #0/DEBUG] (io.netty.util.Recycler) -Dio.netty.recycler.linkCapacity: 16 +[19:52:14] [Netty Local Client IO #0/DEBUG] (io.netty.util.Recycler) -Dio.netty.recycler.ratio: 8 +[19:52:14] [Netty Local Client IO #0/DEBUG] (io.netty.util.Recycler) -Dio.netty.recycler.delayedQueue.ratio: 8 +[19:52:14] [Netty Local Client IO #0/DEBUG] (ClientLoginNetworkAddon for Client) Handling inbound login response with id 0 and channel with name origins:handshake +[19:52:14] [Server thread/DEBUG] (io.netty.buffer.AbstractByteBuf) -Dio.netty.buffer.checkAccessible: true +[19:52:14] [Server thread/DEBUG] (io.netty.buffer.AbstractByteBuf) -Dio.netty.buffer.checkBounds: true +[19:52:14] [Server thread/DEBUG] (io.netty.util.ResourceLeakDetectorFactory) Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@7eef6a16 +[19:52:14] [Netty Local Client IO #0/DEBUG] (ClientLoginNetworkAddon for Client) Handling inbound login response with id 1 and channel with name fabric-networking-api-v1:early_registration +[19:52:14] [Netty Server IO #1/DEBUG] (ServerLoginNetworkAddon for local:E:8683ae8e) Handling inbound login query with id 0 +[19:52:14] [Netty Local Client IO #0/DEBUG] (fabric-networking-api-v1) Received accepted channels from the server +[19:52:14] [Netty Local Client IO #0/DEBUG] (fabric-networking-api-v1) Sent accepted channels to the server +[19:52:14] [Netty Server IO #1/DEBUG] (ServerLoginNetworkAddon for local:E:8683ae8e) Handling inbound login query with id 1 +[19:52:14] [Server thread/DEBUG] (fabric-networking-api-v1) Sent accepted channels to the client for "com.mojang.authlib.GameProfile@3da1e814[id=c0f25d98-743c-364e-a2cd-82567612d750,name=Player600,properties={},legacy=false] (local:E:8683ae8e)" +[19:52:14] [Netty Server IO #1/DEBUG] (fabric-networking-api-v1) Received accepted channels from the client for "com.mojang.authlib.GameProfile@3da1e814[id=c0f25d98-743c-364e-a2cd-82567612d750,name=Player600,properties={},legacy=false] (local:E:8683ae8e)" +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing HungerManagerMixin from apoli.mixins.json into net.minecraft.entity.player.HungerManager +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:HungerManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$executeAdditionalEatAction$4(Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ModifyFoodPower;)Z to mdcc481c$lambda$executeAdditionalEatAction$4$0 in apoli.mixins.json:HungerManagerMixin +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifySaturation$3(Lio/github/apace100/apoli/power/ModifyFoodPower;)Ljava/util/stream/Stream; to mdcc481c$lambda$modifySaturation$3$1 in apoli.mixins.json:HungerManagerMixin +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifySaturation$2(Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ModifyFoodPower;)Z to mdcc481c$lambda$modifySaturation$2$2 in apoli.mixins.json:HungerManagerMixin +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyHunger$1(Lio/github/apace100/apoli/power/ModifyFoodPower;)Ljava/util/stream/Stream; to mdcc481c$lambda$modifyHunger$1$3 in apoli.mixins.json:HungerManagerMixin +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$modifyHunger$0(Lnet/minecraft/item/ItemStack;Lio/github/apace100/apoli/power/ModifyFoodPower;)Z to mdcc481c$lambda$modifyHunger$0$4 in apoli.mixins.json:HungerManagerMixin +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:HungerManagerMixin->@Inject::executeAdditionalEatAction(Lnet/minecraft/item/Item;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:HungerManagerMixin->@Inject::executeAdditionalEatAction(Lnet/minecraft/item/Item;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:HungerManagerMixin->@Inject::executeAdditionalEatAction(Lnet/minecraft/item/Item;Lnet/minecraft/item/ItemStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:HungerManagerMixin->@Inject::cachePlayer(Lnet/minecraft/entity/player/PlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli doesn't use it's CallbackInfo +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:HungerManagerMixin->@Inject::cachePlayer(Lnet/minecraft/entity/player/PlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli has 0 override(s) in child classes +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:HungerManagerMixin->@Inject::cachePlayer(Lnet/minecraft/entity/player/PlayerEntity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli won't be passed a CallbackInfo as a result +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing CraftingInventoryAccessor from apoli.mixins.json into net.minecraft.inventory.CraftingInventory +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingInventoryAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing CraftingInventoryMixin from apoli.mixins.json into net.minecraft.inventory.CraftingInventory +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:CraftingInventoryMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:14] [Netty Local Client IO #0/DEBUG] (FabricRegistrySync) Registry minecraft:dimension_type has been marked as modded, registry entry minecraft:overworld was changed +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing OriginUpgradeMixin from origins.mixins.json into net.minecraft.advancement.PlayerAdvancementTracker +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:OriginUpgradeMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$checkOriginUpgrade$0(Lnet/minecraft/advancement/Advancement;Lio/github/apace100/origins/origin/OriginLayer;Lio/github/apace100/origins/origin/Origin;)V to mdcc481c$lambda$checkOriginUpgrade$0$0 in origins.mixins.json:OriginUpgradeMixin +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:OriginUpgradeMixin->@Inject::checkOriginUpgrade(Lnet/minecraft/advancement/Advancement;Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;ZLnet/minecraft/advancement/AdvancementProgress;Z)V from mod origins doesn't use it's CallbackInfoReturnable +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:OriginUpgradeMixin->@Inject::checkOriginUpgrade(Lnet/minecraft/advancement/Advancement;Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;ZLnet/minecraft/advancement/AdvancementProgress;Z)V from mod origins has 0 override(s) in child classes +[19:52:14] [Server thread/DEBUG] (FabricLoader/Mixin) origins.mixins.json:OriginUpgradeMixin->@Inject::checkOriginUpgrade(Lnet/minecraft/advancement/Advancement;Ljava/lang/String;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;ZLnet/minecraft/advancement/AdvancementProgress;Z)V from mod origins won't be passed a CallbackInfoReturnable as a result +[19:52:14] [Server thread/INFO] (net.minecraft.server.PlayerManager) Player600[local:E:8683ae8e] logged in with entity id 181 at (3.9401418247173563, 69.0, 0.47956579227850815) +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Creating registry sync packet +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:game_event +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:sound_event +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:fluid +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:mob_effect +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Syncing registry: minecraft:block +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Syncing registry: minecraft:enchantment +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Syncing registry: minecraft:entity_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Syncing registry: minecraft:item +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:potion +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:particle_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:block_entity_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:motive +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:custom_stat +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:chunk_status +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:rule_test +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:pos_rule_test +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:menu +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:recipe_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:recipe_serializer +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:attribute +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:position_source_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:stat_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:villager_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:villager_profession +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:point_of_interest_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:memory_module_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:sensor_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:schedule +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:activity +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:loot_pool_entry_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:loot_function_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:loot_condition_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:loot_number_provider_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:loot_nbt_provider_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:loot_score_provider_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:float_provider_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:int_provider_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:height_provider_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:block_predicate_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/carver +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/feature +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/structure_feature +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/structure_piece +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/placement_modifier_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/block_state_provider_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/foliage_placer_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/trunk_placer_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/tree_decorator_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/feature_size_type +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/biome_source +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/chunk_generator +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/material_condition +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/material_rule +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/structure_processor +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: minecraft:worldgen/structure_pool_element +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:power_factory +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:entity_condition +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:bientity_condition +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:item_condition +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:block_condition +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:damage_condition +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:fluid_condition +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:biome_condition +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:entity_action +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:item_action +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:block_action +[19:52:14] [Server thread/DEBUG] (FabricRegistrySync) Not syncing registry: apoli:bientity_action +[19:52:14] [Netty Local Client IO #0/DEBUG] (FabricRegistrySync) Registry minecraft:worldgen/noise_settings has been marked as modded, registry entry minecraft:overworld was changed +[19:52:14] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Player600 joined the game +[19:52:15] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) Mixing ClientAdvancementManagerAccessor from apoli.mixins.json into net.minecraft.client.network.ClientAdvancementManager +[19:52:15] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientAdvancementManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:15] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) Mixing client.ClientCommandSourceMixin from fabric-command-api-v1.mixins.json into net.minecraft.client.network.ClientCommandSource +[19:52:15] [Netty Local Client IO #0/DEBUG] (FabricLoader/Mixin) fabric-command-api-v1.mixins.json:client.ClientCommandSourceMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "minecraft:register" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "minecraft:brand" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "fabric:registry/sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ClientPlayerInteractionManagerAccessor from apoli.mixins.json into net.minecraft.client.network.ClientPlayerInteractionManager +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerInteractionManagerAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ClientPlayerInteractionManagerMixin from apoli.mixins.json into net.minecraft.client.network.ClientPlayerInteractionManager +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerInteractionManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$executeBlockUseActions$1(Lnet/minecraft/util/hit/BlockHitResult;Lnet/minecraft/util/Hand;Lnet/minecraft/client/network/ClientPlayerEntity;Lio/github/apace100/apoli/power/ActionOnBlockUsePower;)Z to mdcc481c$lambda$executeBlockUseActions$1$0 in apoli.mixins.json:ClientPlayerInteractionManagerMixin +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming synthetic method lambda$preventBlockInteraction$0(Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/util/hit/BlockHitResult;Lio/github/apace100/apoli/power/PreventBlockUsePower;)Z to mdcc481c$lambda$preventBlockInteraction$0$1 in apoli.mixins.json:ClientPlayerInteractionManagerMixin +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinClientPlayerInteractionManager from fabric-events-interaction-v0.mixins.json into net.minecraft.client.network.ClientPlayerInteractionManager +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinClientPlayerInteractionManager: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayerInteractionManagerMixin from mixins.reach-entity-attributes.json into net.minecraft.client.network.ClientPlayerInteractionManager +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientPlayerInteractionManagerMixin from fabric-item-api-v1.mixins.json into net.minecraft.client.network.ClientPlayerInteractionManager +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-api-v1.mixins.json:client.ClientPlayerInteractionManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerInteractionManagerMixin->@Inject::preventBlockInteraction(Lnet/minecraft/client/network/ClientPlayerEntity;Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ClientPlayerInteractionManagerMixin->@Inject::executeBlockUseActions(Lnet/minecraft/client/network/ClientPlayerEntity;Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinClientPlayerInteractionManager->@Inject::attackBlock(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/math/Direction;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinClientPlayerInteractionManager->@Inject::method_2902(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/math/Direction;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinClientPlayerInteractionManager->@Inject::interactBlock(Lnet/minecraft/client/network/ClientPlayerEntity;Lnet/minecraft/client/world/ClientWorld;Lnet/minecraft/util/Hand;Lnet/minecraft/util/hit/BlockHitResult;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinClientPlayerInteractionManager->@Inject::interactItem(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/world/World;Lnet/minecraft/util/Hand;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinClientPlayerInteractionManager->@Inject::attackEntity(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-events-interaction-v0 does use it's CallbackInfo +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinClientPlayerInteractionManager->@Inject::interactEntityAtLocation(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/entity/Entity;Lnet/minecraft/util/hit/EntityHitResult;Lnet/minecraft/util/Hand;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-events-interaction-v0 does use it's CallbackInfoReturnable +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientChunkManagerMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.client.world.ClientChunkManager +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientChunkManagerMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientChunkManagerMixin->@Inject::onChunkLoad(IILnet/minecraft/network/PacketByteBuf;Lnet/minecraft/nbt/NbtCompound;Ljava/util/function/Consumer;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-lifecycle-events-v1 does use it's CallbackInfoReturnable +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientChunkManagerMixin->@Inject::onChunkUnload(IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;ILnet/minecraft/world/chunk/WorldChunk;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientChunkManagerMixin->@Inject::onChunkUnload(IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;ILnet/minecraft/world/chunk/WorldChunk;)V from mod fabric-lifecycle-events-v1 has 0 override(s) in child classes +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientChunkManagerMixin->@Inject::onChunkUnload(IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;ILnet/minecraft/world/chunk/WorldChunk;)V from mod fabric-lifecycle-events-v1 won't be passed a CallbackInfo as a result +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.ClientWorldEntityLoaderMixin from fabric-lifecycle-events-v1.mixins.json into net.minecraft.client.world.ClientWorld$ClientEntityHandler +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientWorldEntityLoaderMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientWorldEntityLoaderMixin->@Inject::invokeLoadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-lifecycle-events-v1.mixins.json:client.ClientWorldEntityLoaderMixin->@Inject::invokeUnloadEntity(Lnet/minecraft/entity/Entity;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-lifecycle-events-v1 doesn't use it's CallbackInfo +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing DimensionEffectsAccessor from fabric-rendering-v1.mixins.json into net.minecraft.client.render.DimensionEffects +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-v1.mixins.json:DimensionEffectsAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Accessor method getIdentifierMap()Lit/unimi/dsi/fastutil/objects/Object2ObjectMap; to getIdentifierMap_$md$cc481c$0 in fabric-rendering-v1.mixins.json:DimensionEffectsAccessor +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinBlockRenderLayer from fabric-blockrenderlayer-v1.mixins.json into net.minecraft.client.render.RenderLayers +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-blockrenderlayer-v1.mixins.json:MixinBlockRenderLayer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-blockrenderlayer-v1.mixins.json:MixinBlockRenderLayer->@Inject::onInitialize(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-blockrenderlayer-v1 doesn't use it's CallbackInfo +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinChunkRenderer from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.chunk.ChunkBuilder$BuiltChunk +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRenderer: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinChunkRebuildTask from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.chunk.ChunkBuilder$BuiltChunk$RebuildTask +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask->@Inject::hookChunkBuild(FFFLnet/minecraft/client/render/chunk/ChunkBuilder$ChunkData;Lnet/minecraft/client/render/chunk/BlockBufferBuilderStorage;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-indigo doesn't use it's CallbackInfoReturnable +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask->@Inject::hookChunkBuild(FFFLnet/minecraft/client/render/chunk/ChunkBuilder$ChunkData;Lnet/minecraft/client/render/chunk/BlockBufferBuilderStorage;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-indigo has 0 override(s) in child classes +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask->@Inject::hookChunkBuild(FFFLnet/minecraft/client/render/chunk/ChunkBuilder$ChunkData;Lnet/minecraft/client/render/chunk/BlockBufferBuilderStorage;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-indigo won't be passed a CallbackInfoReturnable as a result +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask->@Inject::hookRebuildChunkReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-indigo doesn't use it's CallbackInfoReturnable +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask->@Inject::hookRebuildChunkReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-indigo has 0 override(s) in child classes +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRebuildTask->@Inject::hookRebuildChunkReturn(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-renderer-indigo won't be passed a CallbackInfoReturnable as a result +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinChunkRenderData from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.chunk.ChunkBuilder$ChunkData +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRenderData: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:power_list" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "origins:origin_list" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "origins:layer_list" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "origins:badge_list" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:15] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "minecraft:brand" +[19:52:15] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "minecraft:register" +[19:52:15] [Render thread/INFO] (net.minecraft.advancement.AdvancementManager) Loaded 0 advancements +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinChunkRendererRegionBuilder from fabric-rendering-data-attachment-v1.mixins.json into net.minecraft.client.render.chunk.ChunkRendererRegionBuilder +[19:52:15] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-data-attachment-v1.mixins.json:client.MixinChunkRendererRegionBuilder: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-data-attachment-v1.mixins.json:client.MixinChunkRendererRegionBuilder->@Inject::create(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/math/BlockPos;ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;IIII[[Lnet/minecraft/client/render/chunk/ChunkRendererRegionBuilder$ClientChunk;)V from mod fabric-rendering-data-attachment-v1 does use it's CallbackInfoReturnable +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-data-attachment-v1.mixins.json:client.MixinChunkRendererRegionBuilder->@Inject::create(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/math/BlockPos;ILorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;IIII[[Lnet/minecraft/client/render/chunk/ChunkRendererRegionBuilder$ClientChunk;)V from mod fabric-rendering-data-attachment-v1 does use it's CallbackInfoReturnable +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ModelPredicateProviderRegistryAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.client.item.ModelPredicateProviderRegistry +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:ModelPredicateProviderRegistryAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callRegister(Lnet/minecraft/util/Identifier;Lnet/minecraft/client/item/UnclampedModelPredicateProvider;)Lnet/minecraft/client/item/UnclampedModelPredicateProvider; to callRegister_$md$cc481c$0 in fabric-object-builder-v1.mixins.json:ModelPredicateProviderRegistryAccessor +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ModelPredicateProviderRegistrySpecificAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.client.item.ModelPredicateProviderRegistry +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:ModelPredicateProviderRegistrySpecificAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callRegister(Lnet/minecraft/item/Item;Lnet/minecraft/util/Identifier;Lnet/minecraft/client/item/UnclampedModelPredicateProvider;)V to callRegister_$md$cc481c$1 in fabric-object-builder-v1.mixins.json:ModelPredicateProviderRegistrySpecificAccessor +[19:52:16] [Render thread/DEBUG] (com.mojang.blaze3d.systems.RenderSystem) Growing IndexBuffer: Old limit 0, new limit 144. +[19:52:16] [Worker-Main-27/DEBUG] (com.mojang.authlib.HttpAuthenticationService) Opening connection to https://sessionserver.mojang.com/session/minecraft/profile/c0f25d98743c364ea2cd82567612d750?unsigned=true +[19:52:16] [Worker-Main-27/DEBUG] (com.mojang.authlib.HttpAuthenticationService) Reading data from https://sessionserver.mojang.com/session/minecraft/profile/c0f25d98743c364ea2cd82567612d750?unsigned=true +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing InGameOverlayRendererMixin from apoli.mixins.json into net.minecraft.client.gui.hud.InGameOverlayRenderer +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:InGameOverlayRendererMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:InGameOverlayRendererMixin->@Inject::preventInWallOverlayRendering(Lnet/minecraft/client/texture/Sprite;Lnet/minecraft/client/util/math/MatrixStack;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod apoli does use it's CallbackInfo +[19:52:16] [Worker-Main-27/DEBUG] (com.mojang.authlib.HttpAuthenticationService) Successful read, server response was 204 +[19:52:16] [Worker-Main-27/DEBUG] (com.mojang.authlib.HttpAuthenticationService) Response: +[19:52:16] [Worker-Main-27/DEBUG] (com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService) Couldn't fetch profile properties for com.mojang.authlib.GameProfile@41703bf[id=c0f25d98-743c-364e-a2cd-82567612d750,name=Player600,properties={},legacy=false] as the profile does not exist +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinChunkRendererRegion from fabric-rendering-data-attachment-v1.mixins.json into net.minecraft.client.render.chunk.ChunkRendererRegion +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-rendering-data-attachment-v1.mixins.json:client.MixinChunkRendererRegion: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing ChunkRendererRegionMixin from apoli.mixins.json into net.minecraft.client.render.chunk.ChunkRendererRegion +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ChunkRendererRegionMixin: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing MixinChunkRendererRegion from fabric-renderer-indigo.mixins.json into net.minecraft.client.render.chunk.ChunkRendererRegion +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-renderer-indigo.mixins.json:MixinChunkRendererRegion: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ChunkRendererRegionMixin->@Inject::modifyBlockRender(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:52:16] [Render thread/DEBUG] (FabricLoader/Mixin) apoli.mixins.json:ChunkRendererRegionMixin->@Inject::modifyFluidRender(Lnet/minecraft/util/math/BlockPos;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod apoli does use it's CallbackInfoReturnable +[19:52:17] [Render thread/DEBUG] (com.mojang.blaze3d.systems.RenderSystem) Growing IndexBuffer: Old limit 9360, new limit 26640. +[19:52:17] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:18] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:18] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:sync_power" +[19:52:18] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:19] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:20] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing SpawnRestrictionAccessor from fabric-object-builder-v1.mixins.json into net.minecraft.entity.SpawnRestriction +[19:52:20] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-object-builder-v1.mixins.json:SpawnRestrictionAccessor: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:20] [Server thread/DEBUG] (FabricLoader/Mixin) Renaming @Invoker method callRegister(Lnet/minecraft/entity/EntityType;Lnet/minecraft/entity/SpawnRestriction$Location;Lnet/minecraft/world/Heightmap$Type;Lnet/minecraft/entity/SpawnRestriction$SpawnPredicate;)V to callRegister_$md$cc481c$0 in fabric-object-builder-v1.mixins.json:SpawnRestrictionAccessor +[19:52:20] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:20] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:21] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:21] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:21] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:23] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:24] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:25] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:27] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:28] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:28] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:28] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:28] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:28] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:28] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:28] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:28] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:28] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:28] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:28] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:29] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Player600 was shot by Skeleton +[19:52:29] [Render thread/INFO] (net.minecraft.client.gui.hud.ChatHud) [CHAT] Player600 was shot by Skeleton +[19:52:29] [Render thread/INFO] (net.minecraft.advancement.AdvancementManager) Loaded 21 advancements +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:30] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:31] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:31] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:31] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:31] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:31] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:32] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:32] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:33] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:33] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:33] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:33] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:33] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:33] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:33] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:33] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:33] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:33] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:35] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:36] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:38] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:40] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:40] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:41] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:41] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:41] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:41] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:42] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:42] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:42] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:42] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:42] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:42] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:43] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:43] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:43] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing MixinServerPlayNetworkHandler from fabric-events-interaction-v0.mixins.json into net.minecraft.server.network.ServerPlayNetworkHandler$1 +[19:52:43] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayNetworkHandler: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:52:43] [Server thread/DEBUG] (FabricLoader/Mixin) Mixing PlayerEntityInteractionHandlerMixin from mixins.reach-entity-attributes.json into net.minecraft.server.network.ServerPlayNetworkHandler$1 +[19:52:43] [Server thread/DEBUG] (FabricLoader/Mixin) fabric-events-interaction-v0.mixins.json:MixinServerPlayNetworkHandler->@Inject::onPlayerInteractEntity(Lnet/minecraft/util/Hand;Lnet/minecraft/util/math/Vec3d;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-events-interaction-v0 does use it's CallbackInfo +[19:52:43] [Server thread/DEBUG] (FabricLoader/Mixin) mixins.reach-entity-attributes.json:PlayerEntityInteractionHandlerMixin->@Inject::ensureWithinAttackRange(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod reach-entity-attributes does use it's CallbackInfo +[19:52:43] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:set_attacker" +[19:52:43] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:43] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:44] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:44] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:44] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:44] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:44] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:44] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:44] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:45] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:45] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:45] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:45] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:45] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:45] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:45] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:45] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:46] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:46] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:46] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:46] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:46] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:46] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:46] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:46] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:46] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:47] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:47] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:47] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:48] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:48] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:48] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:48] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:set_attacker" +[19:52:48] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:48] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:48] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:48] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:48] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:sync_power" +[19:52:49] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:49] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:49] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:49] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:49] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:49] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:50] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:50] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:50] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:50] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:51] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:51] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:51] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:51] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:51] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:51] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:51] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:52] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:52] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:53] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:53] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:53] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:53] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:53] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:53] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:53] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:53] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:54] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:54] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:54] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:55] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:55] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:55] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:55] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:55] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:55] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:55] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:56] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:56] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:56] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:56] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:56] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:56] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:57] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:57] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:57] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:57] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:58] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:58] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:58] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:59] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:59] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:59] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:59] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:59] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:52:59] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:52:59] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:53:00] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:53:00] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:53:00] [Netty Server IO #1/DEBUG] (ServerPlayNetworkAddon for Player600) Handling inbound packet from channel with name "apoli:use_active_powers" +[19:53:01] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:53:01] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:53:01] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:53:01] [Render thread/DEBUG] (FabricLoader/Mixin) Mixing client.MixinCreativePlayerInventoryGui from fabric-item-groups-v0.mixins.json into net.minecraft.client.gui.screen.ingame.CreativeInventoryScreen +[19:53:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:client.MixinCreativePlayerInventoryGui: Class version 61 required is higher than the class version supported by the current version of Mixin (JAVA_16 supports class version 60) +[19:53:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:client.MixinCreativePlayerInventoryGui->@Inject::init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-groups-v0 doesn't use it's CallbackInfo +[19:53:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:client.MixinCreativePlayerInventoryGui->@Inject::init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-groups-v0 has 0 override(s) in child classes +[19:53:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:client.MixinCreativePlayerInventoryGui->@Inject::init(Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-groups-v0 won't be passed a CallbackInfo as a result +[19:53:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:client.MixinCreativePlayerInventoryGui->@Inject::setSelectedTab(Lnet/minecraft/item/ItemGroup;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-groups-v0 does use it's CallbackInfo +[19:53:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:client.MixinCreativePlayerInventoryGui->@Inject::renderTabTooltipIfHovered(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/item/ItemGroup;IILorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-item-groups-v0 does use it's CallbackInfoReturnable +[19:53:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:client.MixinCreativePlayerInventoryGui->@Inject::isClickInTab(Lnet/minecraft/item/ItemGroup;DDLorg/spongepowered/asm/mixin/injection/callback/CallbackInfoReturnable;)V from mod fabric-item-groups-v0 does use it's CallbackInfoReturnable +[19:53:01] [Render thread/DEBUG] (FabricLoader/Mixin) fabric-item-groups-v0.mixins.json:client.MixinCreativePlayerInventoryGui->@Inject::renderTabIcon(Lnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/item/ItemGroup;Lorg/spongepowered/asm/mixin/injection/callback/CallbackInfo;)V from mod fabric-item-groups-v0 does use it's CallbackInfo +[19:53:01] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:53:01] [Netty Local Client IO #0/DEBUG] (ClientPlayNetworkAddon for Player600) Handling inbound packet from channel with name "cardinal-components:entity_sync" +[19:53:03] [Render thread/INFO] (net.minecraft.client.MinecraftClient) Stopping! +[19:53:03] [Server thread/INFO] (net.minecraft.server.network.ServerPlayNetworkHandler) Player600 lost connection: Disconnected +[19:53:03] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Player600 left the game +[19:53:03] [Server thread/INFO] (net.minecraft.server.network.ServerPlayNetworkHandler) Stopping singleplayer server as player logged out +[19:53:03] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Stopping server +[19:53:03] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Saving players +[19:53:03] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Saving worlds +[19:53:03] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld +[19:53:03] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether +[19:53:03] [Server thread/INFO] (net.minecraft.server.MinecraftServer) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Starting registry save +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:game_event +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:sound_event +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:fluid +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Skipping un-modded registry: minecraft:mob_effect +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:enchantment +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:entity_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:item +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:potion +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:particle_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block_entity_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:motive +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:custom_stat +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:chunk_status +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:rule_test +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:pos_rule_test +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:menu +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:recipe_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:recipe_serializer +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:attribute +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:position_source_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:stat_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:villager_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:villager_profession +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:point_of_interest_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:memory_module_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:sensor_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:schedule +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:activity +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_pool_entry_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_function_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_condition_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_number_provider_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_nbt_provider_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:loot_score_provider_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:float_provider_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:int_provider_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:height_provider_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:block_predicate_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/carver +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/feature +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_feature +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_piece +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/placement_modifier_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/block_state_provider_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/foliage_placer_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/trunk_placer_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/tree_decorator_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/feature_size_type +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/biome_source +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/chunk_generator +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/material_condition +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/material_rule +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_processor +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: minecraft:worldgen/structure_pool_element +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:power_factory +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:entity_condition +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:bientity_condition +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:item_condition +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:block_condition +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:damage_condition +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:fluid_condition +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:biome_condition +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:entity_action +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:item_action +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:block_action +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving registry: apoli:bientity_action +[19:53:03] [Server thread/DEBUG] (FabricRegistrySync) Not saving empty registry data +[19:53:03] [Server thread/INFO] (net.minecraft.server.MinecraftServer) ThreadedAnvilChunkStorage (New World): All chunks are saved +[19:53:03] [Server thread/INFO] (net.minecraft.server.MinecraftServer) ThreadedAnvilChunkStorage (DIM-1): All chunks are saved +[19:53:03] [Server thread/INFO] (net.minecraft.server.MinecraftServer) ThreadedAnvilChunkStorage (DIM1): All chunks are saved +[19:53:03] [Server thread/INFO] (net.minecraft.server.MinecraftServer) ThreadedAnvilChunkStorage: All dimensions are saved diff --git a/run/logs/latest.log b/run/logs/latest.log index 709cae2..883d186 100644 --- a/run/logs/latest.log +++ b/run/logs/latest.log @@ -1,5 +1,5 @@ -[17:00:53] [main/INFO] (FabricLoader/GameProvider) Loading Minecraft 1.18 with Fabric Loader 0.12.10 -[17:00:53] [main/INFO] (FabricLoader) Loading 61 mods: +[19:51:41] [main/INFO] (FabricLoader/GameProvider) Loading Minecraft 1.18 with Fabric Loader 0.12.10 +[19:51:41] [main/INFO] (FabricLoader) Loading 61 mods: - apoli 2.2.0 - aspects ${version} - calio 1.4.2 @@ -61,13 +61,13 @@ - origins 1.3.0 - playerabilitylib 1.3.0 - reach-entity-attributes 2.1.1 -[17:00:53] [main/WARN] (FabricLoader/Metadata) Mod `aspects` (${version}) does not respect SemVer - comparison support is limited. -[17:00:54] [main/INFO] (FabricLoader/Mixin) SpongePowered MIXIN Subsystem Version=0.8.4 Source=file:/Users/adellanicholson/.gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.10.7+mixin.0.8.4/7a4ca9d54d9ae564dea0363d668036a8420ed9b8/sponge-mixin-0.10.7+mixin.0.8.4.jar Service=Knot/Fabric Env=CLIENT -[17:00:54] [main/INFO] (FabricLoader/Mixin) Loaded Fabric development mappings for mixin remapper! -[17:00:54] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_16 -[17:00:58] [main/WARN] (FabricLoader/Mixin) @Inject(@At("INVOKE")) Shift.BY=3 on fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin::handler$zbf000$onLoadBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. -[17:01:00] [Render thread/INFO] (Minecraft) Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' -[17:01:01] [Render thread/ERROR] (Minecraft) Failed to verify authentication +[19:51:41] [main/WARN] (FabricLoader/Metadata) Mod `aspects` (${version}) does not respect SemVer - comparison support is limited. +[19:51:41] [main/INFO] (FabricLoader/Mixin) SpongePowered MIXIN Subsystem Version=0.8.4 Source=file:/Users/adellanicholson/.gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.10.7+mixin.0.8.4/7a4ca9d54d9ae564dea0363d668036a8420ed9b8/sponge-mixin-0.10.7+mixin.0.8.4.jar Service=Knot/Fabric Env=CLIENT +[19:51:41] [main/INFO] (FabricLoader/Mixin) Loaded Fabric development mappings for mixin remapper! +[19:51:41] [main/INFO] (FabricLoader/Mixin) Compatibility level set to JAVA_16 +[19:51:46] [main/WARN] (FabricLoader/Mixin) @Inject(@At("INVOKE")) Shift.BY=3 on fabric-lifecycle-events-v1.mixins.json:client.WorldChunkMixin::handler$zni000$onLoadBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. +[19:51:48] [Render thread/INFO] (Minecraft) Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' +[19:51:48] [Render thread/ERROR] (Minecraft) Failed to verify authentication com.mojang.authlib.exceptions.InvalidCredentialsException: Status: 401 at com.mojang.authlib.exceptions.MinecraftClientHttpException.toAuthenticationException(MinecraftClientHttpException.java:56) ~[authlib-3.2.38.jar:?] at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:132) ~[authlib-3.2.38.jar:?] @@ -89,94 +89,93 @@ Caused by: com.mojang.authlib.exceptions.MinecraftClientHttpException: Status: 4 at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:48) ~[authlib-3.2.38.jar:?] at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:113) ~[authlib-3.2.38.jar:?] ... 13 more -[17:01:01] [Render thread/INFO] (Minecraft) Setting user: Player131 -[17:01:01] [Render thread/INFO] (Origins) Origins 1.3.0 is initializing. Have fun! -[17:01:01] [Render thread/INFO] (Apoli) Apoli 2.2.0 has initialized. Ready to power up your game! -[17:01:01] [Render thread/INFO] (aspects) Hello Fabric world! -[17:01:02] [Render thread/INFO] (Indigo) [Indigo] Registering Indigo renderer! -[17:01:02] [Render thread/INFO] (Minecraft) Backend library: LWJGL version 3.2.1 build 12 -[17:01:03] [Render thread/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Fabric Events Interaction (v0), Fabric Data Generation API (v1), Fabric BlockRenderLayer Registration (v1), Fabric Containers (v0), Fabric Dimensions API (v1), Fabric Lifecycle Events (v1), Fabric Entity Events (v1), Fabric Object Builder API (v1), Fabric Rendering Fluids (v1), Fabric Content Registries (v0), Origins, Fabric Rendering (v0), Pal, Fabric Models (v0), Fabric Events Lifecycle (v0), Fabric Screen Handler API (v1), Fabric Crash Report Info (v1), Fabric Item API (v1), Fabric Resource Loader (v0), Fabric Loader, Fabric Key Binding API (v1), Fabric Loot Tables (v1), Fabric Structure API (v1), Fabric Networking (v0), Fabric Renderer API (v1), Fabric Game Rule API (v1), Fabric Registry Sync (v0), Fabric Tag Extensions (v0), Apoli, Fabric Renderer - Indigo, Fabric Biome API (v1), Cloth Config v6, Fabric Key Bindings (v0), Fabric API Lookup API (v1), Fabric Rendering (v1), Fabric Screen API (v1), Fabric Particles (v1), Fabric Tool Attribute API (v1), Fabric Mining Level API (v1), Fabric Object Builders (v0), Mod Menu, Fabric Item Groups (v0), Fabric Renderer Registries (v1), Aspects, Fabric Rendering Data Attachment (v1), Fabric Game Test API (v1), Fabric Command API (v1), Fabric Textures (v0), Fabric Mining Levels (v0), Fabric API Base, Fabric API, Fabric Transfer API (v1), Fabric Commands (v0), Calio, Reach Entity Attributes, Fabric Networking API (v1)) -[17:01:03] [Render thread/INFO] (aspects) This line is printed by an example mod mixin! -[17:01:04] [Realms Notification Availability checker #1/INFO] (Minecraft) Could not authorize you against Realms server: Invalid session id -[17:01:06] [Render thread/INFO] (Minecraft) OpenAL initialized on device CoreAudio Default -[17:01:06] [Render thread/INFO] (Minecraft) Sound engine started -[17:01:07] [Render thread/INFO] (Minecraft) Created: 1024x1024x4 minecraft:textures/atlas/blocks.png-atlas -[17:01:07] [Render thread/INFO] (Minecraft) Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas -[17:01:07] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/banner_patterns.png-atlas -[17:01:07] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/shield_patterns.png-atlas -[17:01:07] [Render thread/INFO] (Minecraft) Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas -[17:01:07] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas -[17:01:07] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas -[17:01:08] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas -[17:01:08] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas -[17:01:08] [Render thread/INFO] (Minecraft) Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas -[17:01:08] [Render thread/INFO] (aspects) This line is printed by an example mod mixin! -[17:01:14] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0] -[17:01:14] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0] -[17:01:14] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498] -[17:01:14] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498] -[17:01:14] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0] -[17:01:14] [Render thread/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Origins, Apoli, Fabric Tool Attribute API (v1), Aspects, Fabric Game Test API (v1)) -[17:01:14] [Render thread/INFO] (Minecraft) Loaded 7 recipes -[17:01:14] [Render thread/INFO] (Minecraft) Loaded 1143 advancements -[17:01:14] [Render thread/INFO] (Apoli) Finished loading powers from data files. Registry contains 99 powers. -[17:01:14] [Render thread/ERROR] (Origins) Origin "aspects:cryodisabled" contained unregistered power: "aspects:frost_walker" -[17:01:14] [Render thread/ERROR] (Origins) Origin "aspects:cryodisabled" contained unregistered power: "aspects:cryo_secondary" -[17:01:14] [Render thread/ERROR] (Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:water_breathing" -[17:01:14] [Render thread/ERROR] (Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:constitution" -[17:01:14] [Render thread/ERROR] (Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:fire_damage" -[17:01:14] [Render thread/INFO] (Origins) Finished loading origins from data files. Registry contains 15 origins. -[17:01:14] [Render thread/INFO] (Origins) Trying to read layer file: aspects:elements -[17:01:14] [Render thread/INFO] (Origins) Trying to read layer file: origins:origin -[17:01:14] [Render thread/INFO] (Origins) Trying to read layer file: aspects:origins -[17:01:14] [Render thread/INFO] (Origins) Finished loading origin layers from data files. Read 3 layers. -[17:01:14] [Render thread/INFO] (BiomeModificationImpl) Applied 0 biome modifications to 0 of 61 new biomes in 1.779 ms -[17:01:16] [Render thread/INFO] (Minecraft) Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' -[17:01:16] [Server thread/INFO] (Minecraft) Starting integrated minecraft server version 1.18 -[17:01:16] [Server thread/INFO] (Minecraft) Generating keypair -[17:01:17] [Server thread/INFO] (Minecraft) Preparing start region for dimension minecraft:overworld -[17:01:18] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% -[17:01:18] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% -[17:01:18] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% -[17:01:18] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% -[17:01:23] [Render thread/INFO] (Minecraft) Preparing spawn area: 4% -[17:01:24] [Render thread/INFO] (Minecraft) Preparing spawn area: 35% -[17:01:24] [Render thread/INFO] (Minecraft) Preparing spawn area: 58% -[17:01:25] [Render thread/INFO] (Minecraft) Preparing spawn area: 63% -[17:01:25] [Render thread/INFO] (Minecraft) Preparing spawn area: 88% -[17:01:26] [Render thread/INFO] (Minecraft) Time elapsed: 8776 ms -[17:01:26] [Server thread/INFO] (Minecraft) Changing view distance to 12, from 10 -[17:01:26] [Server thread/INFO] (Minecraft) Changing simulation distance to 12, from 0 -[17:01:26] [Server thread/INFO] (Minecraft) Player131[local:E:91aab204] logged in with entity id 183 at (-52.458286356428445, 64.0, -78.3884941042894) -[17:01:26] [Server thread/INFO] (Minecraft) Player131 joined the game -[17:01:26] [Render thread/INFO] (Minecraft) Loaded 0 advancements -[17:01:27] [Render thread/WARN] (Minecraft) Unable to play empty soundEvent: minecraft:entity.cod.ambient -[17:01:32] [Render thread/INFO] (Minecraft) Loaded 7 advancements -[17:01:35] [Render thread/WARN] (Minecraft) Unable to play empty soundEvent: minecraft:entity.salmon.ambient -[17:01:38] [Server thread/INFO] (Minecraft) Saving and pausing game... -[17:01:38] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld -[17:01:38] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether -[17:01:38] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end -[17:01:40] [Render thread/INFO] (Minecraft) Stopping! -[17:01:40] [Server thread/INFO] (Minecraft) Player131 lost connection: Disconnected -[17:01:40] [Server thread/INFO] (Minecraft) Player131 left the game -[17:01:40] [Server thread/INFO] (Minecraft) Stopping singleplayer server as player logged out -[17:01:40] [Server thread/INFO] (Minecraft) Stopping server -[17:01:40] [Server thread/INFO] (Minecraft) Saving players -[17:01:40] [Server thread/INFO] (Minecraft) Saving worlds -[17:01:40] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld -[17:01:41] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether -[17:01:41] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end -[17:01:41] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (New World): All chunks are saved -[17:01:41] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM-1): All chunks are saved -[17:01:41] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM1): All chunks are saved -[17:01:41] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage: All dimensions are saved +[19:51:48] [Render thread/INFO] (Minecraft) Setting user: Player600 +[19:51:49] [Render thread/INFO] (Apoli) Apoli 2.2.0 has initialized. Ready to power up your game! +[19:51:49] [Render thread/INFO] (aspects) Hello Fabric world! +[19:51:49] [Render thread/INFO] (Origins) Origins 1.3.0 is initializing. Have fun! +[19:51:49] [Render thread/INFO] (Indigo) [Indigo] Registering Indigo renderer! +[19:51:49] [Render thread/INFO] (Minecraft) Backend library: LWJGL version 3.2.1 build 12 +[19:51:51] [Render thread/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Fabric BlockRenderLayer Registration (v1), Fabric Screen API (v1), Mod Menu, Fabric Screen Handler API (v1), Fabric Rendering Data Attachment (v1), Fabric Item Groups (v0), Fabric Loot Tables (v1), Apoli, Fabric Events Interaction (v0), Fabric Models (v0), Fabric Data Generation API (v1), Fabric Key Bindings (v0), Fabric Rendering Fluids (v1), Fabric Command API (v1), Fabric Dimensions API (v1), Fabric Particles (v1), Fabric Transfer API (v1), Fabric Key Binding API (v1), Fabric Networking (v0), Reach Entity Attributes, Fabric Resource Loader (v0), Fabric Containers (v0), Fabric Renderer - Indigo, Fabric Events Lifecycle (v0), Fabric Textures (v0), Fabric Entity Events (v1), Fabric Structure API (v1), Fabric Item API (v1), Aspects, Fabric Rendering (v1), Fabric Tag Extensions (v0), Fabric Commands (v0), Fabric Renderer Registries (v1), Calio, Fabric Loader, Fabric Game Test API (v1), Cloth Config v6, Fabric API, Fabric API Base, Fabric Renderer API (v1), Fabric Registry Sync (v0), Fabric Mining Level API (v1), Fabric Rendering (v0), Origins, Fabric Content Registries (v0), Fabric Networking API (v1), Fabric API Lookup API (v1), Fabric Tool Attribute API (v1), Fabric Object Builder API (v1), Fabric Game Rule API (v1), Fabric Mining Levels (v0), Pal, Fabric Biome API (v1), Fabric Object Builders (v0), Fabric Lifecycle Events (v1), Fabric Crash Report Info (v1)) +[19:51:51] [Render thread/INFO] (aspects) This line is printed by an example mod mixin! +[19:51:51] [Realms Notification Availability checker #1/INFO] (Minecraft) Could not authorize you against Realms server: Invalid session id +[19:51:54] [Render thread/INFO] (Minecraft) OpenAL initialized on device CoreAudio Default +[19:51:54] [Render thread/INFO] (Minecraft) Sound engine started +[19:51:54] [Render thread/INFO] (Minecraft) Created: 1024x1024x4 minecraft:textures/atlas/blocks.png-atlas +[19:51:54] [Render thread/INFO] (Minecraft) Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas +[19:51:54] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/banner_patterns.png-atlas +[19:51:54] [Render thread/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/shield_patterns.png-atlas +[19:51:54] [Render thread/INFO] (Minecraft) Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas +[19:51:54] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas +[19:51:54] [Render thread/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas +[19:51:56] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas +[19:51:56] [Render thread/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas +[19:51:56] [Render thread/INFO] (Minecraft) Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas +[19:51:56] [Render thread/INFO] (aspects) This line is printed by an example mod mixin! +[19:52:00] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0] +[19:52:00] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0] +[19:52:00] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498] +[19:52:00] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498] +[19:52:00] [Render thread/WARN] (Minecraft) Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0] +[19:52:00] [Render thread/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Apoli, Aspects, Fabric Game Test API (v1), Origins, Fabric Tool Attribute API (v1)) +[19:52:01] [Render thread/INFO] (Minecraft) Loaded 7 recipes +[19:52:01] [Render thread/INFO] (Minecraft) Loaded 1143 advancements +[19:52:01] [Render thread/INFO] (Apoli) Finished loading powers from data files. Registry contains 104 powers. +[19:52:01] [Render thread/ERROR] (Origins) Origin "aspects:cryodisabled" contained unregistered power: "aspects:frost_walker" +[19:52:01] [Render thread/ERROR] (Origins) Origin "aspects:cryodisabled" contained unregistered power: "aspects:cryo_secondary" +[19:52:01] [Render thread/ERROR] (Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:water_breathing" +[19:52:01] [Render thread/ERROR] (Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:constitution" +[19:52:01] [Render thread/ERROR] (Origins) Origin "aspects:hydrodisabled" contained unregistered power: "aspects:fire_damage" +[19:52:01] [Render thread/INFO] (Origins) Finished loading origins from data files. Registry contains 16 origins. +[19:52:01] [Render thread/INFO] (Origins) Trying to read layer file: aspects:elements +[19:52:01] [Render thread/INFO] (Origins) Trying to read layer file: origins:origin +[19:52:01] [Render thread/INFO] (Origins) Trying to read layer file: aspects:origins +[19:52:01] [Render thread/INFO] (Origins) Finished loading origin layers from data files. Read 3 layers. +[19:52:01] [Render thread/INFO] (BiomeModificationImpl) Applied 0 biome modifications to 0 of 61 new biomes in 2.166 ms +[19:52:03] [Render thread/INFO] (Minecraft) Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' +[19:52:03] [Server thread/INFO] (Minecraft) Starting integrated minecraft server version 1.18 +[19:52:03] [Server thread/INFO] (Minecraft) Generating keypair +[19:52:04] [Server thread/INFO] (Minecraft) Preparing start region for dimension minecraft:overworld +[19:52:06] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:06] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:06] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:06] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:06] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:06] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:07] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:07] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:08] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:08] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:09] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:12] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:12] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:12] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:12] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:12] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:12] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:12] [Render thread/INFO] (Minecraft) Preparing spawn area: 0% +[19:52:13] [Render thread/INFO] (Minecraft) Preparing spawn area: 20% +[19:52:13] [Render thread/INFO] (Minecraft) Preparing spawn area: 63% +[19:52:14] [Render thread/INFO] (Minecraft) Preparing spawn area: 97% +[19:52:14] [Render thread/INFO] (Minecraft) Time elapsed: 10004 ms +[19:52:14] [Server thread/INFO] (Minecraft) Changing view distance to 12, from 10 +[19:52:14] [Server thread/INFO] (Minecraft) Changing simulation distance to 12, from 0 +[19:52:14] [Server thread/INFO] (Minecraft) Player600[local:E:8683ae8e] logged in with entity id 181 at (3.9401418247173563, 69.0, 0.47956579227850815) +[19:52:14] [Server thread/INFO] (Minecraft) Player600 joined the game +[19:52:15] [Render thread/INFO] (Minecraft) Loaded 0 advancements +[19:52:29] [Server thread/INFO] (Minecraft) Player600 was shot by Skeleton +[19:52:29] [Render thread/INFO] (Minecraft) [CHAT] Player600 was shot by Skeleton +[19:52:29] [Render thread/INFO] (Minecraft) Loaded 21 advancements +[19:53:03] [Render thread/INFO] (Minecraft) Stopping! +[19:53:03] [Server thread/INFO] (Minecraft) Player600 lost connection: Disconnected +[19:53:03] [Server thread/INFO] (Minecraft) Player600 left the game +[19:53:03] [Server thread/INFO] (Minecraft) Stopping singleplayer server as player logged out +[19:53:03] [Server thread/INFO] (Minecraft) Stopping server +[19:53:03] [Server thread/INFO] (Minecraft) Saving players +[19:53:03] [Server thread/INFO] (Minecraft) Saving worlds +[19:53:03] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld +[19:53:03] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether +[19:53:03] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end +[19:53:03] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (New World): All chunks are saved +[19:53:03] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM-1): All chunks are saved +[19:53:03] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM1): All chunks are saved +[19:53:03] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage: All dimensions are saved diff --git a/run/options.txt b/run/options.txt index e6f9def..66c30a5 100644 --- a/run/options.txt +++ b/run/options.txt @@ -108,7 +108,7 @@ key_key.hotbar.7:key.keyboard.7 key_key.hotbar.8:key.keyboard.8 key_key.hotbar.9:key.keyboard.9 key_key.origins.primary_active:key.keyboard.g -key_key.origins.secondary_active:key.keyboard.unknown +key_key.origins.secondary_active:key.keyboard.h key_key.origins.view_origin:key.keyboard.o soundCategory_master:1.0 soundCategory_music:1.0 diff --git a/run/saves/New World/DIM-1/data/raids.dat b/run/saves/New World/DIM-1/data/raids.dat index fe97f39..a6a417b 100644 Binary files a/run/saves/New World/DIM-1/data/raids.dat and b/run/saves/New World/DIM-1/data/raids.dat differ diff --git a/run/saves/New World/DIM1/data/raids_end.dat b/run/saves/New World/DIM1/data/raids_end.dat index fe97f39..a6a417b 100644 Binary files a/run/saves/New World/DIM1/data/raids_end.dat and b/run/saves/New World/DIM1/data/raids_end.dat differ diff --git a/run/saves/New World/advancements/078f5e46-1768-3b85-8c83-1cee0b3b10ab.json b/run/saves/New World/advancements/078f5e46-1768-3b85-8c83-1cee0b3b10ab.json new file mode 100644 index 0000000..31b3a75 --- /dev/null +++ b/run/saves/New World/advancements/078f5e46-1768-3b85-8c83-1cee0b3b10ab.json @@ -0,0 +1,46 @@ +{ + "minecraft:recipes/transportation/acacia_boat": { + "criteria": { + "in_water": "2021-12-11 18:08:19 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/oak_boat": { + "criteria": { + "in_water": "2021-12-11 18:08:19 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/dark_oak_boat": { + "criteria": { + "in_water": "2021-12-11 18:08:19 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/birch_boat": { + "criteria": { + "in_water": "2021-12-11 18:08:19 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/jungle_boat": { + "criteria": { + "in_water": "2021-12-11 18:08:19 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/spruce_boat": { + "criteria": { + "in_water": "2021-12-11 18:08:19 -0400" + }, + "done": true + }, + "minecraft:adventure/adventuring_time": { + "criteria": { + "minecraft:stony_shore": "2021-12-11 18:08:09 -0400", + "minecraft:plains": "2021-12-11 18:08:28 -0400" + }, + "done": false + }, + "DataVersion": 2860 +} \ No newline at end of file diff --git a/run/saves/New World/advancements/1c38adbd-952c-3cbe-9338-7d9a41f64a2f.json b/run/saves/New World/advancements/1c38adbd-952c-3cbe-9338-7d9a41f64a2f.json new file mode 100644 index 0000000..777fa7e --- /dev/null +++ b/run/saves/New World/advancements/1c38adbd-952c-3cbe-9338-7d9a41f64a2f.json @@ -0,0 +1,9 @@ +{ + "minecraft:adventure/adventuring_time": { + "criteria": { + "minecraft:stony_shore": "2021-12-11 19:01:12 -0400" + }, + "done": false + }, + "DataVersion": 2860 +} \ No newline at end of file diff --git a/run/saves/New World/advancements/3c02c3d3-91ac-35cd-a553-1c3a94c6fe76.json b/run/saves/New World/advancements/3c02c3d3-91ac-35cd-a553-1c3a94c6fe76.json new file mode 100644 index 0000000..dfa0838 --- /dev/null +++ b/run/saves/New World/advancements/3c02c3d3-91ac-35cd-a553-1c3a94c6fe76.json @@ -0,0 +1,45 @@ +{ + "minecraft:recipes/transportation/acacia_boat": { + "criteria": { + "in_water": "2021-12-11 19:11:26 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/oak_boat": { + "criteria": { + "in_water": "2021-12-11 19:11:26 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/dark_oak_boat": { + "criteria": { + "in_water": "2021-12-11 19:11:26 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/birch_boat": { + "criteria": { + "in_water": "2021-12-11 19:11:26 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/jungle_boat": { + "criteria": { + "in_water": "2021-12-11 19:11:26 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/spruce_boat": { + "criteria": { + "in_water": "2021-12-11 19:11:26 -0400" + }, + "done": true + }, + "minecraft:adventure/adventuring_time": { + "criteria": { + "minecraft:stony_shore": "2021-12-11 19:10:53 -0400" + }, + "done": false + }, + "DataVersion": 2860 +} \ No newline at end of file diff --git a/run/saves/New World/advancements/46f780a1-2e26-3e88-a90a-02cf37fe1547.json b/run/saves/New World/advancements/46f780a1-2e26-3e88-a90a-02cf37fe1547.json new file mode 100644 index 0000000..11480de --- /dev/null +++ b/run/saves/New World/advancements/46f780a1-2e26-3e88-a90a-02cf37fe1547.json @@ -0,0 +1,47 @@ +{ + "minecraft:recipes/transportation/acacia_boat": { + "criteria": { + "in_water": "2021-12-11 18:51:40 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/oak_boat": { + "criteria": { + "in_water": "2021-12-11 18:51:40 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/dark_oak_boat": { + "criteria": { + "in_water": "2021-12-11 18:51:40 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/birch_boat": { + "criteria": { + "in_water": "2021-12-11 18:51:40 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/jungle_boat": { + "criteria": { + "in_water": "2021-12-11 18:51:40 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/spruce_boat": { + "criteria": { + "in_water": "2021-12-11 18:51:40 -0400" + }, + "done": true + }, + "minecraft:adventure/adventuring_time": { + "criteria": { + "minecraft:river": "2021-12-11 18:51:41 -0400", + "minecraft:stony_shore": "2021-12-11 18:50:58 -0400", + "minecraft:plains": "2021-12-11 18:51:22 -0400" + }, + "done": false + }, + "DataVersion": 2860 +} \ No newline at end of file diff --git a/run/saves/New World/advancements/5a8b675a-352f-385b-94f4-369e3f70aa83.json b/run/saves/New World/advancements/5a8b675a-352f-385b-94f4-369e3f70aa83.json new file mode 100644 index 0000000..6bf75fa --- /dev/null +++ b/run/saves/New World/advancements/5a8b675a-352f-385b-94f4-369e3f70aa83.json @@ -0,0 +1,16 @@ +{ + "minecraft:adventure/root": { + "criteria": { + "killed_by_something": "2021-12-11 19:44:19 -0400" + }, + "done": true + }, + "minecraft:adventure/adventuring_time": { + "criteria": { + "minecraft:stony_shore": "2021-12-11 19:44:14 -0400", + "minecraft:plains": "2021-12-11 19:44:23 -0400" + }, + "done": false + }, + "DataVersion": 2860 +} \ No newline at end of file diff --git a/run/saves/New World/advancements/6b45a986-a4aa-3b68-85a3-c5041d0b6192.json b/run/saves/New World/advancements/6b45a986-a4aa-3b68-85a3-c5041d0b6192.json new file mode 100644 index 0000000..11c7082 --- /dev/null +++ b/run/saves/New World/advancements/6b45a986-a4aa-3b68-85a3-c5041d0b6192.json @@ -0,0 +1,28 @@ +{ + "minecraft:adventure/root": { + "criteria": { + "killed_something": "2021-12-11 19:36:48 -0400" + }, + "done": true + }, + "minecraft:adventure/kill_a_mob": { + "criteria": { + "minecraft:zombie": "2021-12-11 19:36:48 -0400" + }, + "done": true + }, + "minecraft:adventure/kill_all_mobs": { + "criteria": { + "minecraft:zombie": "2021-12-11 19:36:48 -0400" + }, + "done": false + }, + "minecraft:adventure/adventuring_time": { + "criteria": { + "minecraft:stony_shore": "2021-12-11 19:36:41 -0400", + "minecraft:plains": "2021-12-11 19:36:56 -0400" + }, + "done": false + }, + "DataVersion": 2860 +} \ No newline at end of file diff --git a/run/saves/New World/advancements/6db1171d-4fa6-31cb-b425-1896281a26e2.json b/run/saves/New World/advancements/6db1171d-4fa6-31cb-b425-1896281a26e2.json new file mode 100644 index 0000000..e8d1a8d --- /dev/null +++ b/run/saves/New World/advancements/6db1171d-4fa6-31cb-b425-1896281a26e2.json @@ -0,0 +1,9 @@ +{ + "minecraft:adventure/adventuring_time": { + "criteria": { + "minecraft:stony_shore": "2021-12-11 19:15:56 -0400" + }, + "done": false + }, + "DataVersion": 2860 +} \ No newline at end of file diff --git a/run/saves/New World/advancements/79804575-3cdf-34b1-8aa3-c1036031e749.json b/run/saves/New World/advancements/79804575-3cdf-34b1-8aa3-c1036031e749.json new file mode 100644 index 0000000..587a771 --- /dev/null +++ b/run/saves/New World/advancements/79804575-3cdf-34b1-8aa3-c1036031e749.json @@ -0,0 +1,16 @@ +{ + "minecraft:adventure/root": { + "criteria": { + "killed_by_something": "2021-12-11 19:49:39 -0400" + }, + "done": true + }, + "minecraft:adventure/adventuring_time": { + "criteria": { + "minecraft:stony_shore": "2021-12-11 19:49:39 -0400", + "minecraft:plains": "2021-12-11 19:49:34 -0400" + }, + "done": false + }, + "DataVersion": 2860 +} \ No newline at end of file diff --git a/run/saves/New World/advancements/7fef5833-06c9-398a-84c0-fbd3a81ff548.json b/run/saves/New World/advancements/7fef5833-06c9-398a-84c0-fbd3a81ff548.json new file mode 100644 index 0000000..724fc99 --- /dev/null +++ b/run/saves/New World/advancements/7fef5833-06c9-398a-84c0-fbd3a81ff548.json @@ -0,0 +1,9 @@ +{ + "minecraft:adventure/adventuring_time": { + "criteria": { + "minecraft:stony_shore": "2021-12-11 19:41:28 -0400" + }, + "done": false + }, + "DataVersion": 2860 +} \ No newline at end of file diff --git a/run/saves/New World/advancements/a240c974-e4f5-311c-82e7-f92bb39b2584.json b/run/saves/New World/advancements/a240c974-e4f5-311c-82e7-f92bb39b2584.json new file mode 100644 index 0000000..c365a82 --- /dev/null +++ b/run/saves/New World/advancements/a240c974-e4f5-311c-82e7-f92bb39b2584.json @@ -0,0 +1,15 @@ +{ + "minecraft:adventure/root": { + "criteria": { + "killed_by_something": "2021-12-11 19:23:09 -0400" + }, + "done": true + }, + "minecraft:adventure/adventuring_time": { + "criteria": { + "minecraft:stony_shore": "2021-12-11 19:21:58 -0400" + }, + "done": false + }, + "DataVersion": 2860 +} \ No newline at end of file diff --git a/run/saves/New World/advancements/c0f25d98-743c-364e-a2cd-82567612d750.json b/run/saves/New World/advancements/c0f25d98-743c-364e-a2cd-82567612d750.json new file mode 100644 index 0000000..cc4b6b7 --- /dev/null +++ b/run/saves/New World/advancements/c0f25d98-743c-364e-a2cd-82567612d750.json @@ -0,0 +1,16 @@ +{ + "minecraft:adventure/root": { + "criteria": { + "killed_by_something": "2021-12-11 19:52:29 -0400" + }, + "done": true + }, + "minecraft:adventure/adventuring_time": { + "criteria": { + "minecraft:stony_shore": "2021-12-11 19:52:23 -0400", + "minecraft:plains": "2021-12-11 19:52:15 -0400" + }, + "done": false + }, + "DataVersion": 2860 +} \ No newline at end of file diff --git a/run/saves/New World/advancements/e6106110-0611-3c88-99d4-92770daab422.json b/run/saves/New World/advancements/e6106110-0611-3c88-99d4-92770daab422.json new file mode 100644 index 0000000..4cc03ff --- /dev/null +++ b/run/saves/New World/advancements/e6106110-0611-3c88-99d4-92770daab422.json @@ -0,0 +1,10 @@ +{ + "minecraft:adventure/adventuring_time": { + "criteria": { + "minecraft:stony_shore": "2021-12-11 19:31:45 -0400", + "minecraft:plains": "2021-12-11 19:31:58 -0400" + }, + "done": false + }, + "DataVersion": 2860 +} \ No newline at end of file diff --git a/run/saves/New World/advancements/f25f601d-4501-33e2-b5d9-0d4e52342d0d.json b/run/saves/New World/advancements/f25f601d-4501-33e2-b5d9-0d4e52342d0d.json new file mode 100644 index 0000000..303b188 --- /dev/null +++ b/run/saves/New World/advancements/f25f601d-4501-33e2-b5d9-0d4e52342d0d.json @@ -0,0 +1,46 @@ +{ + "minecraft:recipes/transportation/acacia_boat": { + "criteria": { + "in_water": "2021-12-11 18:56:08 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/oak_boat": { + "criteria": { + "in_water": "2021-12-11 18:56:08 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/dark_oak_boat": { + "criteria": { + "in_water": "2021-12-11 18:56:08 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/birch_boat": { + "criteria": { + "in_water": "2021-12-11 18:56:08 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/jungle_boat": { + "criteria": { + "in_water": "2021-12-11 18:56:08 -0400" + }, + "done": true + }, + "minecraft:recipes/transportation/spruce_boat": { + "criteria": { + "in_water": "2021-12-11 18:56:08 -0400" + }, + "done": true + }, + "minecraft:adventure/adventuring_time": { + "criteria": { + "minecraft:river": "2021-12-11 18:56:08 -0400", + "minecraft:stony_shore": "2021-12-11 18:56:11 -0400" + }, + "done": false + }, + "DataVersion": 2860 +} \ No newline at end of file diff --git a/run/saves/New World/data/raids.dat b/run/saves/New World/data/raids.dat index fe97f39..a6a417b 100644 Binary files a/run/saves/New World/data/raids.dat and b/run/saves/New World/data/raids.dat differ diff --git a/run/saves/New World/entities/r.-1.-1.mca b/run/saves/New World/entities/r.-1.-1.mca index ce2b876..d795744 100644 Binary files a/run/saves/New World/entities/r.-1.-1.mca and b/run/saves/New World/entities/r.-1.-1.mca differ diff --git a/run/saves/New World/entities/r.-1.0.mca b/run/saves/New World/entities/r.-1.0.mca index d7f0672..56ca823 100644 Binary files a/run/saves/New World/entities/r.-1.0.mca and b/run/saves/New World/entities/r.-1.0.mca differ diff --git a/run/saves/New World/entities/r.0.-1.mca b/run/saves/New World/entities/r.0.-1.mca index a1c691a..87817d7 100644 Binary files a/run/saves/New World/entities/r.0.-1.mca and b/run/saves/New World/entities/r.0.-1.mca differ diff --git a/run/saves/New World/entities/r.0.0.mca b/run/saves/New World/entities/r.0.0.mca index 150a812..5d4b2b5 100644 Binary files a/run/saves/New World/entities/r.0.0.mca and b/run/saves/New World/entities/r.0.0.mca differ diff --git a/run/saves/New World/level.dat b/run/saves/New World/level.dat index 4206fad..8a172b8 100644 Binary files a/run/saves/New World/level.dat and b/run/saves/New World/level.dat differ diff --git a/run/saves/New World/level.dat_old b/run/saves/New World/level.dat_old index d389936..9dc605e 100644 Binary files a/run/saves/New World/level.dat_old and b/run/saves/New World/level.dat_old differ diff --git a/run/saves/New World/playerdata/078f5e46-1768-3b85-8c83-1cee0b3b10ab.dat b/run/saves/New World/playerdata/078f5e46-1768-3b85-8c83-1cee0b3b10ab.dat new file mode 100644 index 0000000..9cbe055 Binary files /dev/null and b/run/saves/New World/playerdata/078f5e46-1768-3b85-8c83-1cee0b3b10ab.dat differ diff --git a/run/saves/New World/playerdata/078f5e46-1768-3b85-8c83-1cee0b3b10ab.dat_old b/run/saves/New World/playerdata/078f5e46-1768-3b85-8c83-1cee0b3b10ab.dat_old new file mode 100644 index 0000000..a6a44ef Binary files /dev/null and b/run/saves/New World/playerdata/078f5e46-1768-3b85-8c83-1cee0b3b10ab.dat_old differ diff --git a/run/saves/New World/playerdata/1c38adbd-952c-3cbe-9338-7d9a41f64a2f.dat b/run/saves/New World/playerdata/1c38adbd-952c-3cbe-9338-7d9a41f64a2f.dat new file mode 100644 index 0000000..627ddf5 Binary files /dev/null and b/run/saves/New World/playerdata/1c38adbd-952c-3cbe-9338-7d9a41f64a2f.dat differ diff --git a/run/saves/New World/playerdata/1c38adbd-952c-3cbe-9338-7d9a41f64a2f.dat_old b/run/saves/New World/playerdata/1c38adbd-952c-3cbe-9338-7d9a41f64a2f.dat_old new file mode 100644 index 0000000..627ddf5 Binary files /dev/null and b/run/saves/New World/playerdata/1c38adbd-952c-3cbe-9338-7d9a41f64a2f.dat_old differ diff --git a/run/saves/New World/playerdata/3c02c3d3-91ac-35cd-a553-1c3a94c6fe76.dat b/run/saves/New World/playerdata/3c02c3d3-91ac-35cd-a553-1c3a94c6fe76.dat new file mode 100644 index 0000000..16ba357 Binary files /dev/null and b/run/saves/New World/playerdata/3c02c3d3-91ac-35cd-a553-1c3a94c6fe76.dat differ diff --git a/run/saves/New World/playerdata/3c02c3d3-91ac-35cd-a553-1c3a94c6fe76.dat_old b/run/saves/New World/playerdata/3c02c3d3-91ac-35cd-a553-1c3a94c6fe76.dat_old new file mode 100644 index 0000000..16ba357 Binary files /dev/null and b/run/saves/New World/playerdata/3c02c3d3-91ac-35cd-a553-1c3a94c6fe76.dat_old differ diff --git a/run/saves/New World/playerdata/46f780a1-2e26-3e88-a90a-02cf37fe1547.dat b/run/saves/New World/playerdata/46f780a1-2e26-3e88-a90a-02cf37fe1547.dat new file mode 100644 index 0000000..5f031c0 Binary files /dev/null and b/run/saves/New World/playerdata/46f780a1-2e26-3e88-a90a-02cf37fe1547.dat differ diff --git a/run/saves/New World/playerdata/5a8b675a-352f-385b-94f4-369e3f70aa83.dat b/run/saves/New World/playerdata/5a8b675a-352f-385b-94f4-369e3f70aa83.dat new file mode 100644 index 0000000..91901e7 Binary files /dev/null and b/run/saves/New World/playerdata/5a8b675a-352f-385b-94f4-369e3f70aa83.dat differ diff --git a/run/saves/New World/playerdata/6b45a986-a4aa-3b68-85a3-c5041d0b6192.dat b/run/saves/New World/playerdata/6b45a986-a4aa-3b68-85a3-c5041d0b6192.dat new file mode 100644 index 0000000..f5d0f55 Binary files /dev/null and b/run/saves/New World/playerdata/6b45a986-a4aa-3b68-85a3-c5041d0b6192.dat differ diff --git a/run/saves/New World/playerdata/6db1171d-4fa6-31cb-b425-1896281a26e2.dat b/run/saves/New World/playerdata/6db1171d-4fa6-31cb-b425-1896281a26e2.dat new file mode 100644 index 0000000..2a0131c Binary files /dev/null and b/run/saves/New World/playerdata/6db1171d-4fa6-31cb-b425-1896281a26e2.dat differ diff --git a/run/saves/New World/playerdata/6db1171d-4fa6-31cb-b425-1896281a26e2.dat_old b/run/saves/New World/playerdata/6db1171d-4fa6-31cb-b425-1896281a26e2.dat_old new file mode 100644 index 0000000..2a0131c Binary files /dev/null and b/run/saves/New World/playerdata/6db1171d-4fa6-31cb-b425-1896281a26e2.dat_old differ diff --git a/run/saves/New World/playerdata/79804575-3cdf-34b1-8aa3-c1036031e749.dat b/run/saves/New World/playerdata/79804575-3cdf-34b1-8aa3-c1036031e749.dat new file mode 100644 index 0000000..3c486c2 Binary files /dev/null and b/run/saves/New World/playerdata/79804575-3cdf-34b1-8aa3-c1036031e749.dat differ diff --git a/run/saves/New World/playerdata/79804575-3cdf-34b1-8aa3-c1036031e749.dat_old b/run/saves/New World/playerdata/79804575-3cdf-34b1-8aa3-c1036031e749.dat_old new file mode 100644 index 0000000..ef3d9d5 Binary files /dev/null and b/run/saves/New World/playerdata/79804575-3cdf-34b1-8aa3-c1036031e749.dat_old differ diff --git a/run/saves/New World/playerdata/7fef5833-06c9-398a-84c0-fbd3a81ff548.dat b/run/saves/New World/playerdata/7fef5833-06c9-398a-84c0-fbd3a81ff548.dat new file mode 100644 index 0000000..ae6a12d Binary files /dev/null and b/run/saves/New World/playerdata/7fef5833-06c9-398a-84c0-fbd3a81ff548.dat differ diff --git a/run/saves/New World/playerdata/7fef5833-06c9-398a-84c0-fbd3a81ff548.dat_old b/run/saves/New World/playerdata/7fef5833-06c9-398a-84c0-fbd3a81ff548.dat_old new file mode 100644 index 0000000..ae6a12d Binary files /dev/null and b/run/saves/New World/playerdata/7fef5833-06c9-398a-84c0-fbd3a81ff548.dat_old differ diff --git a/run/saves/New World/playerdata/a240c974-e4f5-311c-82e7-f92bb39b2584.dat b/run/saves/New World/playerdata/a240c974-e4f5-311c-82e7-f92bb39b2584.dat new file mode 100644 index 0000000..3c1123f Binary files /dev/null and b/run/saves/New World/playerdata/a240c974-e4f5-311c-82e7-f92bb39b2584.dat differ diff --git a/run/saves/New World/playerdata/a240c974-e4f5-311c-82e7-f92bb39b2584.dat_old b/run/saves/New World/playerdata/a240c974-e4f5-311c-82e7-f92bb39b2584.dat_old new file mode 100644 index 0000000..fdc22a8 Binary files /dev/null and b/run/saves/New World/playerdata/a240c974-e4f5-311c-82e7-f92bb39b2584.dat_old differ diff --git a/run/saves/New World/playerdata/c0f25d98-743c-364e-a2cd-82567612d750.dat b/run/saves/New World/playerdata/c0f25d98-743c-364e-a2cd-82567612d750.dat new file mode 100644 index 0000000..30c216b Binary files /dev/null and b/run/saves/New World/playerdata/c0f25d98-743c-364e-a2cd-82567612d750.dat differ diff --git a/run/saves/New World/playerdata/e6106110-0611-3c88-99d4-92770daab422.dat b/run/saves/New World/playerdata/e6106110-0611-3c88-99d4-92770daab422.dat new file mode 100644 index 0000000..5cba99c Binary files /dev/null and b/run/saves/New World/playerdata/e6106110-0611-3c88-99d4-92770daab422.dat differ diff --git a/run/saves/New World/playerdata/f25f601d-4501-33e2-b5d9-0d4e52342d0d.dat b/run/saves/New World/playerdata/f25f601d-4501-33e2-b5d9-0d4e52342d0d.dat new file mode 100644 index 0000000..a45a54d Binary files /dev/null and b/run/saves/New World/playerdata/f25f601d-4501-33e2-b5d9-0d4e52342d0d.dat differ diff --git a/run/saves/New World/playerdata/f25f601d-4501-33e2-b5d9-0d4e52342d0d.dat_old b/run/saves/New World/playerdata/f25f601d-4501-33e2-b5d9-0d4e52342d0d.dat_old new file mode 100644 index 0000000..895c8fa Binary files /dev/null and b/run/saves/New World/playerdata/f25f601d-4501-33e2-b5d9-0d4e52342d0d.dat_old differ diff --git a/run/saves/New World/region/r.-1.-1.mca b/run/saves/New World/region/r.-1.-1.mca index 45aa866..8cf8cca 100644 Binary files a/run/saves/New World/region/r.-1.-1.mca and b/run/saves/New World/region/r.-1.-1.mca differ diff --git a/run/saves/New World/region/r.-1.0.mca b/run/saves/New World/region/r.-1.0.mca index 0b1cbd5..b9048e6 100644 Binary files a/run/saves/New World/region/r.-1.0.mca and b/run/saves/New World/region/r.-1.0.mca differ diff --git a/run/saves/New World/region/r.0.-1.mca b/run/saves/New World/region/r.0.-1.mca index f9acd36..954629f 100644 Binary files a/run/saves/New World/region/r.0.-1.mca and b/run/saves/New World/region/r.0.-1.mca differ diff --git a/run/saves/New World/region/r.0.0.mca b/run/saves/New World/region/r.0.0.mca index 50d7751..e87648e 100644 Binary files a/run/saves/New World/region/r.0.0.mca and b/run/saves/New World/region/r.0.0.mca differ diff --git a/run/saves/New World/stats/078f5e46-1768-3b85-8c83-1cee0b3b10ab.json b/run/saves/New World/stats/078f5e46-1768-3b85-8c83-1cee0b3b10ab.json new file mode 100644 index 0000000..38c537d --- /dev/null +++ b/run/saves/New World/stats/078f5e46-1768-3b85-8c83-1cee0b3b10ab.json @@ -0,0 +1 @@ +{"stats":{"minecraft:picked_up":{"minecraft:rotten_flesh":2},"minecraft:custom":{"minecraft:jump":28,"minecraft:time_since_rest":737,"minecraft:leave_game":1,"minecraft:sprint_one_cm":1768,"minecraft:deaths":1,"minecraft:damage_taken":300,"minecraft:play_time":949,"minecraft:walk_on_water_one_cm":643,"minecraft:time_since_death":699,"minecraft:walk_one_cm":1678,"minecraft:sneak_time":12,"minecraft:total_world_time":1116,"minecraft:walk_under_water_one_cm":1441,"minecraft:fall_one_cm":418,"minecraft:fly_one_cm":3990}},"DataVersion":2860} \ No newline at end of file diff --git a/run/saves/New World/stats/1c38adbd-952c-3cbe-9338-7d9a41f64a2f.json b/run/saves/New World/stats/1c38adbd-952c-3cbe-9338-7d9a41f64a2f.json new file mode 100644 index 0000000..20c08a3 --- /dev/null +++ b/run/saves/New World/stats/1c38adbd-952c-3cbe-9338-7d9a41f64a2f.json @@ -0,0 +1 @@ +{"stats":{"minecraft:custom":{"minecraft:jump":3,"minecraft:time_since_rest":832,"minecraft:leave_game":1,"minecraft:sprint_one_cm":1095,"minecraft:play_time":832,"minecraft:time_since_death":832,"minecraft:walk_one_cm":432,"minecraft:total_world_time":1356,"minecraft:fall_one_cm":418,"minecraft:fly_one_cm":763}},"DataVersion":2860} \ No newline at end of file diff --git a/run/saves/New World/stats/3c02c3d3-91ac-35cd-a553-1c3a94c6fe76.json b/run/saves/New World/stats/3c02c3d3-91ac-35cd-a553-1c3a94c6fe76.json new file mode 100644 index 0000000..f78b735 --- /dev/null +++ b/run/saves/New World/stats/3c02c3d3-91ac-35cd-a553-1c3a94c6fe76.json @@ -0,0 +1 @@ +{"stats":{"minecraft:custom":{"minecraft:jump":19,"minecraft:time_since_rest":74,"minecraft:leave_game":1,"minecraft:deaths":1,"minecraft:damage_taken":20,"minecraft:sprint_one_cm":2167,"minecraft:play_time":648,"minecraft:walk_on_water_one_cm":40,"minecraft:time_since_death":40,"minecraft:walk_one_cm":885,"minecraft:total_world_time":822,"minecraft:walk_under_water_one_cm":39,"minecraft:fall_one_cm":1254,"minecraft:fly_one_cm":7205}},"DataVersion":2860} \ No newline at end of file diff --git a/run/saves/New World/stats/46f780a1-2e26-3e88-a90a-02cf37fe1547.json b/run/saves/New World/stats/46f780a1-2e26-3e88-a90a-02cf37fe1547.json new file mode 100644 index 0000000..168045f --- /dev/null +++ b/run/saves/New World/stats/46f780a1-2e26-3e88-a90a-02cf37fe1547.json @@ -0,0 +1 @@ +{"stats":{"minecraft:custom":{"minecraft:jump":20,"minecraft:time_since_rest":37,"minecraft:leave_game":1,"minecraft:deaths":1,"minecraft:damage_taken":40,"minecraft:sprint_one_cm":2169,"minecraft:play_time":652,"minecraft:walk_on_water_one_cm":60,"minecraft:time_since_death":0,"minecraft:walk_one_cm":2211,"minecraft:total_world_time":911,"minecraft:walk_under_water_one_cm":1105,"minecraft:fall_one_cm":418,"minecraft:fly_one_cm":5630},"minecraft:mined":{"minecraft:grass":1}},"DataVersion":2860} \ No newline at end of file diff --git a/run/saves/New World/stats/5a8b675a-352f-385b-94f4-369e3f70aa83.json b/run/saves/New World/stats/5a8b675a-352f-385b-94f4-369e3f70aa83.json new file mode 100644 index 0000000..0edf17c --- /dev/null +++ b/run/saves/New World/stats/5a8b675a-352f-385b-94f4-369e3f70aa83.json @@ -0,0 +1 @@ +{"stats":{"minecraft:killed_by":{"minecraft:zombie":1},"minecraft:custom":{"minecraft:jump":7,"minecraft:time_since_rest":496,"minecraft:damage_dealt":87,"minecraft:leave_game":1,"minecraft:sprint_one_cm":1180,"minecraft:deaths":1,"minecraft:play_time":581,"minecraft:damage_taken":260,"minecraft:time_since_death":425,"minecraft:walk_one_cm":3730,"minecraft:total_world_time":597,"minecraft:fall_one_cm":209,"minecraft:fly_one_cm":1888}},"DataVersion":2860} \ No newline at end of file diff --git a/run/saves/New World/stats/6b45a986-a4aa-3b68-85a3-c5041d0b6192.json b/run/saves/New World/stats/6b45a986-a4aa-3b68-85a3-c5041d0b6192.json new file mode 100644 index 0000000..0a2ec7a --- /dev/null +++ b/run/saves/New World/stats/6b45a986-a4aa-3b68-85a3-c5041d0b6192.json @@ -0,0 +1 @@ +{"stats":{"minecraft:killed":{"minecraft:zombie":2},"minecraft:custom":{"minecraft:time_since_rest":994,"minecraft:damage_dealt":116,"minecraft:leave_game":1,"minecraft:sprint_one_cm":3535,"minecraft:play_time":994,"minecraft:damage_taken":150,"minecraft:time_since_death":994,"minecraft:walk_one_cm":10096,"minecraft:total_world_time":1009,"minecraft:mob_kills":2,"minecraft:fly_one_cm":4177,"minecraft:jump":20}},"DataVersion":2860} \ No newline at end of file diff --git a/run/saves/New World/stats/6db1171d-4fa6-31cb-b425-1896281a26e2.json b/run/saves/New World/stats/6db1171d-4fa6-31cb-b425-1896281a26e2.json new file mode 100644 index 0000000..2f6c8fd --- /dev/null +++ b/run/saves/New World/stats/6db1171d-4fa6-31cb-b425-1896281a26e2.json @@ -0,0 +1 @@ +{"stats":{"minecraft:custom":{"minecraft:jump":8,"minecraft:time_since_rest":1452,"minecraft:leave_game":1,"minecraft:sprint_one_cm":4686,"minecraft:play_time":1452,"minecraft:time_since_death":1452,"minecraft:walk_one_cm":768,"minecraft:total_world_time":1648,"minecraft:fall_one_cm":209,"minecraft:fly_one_cm":1717}},"DataVersion":2860} \ No newline at end of file diff --git a/run/saves/New World/stats/79804575-3cdf-34b1-8aa3-c1036031e749.json b/run/saves/New World/stats/79804575-3cdf-34b1-8aa3-c1036031e749.json new file mode 100644 index 0000000..15db077 --- /dev/null +++ b/run/saves/New World/stats/79804575-3cdf-34b1-8aa3-c1036031e749.json @@ -0,0 +1 @@ +{"stats":{"minecraft:killed_by":{"minecraft:skeleton":2},"minecraft:custom":{"minecraft:jump":6,"minecraft:time_since_rest":304,"minecraft:leave_game":1,"minecraft:sprint_one_cm":638,"minecraft:deaths":2,"minecraft:play_time":630,"minecraft:damage_taken":450,"minecraft:time_since_death":279,"minecraft:walk_one_cm":4128,"minecraft:total_world_time":767,"minecraft:fall_one_cm":244,"minecraft:fly_one_cm":1637}},"DataVersion":2860} \ No newline at end of file diff --git a/run/saves/New World/stats/7fef5833-06c9-398a-84c0-fbd3a81ff548.json b/run/saves/New World/stats/7fef5833-06c9-398a-84c0-fbd3a81ff548.json new file mode 100644 index 0000000..336147f --- /dev/null +++ b/run/saves/New World/stats/7fef5833-06c9-398a-84c0-fbd3a81ff548.json @@ -0,0 +1 @@ +{"stats":{"minecraft:custom":{"minecraft:jump":3,"minecraft:time_since_rest":244,"minecraft:damage_dealt":18,"minecraft:leave_game":1,"minecraft:sprint_one_cm":95,"minecraft:play_time":244,"minecraft:time_since_death":244,"minecraft:walk_one_cm":1416,"minecraft:total_world_time":335,"minecraft:fall_one_cm":209,"minecraft:fly_one_cm":1020}},"DataVersion":2860} \ No newline at end of file diff --git a/run/saves/New World/stats/a240c974-e4f5-311c-82e7-f92bb39b2584.json b/run/saves/New World/stats/a240c974-e4f5-311c-82e7-f92bb39b2584.json new file mode 100644 index 0000000..164d6df --- /dev/null +++ b/run/saves/New World/stats/a240c974-e4f5-311c-82e7-f92bb39b2584.json @@ -0,0 +1 @@ +{"stats":{"minecraft:custom":{"minecraft:jump":8,"minecraft:time_since_rest":41,"minecraft:damage_dealt":279,"minecraft:leave_game":1,"minecraft:deaths":1,"minecraft:sprint_one_cm":774,"minecraft:play_time":1007,"minecraft:damage_taken":240,"minecraft:time_since_death":0,"minecraft:walk_one_cm":7801,"minecraft:total_world_time":1475,"minecraft:fall_one_cm":418,"minecraft:fly_one_cm":1092},"minecraft:killed_by":{"minecraft:zombie":1}},"DataVersion":2860} \ No newline at end of file diff --git a/run/saves/New World/stats/c0f25d98-743c-364e-a2cd-82567612d750.json b/run/saves/New World/stats/c0f25d98-743c-364e-a2cd-82567612d750.json new file mode 100644 index 0000000..f848da8 --- /dev/null +++ b/run/saves/New World/stats/c0f25d98-743c-364e-a2cd-82567612d750.json @@ -0,0 +1 @@ +{"stats":{"minecraft:custom":{"minecraft:jump":15,"minecraft:time_since_rest":679,"minecraft:damage_dealt":10,"minecraft:leave_game":1,"minecraft:deaths":1,"minecraft:sprint_one_cm":3949,"minecraft:play_time":941,"minecraft:damage_taken":340,"minecraft:time_since_death":653,"minecraft:walk_one_cm":4721,"minecraft:total_world_time":977,"minecraft:fall_one_cm":627,"minecraft:fly_one_cm":3460},"minecraft:killed_by":{"minecraft:skeleton":1}},"DataVersion":2860} \ No newline at end of file diff --git a/run/saves/New World/stats/e6106110-0611-3c88-99d4-92770daab422.json b/run/saves/New World/stats/e6106110-0611-3c88-99d4-92770daab422.json new file mode 100644 index 0000000..f14388e --- /dev/null +++ b/run/saves/New World/stats/e6106110-0611-3c88-99d4-92770daab422.json @@ -0,0 +1 @@ +{"stats":{"minecraft:custom":{"minecraft:jump":9,"minecraft:time_since_rest":537,"minecraft:damage_dealt":74,"minecraft:leave_game":1,"minecraft:sprint_one_cm":1093,"minecraft:play_time":537,"minecraft:damage_taken":90,"minecraft:time_since_death":503,"minecraft:walk_one_cm":3167,"minecraft:total_world_time":556,"minecraft:fall_one_cm":476,"minecraft:fly_one_cm":3872}},"DataVersion":2860} \ No newline at end of file diff --git a/run/saves/New World/stats/f25f601d-4501-33e2-b5d9-0d4e52342d0d.json b/run/saves/New World/stats/f25f601d-4501-33e2-b5d9-0d4e52342d0d.json new file mode 100644 index 0000000..26e3525 --- /dev/null +++ b/run/saves/New World/stats/f25f601d-4501-33e2-b5d9-0d4e52342d0d.json @@ -0,0 +1 @@ +{"stats":{"minecraft:custom":{"minecraft:jump":6,"minecraft:time_since_rest":619,"minecraft:leave_game":1,"minecraft:sprint_one_cm":1044,"minecraft:play_time":619,"minecraft:damage_taken":230,"minecraft:time_since_death":589,"minecraft:walk_one_cm":1574,"minecraft:total_world_time":684,"minecraft:walk_under_water_one_cm":126,"minecraft:fly_one_cm":633}},"DataVersion":2860} \ No newline at end of file diff --git a/run/usercache.json b/run/usercache.json index 9e0cfda..a90427b 100644 --- a/run/usercache.json +++ b/run/usercache.json @@ -1 +1 @@ -[{"name":"Player131","uuid":"27903c96-6327-3ab4-9463-21017fd8955d","expiresOn":"2022-01-11 17:01:26 -0400"},{"name":"Player596","uuid":"b6f7a483-95d4-3c1c-a80d-d6147f86003c","expiresOn":"2022-01-11 16:57:40 -0400"},{"name":"Player765","uuid":"5f90bf1f-575d-3542-89d7-731859eee6f2","expiresOn":"2022-01-11 16:50:58 -0400"},{"name":"Player701","uuid":"64aef991-58f2-3dcc-9bb9-8df57ee15c84","expiresOn":"2022-01-11 15:38:30 -0400"},{"name":"Player696","uuid":"7b2fc485-d259-389c-bb22-fc20b2865ae3","expiresOn":"2022-01-11 15:30:44 -0400"},{"name":"Player490","uuid":"e3cbbed2-a904-3501-9aba-c8ad5473501b","expiresOn":"2022-01-11 15:08:57 -0400"},{"name":"Player539","uuid":"449546f9-463a-3959-807a-caed6d7d3cca","expiresOn":"2022-01-11 13:25:42 -0400"},{"name":"Player460","uuid":"46c1b760-ca01-3b6f-9924-2c0867885238","expiresOn":"2022-01-11 12:45:23 -0400"},{"name":"Player162","uuid":"857939d7-cfd3-33df-b811-954d0fb8ea8e","expiresOn":"2022-01-11 12:42:56 -0400"},{"name":"Player652","uuid":"6f525ab9-4df4-3875-8280-4904a48f9cd7","expiresOn":"2022-01-11 12:40:13 -0400"},{"name":"Player990","uuid":"f109a640-cd93-3f49-a1e7-75407085bbf0","expiresOn":"2022-01-11 12:35:21 -0400"},{"name":"Player634","uuid":"bdc5f32b-6d6c-3510-b82f-68a782d73b82","expiresOn":"2022-01-11 12:27:50 -0400"},{"name":"Player281","uuid":"b743052f-5855-37e7-a97b-fd551acafef4","expiresOn":"2022-01-11 12:15:47 -0400"},{"name":"Player451","uuid":"efe2ab2d-072a-337a-9d65-10da4f48c969","expiresOn":"2022-01-11 11:56:14 -0400"},{"name":"Player211","uuid":"da0854f1-946e-3e92-942a-afd6fa88ef77","expiresOn":"2022-01-11 11:54:41 -0400"},{"name":"Player180","uuid":"2e271c1a-d081-32c8-843a-f79146152093","expiresOn":"2022-01-11 11:52:45 -0400"},{"name":"Player64","uuid":"46c6e0f0-63e8-3a58-bf04-38eedc04d149","expiresOn":"2022-01-11 11:50:14 -0400"},{"name":"Player756","uuid":"393f993c-07f1-322f-8af5-e61da4aa15d9","expiresOn":"2022-01-11 11:48:17 -0400"},{"name":"Player407","uuid":"da5cc374-3bd7-357d-9ee2-36c8124e8cc4","expiresOn":"2022-01-11 11:45:33 -0400"},{"name":"Player884","uuid":"16352087-2dde-32f0-819a-77046d6a13d3","expiresOn":"2022-01-11 11:43:05 -0400"},{"name":"Player916","uuid":"f7621ff1-653f-32ec-8621-00c0392bfbcc","expiresOn":"2022-01-11 11:38:26 -0400"},{"name":"Player798","uuid":"b91f0a72-af04-3f0f-855e-a1f30159432b","expiresOn":"2022-01-11 11:18:18 -0400"},{"name":"Player250","uuid":"c98187a9-e17b-3f48-8a33-882e62d18d19","expiresOn":"2022-01-11 09:30:21 -0400"},{"name":"Player340","uuid":"610176b0-594f-3c1a-b889-ed063dbc06ea","expiresOn":"2022-01-11 09:29:09 -0400"},{"name":"Player764","uuid":"07f066df-e334-33b1-a24c-2ec414c5ef02","expiresOn":"2022-01-11 09:14:46 -0400"},{"name":"Player355","uuid":"1b8d41ee-20e2-3849-a434-0d774a740ae1","expiresOn":"2022-01-11 07:43:58 -0400"},{"name":"Player762","uuid":"6be062b2-d5f9-3e2d-be7e-7d0540b46d78","expiresOn":"2022-01-11 07:38:05 -0400"},{"name":"Player891","uuid":"cfc92182-cce0-3b37-884c-2944311ee55d","expiresOn":"2022-01-11 07:18:36 -0400"}] \ No newline at end of file +[{"name":"Player600","uuid":"c0f25d98-743c-364e-a2cd-82567612d750","expiresOn":"2022-01-11 19:52:14 -0400"},{"name":"Player674","uuid":"79804575-3cdf-34b1-8aa3-c1036031e749","expiresOn":"2022-01-11 19:49:59 -0400"},{"name":"Player439","uuid":"5a8b675a-352f-385b-94f4-369e3f70aa83","expiresOn":"2022-01-11 19:44:14 -0400"},{"name":"Player602","uuid":"7fef5833-06c9-398a-84c0-fbd3a81ff548","expiresOn":"2022-01-11 19:41:40 -0400"},{"name":"Player888","uuid":"6b45a986-a4aa-3b68-85a3-c5041d0b6192","expiresOn":"2022-01-11 19:36:41 -0400"},{"name":"Player193","uuid":"e6106110-0611-3c88-99d4-92770daab422","expiresOn":"2022-01-11 19:31:45 -0400"},{"name":"Player208","uuid":"a240c974-e4f5-311c-82e7-f92bb39b2584","expiresOn":"2022-01-11 19:22:54 -0400"},{"name":"Player308","uuid":"6db1171d-4fa6-31cb-b425-1896281a26e2","expiresOn":"2022-01-11 19:16:02 -0400"},{"name":"Player754","uuid":"3c02c3d3-91ac-35cd-a553-1c3a94c6fe76","expiresOn":"2022-01-11 19:10:59 -0400"},{"name":"Player975","uuid":"1c38adbd-952c-3cbe-9338-7d9a41f64a2f","expiresOn":"2022-01-11 19:01:28 -0400"},{"name":"Player244","uuid":"f25f601d-4501-33e2-b5d9-0d4e52342d0d","expiresOn":"2022-01-11 18:56:37 -0400"},{"name":"Player491","uuid":"46f780a1-2e26-3e88-a90a-02cf37fe1547","expiresOn":"2022-01-11 18:50:58 -0400"},{"name":"Player776","uuid":"078f5e46-1768-3b85-8c83-1cee0b3b10ab","expiresOn":"2022-01-11 18:08:15 -0400"},{"name":"Player131","uuid":"27903c96-6327-3ab4-9463-21017fd8955d","expiresOn":"2022-01-11 17:01:26 -0400"},{"name":"Player596","uuid":"b6f7a483-95d4-3c1c-a80d-d6147f86003c","expiresOn":"2022-01-11 16:57:40 -0400"},{"name":"Player765","uuid":"5f90bf1f-575d-3542-89d7-731859eee6f2","expiresOn":"2022-01-11 16:50:58 -0400"},{"name":"Player701","uuid":"64aef991-58f2-3dcc-9bb9-8df57ee15c84","expiresOn":"2022-01-11 15:38:30 -0400"},{"name":"Player696","uuid":"7b2fc485-d259-389c-bb22-fc20b2865ae3","expiresOn":"2022-01-11 15:30:44 -0400"},{"name":"Player490","uuid":"e3cbbed2-a904-3501-9aba-c8ad5473501b","expiresOn":"2022-01-11 15:08:57 -0400"},{"name":"Player539","uuid":"449546f9-463a-3959-807a-caed6d7d3cca","expiresOn":"2022-01-11 13:25:42 -0400"},{"name":"Player460","uuid":"46c1b760-ca01-3b6f-9924-2c0867885238","expiresOn":"2022-01-11 12:45:23 -0400"},{"name":"Player162","uuid":"857939d7-cfd3-33df-b811-954d0fb8ea8e","expiresOn":"2022-01-11 12:42:56 -0400"},{"name":"Player652","uuid":"6f525ab9-4df4-3875-8280-4904a48f9cd7","expiresOn":"2022-01-11 12:40:13 -0400"},{"name":"Player990","uuid":"f109a640-cd93-3f49-a1e7-75407085bbf0","expiresOn":"2022-01-11 12:35:21 -0400"},{"name":"Player634","uuid":"bdc5f32b-6d6c-3510-b82f-68a782d73b82","expiresOn":"2022-01-11 12:27:50 -0400"},{"name":"Player281","uuid":"b743052f-5855-37e7-a97b-fd551acafef4","expiresOn":"2022-01-11 12:15:47 -0400"},{"name":"Player451","uuid":"efe2ab2d-072a-337a-9d65-10da4f48c969","expiresOn":"2022-01-11 11:56:14 -0400"},{"name":"Player211","uuid":"da0854f1-946e-3e92-942a-afd6fa88ef77","expiresOn":"2022-01-11 11:54:41 -0400"},{"name":"Player180","uuid":"2e271c1a-d081-32c8-843a-f79146152093","expiresOn":"2022-01-11 11:52:45 -0400"},{"name":"Player64","uuid":"46c6e0f0-63e8-3a58-bf04-38eedc04d149","expiresOn":"2022-01-11 11:50:14 -0400"},{"name":"Player756","uuid":"393f993c-07f1-322f-8af5-e61da4aa15d9","expiresOn":"2022-01-11 11:48:17 -0400"},{"name":"Player407","uuid":"da5cc374-3bd7-357d-9ee2-36c8124e8cc4","expiresOn":"2022-01-11 11:45:33 -0400"},{"name":"Player884","uuid":"16352087-2dde-32f0-819a-77046d6a13d3","expiresOn":"2022-01-11 11:43:05 -0400"},{"name":"Player916","uuid":"f7621ff1-653f-32ec-8621-00c0392bfbcc","expiresOn":"2022-01-11 11:38:26 -0400"},{"name":"Player798","uuid":"b91f0a72-af04-3f0f-855e-a1f30159432b","expiresOn":"2022-01-11 11:18:18 -0400"},{"name":"Player250","uuid":"c98187a9-e17b-3f48-8a33-882e62d18d19","expiresOn":"2022-01-11 09:30:21 -0400"},{"name":"Player340","uuid":"610176b0-594f-3c1a-b889-ed063dbc06ea","expiresOn":"2022-01-11 09:29:09 -0400"},{"name":"Player764","uuid":"07f066df-e334-33b1-a24c-2ec414c5ef02","expiresOn":"2022-01-11 09:14:46 -0400"},{"name":"Player355","uuid":"1b8d41ee-20e2-3849-a434-0d774a740ae1","expiresOn":"2022-01-11 07:43:58 -0400"},{"name":"Player762","uuid":"6be062b2-d5f9-3e2d-be7e-7d0540b46d78","expiresOn":"2022-01-11 07:38:05 -0400"},{"name":"Player891","uuid":"cfc92182-cce0-3b37-884c-2944311ee55d","expiresOn":"2022-01-11 07:18:36 -0400"}] \ No newline at end of file diff --git a/src/main/resources/data/aspects/origins/ignis.json b/src/main/resources/data/aspects/origins/ignis.json new file mode 100644 index 0000000..552545e --- /dev/null +++ b/src/main/resources/data/aspects/origins/ignis.json @@ -0,0 +1,13 @@ +{ + "powers": [ + "aspects:hot_biomes", + "aspects:ignis_primary", + "aspects:ignis_secondary", + "aspects:secondary_ding" + ], + "icon": { + "item": "minecraft:zombie_head" + }, + "name": "Ignis", + "description": "Full of energy and power, Ignis types are certainly the life of the party." +} \ No newline at end of file diff --git a/src/main/resources/data/aspects/powers/fire_immunity.json b/src/main/resources/data/aspects/powers/fire_immunity.json index 014d515..4805cfa 100644 --- a/src/main/resources/data/aspects/powers/fire_immunity.json +++ b/src/main/resources/data/aspects/powers/fire_immunity.json @@ -1,5 +1,13 @@ { - "type": "origins:fire_immunity", + "type": "origins:modify_damage_taken", + "damage_condition": { + "type": "origins:fire" + }, + "modifier": { + "operation": "multiply_total", + "value": -1 + }, + "name":"Fire Immunity", "description":"You are immune to fire damage." } \ No newline at end of file diff --git a/src/main/resources/data/aspects/powers/fire_strength.json b/src/main/resources/data/aspects/powers/fire_strength.json new file mode 100644 index 0000000..e219fcd --- /dev/null +++ b/src/main/resources/data/aspects/powers/fire_strength.json @@ -0,0 +1,15 @@ +{ + "type": "origins:conditioned_attribute", + "modifier": { + "attribute": "minecraft:generic.attack_damage", + "operation": "addition", + "value": 0.2 + }, + "tick_rate": 20, + "condition": { + "type": "origins:on_fire" + }, + + "name":"Heated Strength", + "description":"Being on fire grants you an attack damage bonus." +} diff --git a/src/main/resources/data/aspects/powers/hot_biomes.json b/src/main/resources/data/aspects/powers/hot_biomes.json new file mode 100644 index 0000000..24d84e6 --- /dev/null +++ b/src/main/resources/data/aspects/powers/hot_biomes.json @@ -0,0 +1,19 @@ +{ + "type": "origins:conditioned_attribute", + "modifier": { + "attribute": "minecraft:generic.attack_damage", + "operation": "addition", + "value": 0.4 + }, +"tick_rate": 20, +"condition": { + "type": "origins:biome", + "condition": { + "type": "origins:temperature", + "comparison": ">=", + "compare_to": 1.0 + } + }, + "name":"Heat Affinity", + "description":"You get a decent attack boost in hot biomes." +} \ No newline at end of file diff --git a/src/main/resources/data/aspects/powers/ignis_primary.json b/src/main/resources/data/aspects/powers/ignis_primary.json new file mode 100644 index 0000000..de7d4e2 --- /dev/null +++ b/src/main/resources/data/aspects/powers/ignis_primary.json @@ -0,0 +1,14 @@ +{ + "type": "origins:active_self", + "entity_action": { + "type": "origins:set_on_fire", + "duration": 15 + }, + "cooldown": 300, + "hud_render": { + "should_render": true + }, + + "name":"Ignition", + "description":"Using your primary active ability, you can light yourself on fire for a short duration, granting you an attack buff." +} \ No newline at end of file diff --git a/src/main/resources/data/aspects/powers/ignis_secondary.json b/src/main/resources/data/aspects/powers/ignis_secondary.json new file mode 100644 index 0000000..abae3f7 --- /dev/null +++ b/src/main/resources/data/aspects/powers/ignis_secondary.json @@ -0,0 +1,20 @@ +{ + "type": "origins:active_self", + "entity_action": { + "type": "origins:area_of_effect", + "radius": 32, + "bientity_action": { + "type": "origins:target_action", + "action": { + "type": "origins:set_on_fire", + "duration": 5 + } + }, + "bientity_condition": { + "type": "origins:can_see" + } + }, + "key":"key.origins.secondary_active", + "cooldown": 1400, + "name":"As your secondary ability, you can light entites around you on fire for a few seconds." +} \ No newline at end of file diff --git a/src/main/resources/data/aspects/powers/secondary_ding.json b/src/main/resources/data/aspects/powers/secondary_ding.json new file mode 100644 index 0000000..6e6e308 --- /dev/null +++ b/src/main/resources/data/aspects/powers/secondary_ding.json @@ -0,0 +1,10 @@ +{ + "type": "origins:active_self", + "entity_action": { + "type": "origins:play_sound", + "sound": "minecraft:item.firecharge.use" +}, +"key":"key.origins.secondary_active", +"cooldown": 1400, +"hidden":true +} \ No newline at end of file diff --git a/src/main/resources/data/aspects/powers/water_damage.json b/src/main/resources/data/aspects/powers/water_damage.json index d132bc8..99399ff 100644 --- a/src/main/resources/data/aspects/powers/water_damage.json +++ b/src/main/resources/data/aspects/powers/water_damage.json @@ -1,18 +1,29 @@ { - "type": "origins:action_over_time", + "type": "origins:damage_over_time", "interval": 20, - "entity_action": { - "type": "origins:damage", - "amount": 2, - "source":{ - "name":"hurt_by_water" - }, - "condition": { - "type": "origins:fluid_height", - "fluid": "minecraft:water", - "comparison": ">=", - "compare_to": 1 - } + "onset_delay": 1, + "damage": 2, + "damage_easy": 1, + "damage_source": { + "name": "hurt_by_water", + "unblockable": true, + "bypasses_armor": true + }, + "protection_enchantment": "origins:water_protection", + "protection_effectiveness": 1.0, + "condition": { + "type": "origins:or", + "conditions": [ + { + "type": "origins:fluid_height", + "fluid": "minecraft:water", + "comparison": ">", + "compare_to": 0.0 + }, + { + "type": "origins:in_rain" + } + ] }, "name":"Water Damage", "description":"When you touch water, you receive damage."