Не работает таблица лута для блока

Версия Minecraft
1.16.5
API
Fabric

WantaSanchez

Опоздун
633
17
150
Доброго времени суток, форумчане. Есть блок, его таблица лута схожа с таблицей лута для алмазной/изумрудной руды, то бишь сам блок дропаеться только при добычи киркой с чарами "Шёлквое касание", в противном случае выпадает предмет, на который также влияют чары "Удача". Но, таблица лута не работает вообще, хотя по сути это копия ванильной (ну почти). Блок добываеться кирками быстрее, но дроп отсутствует при любых условиях. В коде указал тип и уровень инструмента для добычи и ID вроде все корректные. Есть мысли?

Блок и его регистрация:
public static final Block NETHER_DIAMOND_ORE = new Block(FabricBlockSettings.of(Material.STONE).breakByTool(FabricToolTags.PICKAXES, 2).strength(3, 3).sounds(BlockSoundGroup.NETHER_ORE));

@Override
public void onInitialize() {
       
    Registry.register(Registry.BLOCK, new Identifier("simplecompat", "nether_diamond_ore"), NETHER_DIAMOND_ORE);
   
    Registry.register(Registry.ITEM, new Identifier("simplecompat", "nether_diamond_ore"), new BlockItem(NETHER_DIAMOND_ORE, new FabricItemSettings().group(ItemGroup.BUILDING_BLOCKS)));
       
}

Таблица лута:
{
  "type": "minecraft:block",
  "pools": [
    {
      "rolls": 1,
      "entries": [
        {
          "type": "minecraft:alternatives",
          "children": [
            {
              "type": "minecraft:item",
              "conditions": [
                {
                  "condition": "minecraft:match_tool",
                  "predicate": {
                    "enchantments": [
                      {
                        "enchantment": "minecraft:silk_touch",
                        "levels": {
                          "min": 1
                        }
                      }
                    ]
                  }
                }
              ],
              "name": "simplecompat:nether_diamond_ore"
            },
            {
              "type": "minecraft:item",
              "functions": [
                {
                  "function": "minecraft:apply_bonus",
                  "enchantment": "minecraft:fortune",
                  "formula": "minecraft:ore_drops"
                },
                {
                  "function": "minecraft:explosion_decay"
                }
              ],
              "name": "minecraft:diamond"
            }
          ]
        }
      ]
    }
  ]
}
 
Краш-лог
[11:19:25] [main/INFO] (FabricLoader) Loading for game Minecraft 1.16.5
[11:19:25] [main/INFO] (Fabric|Loader) [FabricLoader] Loading 60 mods: [email protected]+2868a2287d, [email protected]+ca58154a7d, [email protected], [email protected], [email protected]+ca58154a7d, [email protected], [email protected]+9354966b7d, [email protected]+61336ba97d, [email protected]+9354966b7d, java@8, [email protected]+ca58154a7d, [email protected]+9354966b7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected], [email protected]+2868a2287d, [email protected]+ca58154a7d, [email protected]+1.16, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+dc716ea17d, [email protected], [email protected]+ca58154a7d, [email protected]+9354966b7d, [email protected], [email protected], [email protected], [email protected]+351679a77d, [email protected]+build.11, [email protected]+c045166c7d, [email protected]+8183d3957d, [email protected], [email protected]+ca58154a7d, [email protected], [email protected], [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected], [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+2868a2287d, [email protected]+9354966b7d, [email protected], [email protected]+2868a2287d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected], [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+2868a2287d, [email protected]+bc7a746f7d, [email protected]+ca58154a7d
[11:19:31] [main/INFO] (mixin) SpongePowered MIXIN Subsystem Version=0.8.2 Source=file:/C:/Users/WantaSanchez/.gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.9.2+mixin.0.8.2/12c437eebf031967eaa7daad861e115932772cc7/sponge-mixin-0.9.2+mixin.0.8.2.jar Service=Knot/Fabric Env=CLIENT
[11:19:31] [main/INFO] (Fabric|MixinBootstrap) Loaded Fabric development mappings for mixin remapper!
[11:19:32] [main/INFO] (Sodium) Loaded configuration file for Sodium (38 options available, 0 user overrides)
[11:19:32] [main/INFO] (Sodium) Sodium has been successfully discovered and initialized -- your game is now faster!
[11:19:32] [main/INFO] (mixin) Remapping refMap mixins.sodium.refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap mixins.phosphor.refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-networking-blockentity-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-screen-handler-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-lifecycle-events-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-containers-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-rendering-data-attachment-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-renderer-indigo-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-structure-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-events-interaction-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-item-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-loot-tables-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (Lithium) Loaded configuration file for Lithium: 80 options available, 0 override(s) found
[11:19:32] [main/INFO] (mixin) Remapping refMap mixins.lithium.refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-object-builder-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-screen-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-dimensions-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-renderer-registries-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-textures-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-registry-sync-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-models-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-blockrenderlayer-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-renderer-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-containers-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-rendering-fluids-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-biome-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-resource-loader-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-game-rule-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-networking-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-particles-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-object-builders-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-tag-extensions-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-tool-attribute-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-rendering-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-item-groups-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap cloth-client-events-v0-cloth-client-events-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap appleskin-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-content-registries-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-api-lookup-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-command-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-crash-report-info-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-entity-events-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-key-binding-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-renderer-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap modmenu-refmap.json using remapper chain
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/entity/ai/brain/task/CompositeTask$RunMode$1 is public in lithium.mixins.json:ai.task.RunModeMixin$RunOneMixin and should be specified in value
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/entity/ai/brain/task/CompositeTask$RunMode$2 is public in lithium.mixins.json:ai.task.RunModeMixin$TryAllMixin and should be specified in value
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/block/ComposterBlock$ComposterInventory is public in lithium.mixins.json:alloc.composter.ComposterMixin$ComposterBlockComposterInventoryMixin and should be specified in value
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/block/ComposterBlock$DummyInventory is public in lithium.mixins.json:alloc.composter.ComposterMixin$ComposterBlockDummyInventoryMixin and should be specified in value
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/block/ComposterBlock$FullComposterInventory is public in lithium.mixins.json:alloc.composter.ComposterMixin$ComposterBlockFullComposterInventoryMixin and should be specified in value
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/util/math/AxisCycleDirection$3 is public in lithium.mixins.json:math.fast_util.AxisCycleDirectionMixin$BackwardMixin and should be specified in value
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/util/math/AxisCycleDirection$2 is public in lithium.mixins.json:math.fast_util.AxisCycleDirectionMixin$ForwardMixin and should be specified in value
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/village/TradeOffers$TypeAwareBuyForOneEmeraldFactory is public in fabric-object-builder-v1.mixins.json:TypeAwareTradeMixin and should be specified in value
[11:19:33] [main/WARN] (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
[11:19:33] [main/WARN] (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
[11:19:33] [main/WARN] (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
[11:19:33] [main/WARN] (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
[11:19:33] [main/WARN] (mixin) @Mixin target net/minecraft/client/particle/ParticleManager$SimpleSpriteProvider is public in fabric-particles-v1.mixins.json:ParticleManagerAccessor$SimpleSpriteProviderAccessor and should be specified in value
[11:19:33] [main/WARN] (mixin) @Mixin target net/minecraft/tag/Tag$1 is public in fabric-tag-extensions-v0.mixins.json:MixinTagImpl and should be specified in value
[11:19:33] [main/WARN] (mixin) @Mixin target net/minecraft/tag/RequiredTagList$TagWrapper is public in fabric-tag-extensions-v0.mixins.json:MixinTagImpl and should be specified in value
[11:19:33] [main/WARN] (mixin) @Mixin target net/minecraft/client/gui/widget/EntryListWidget$Entries is public in mixins.modmenu.json:MixinEntryListWidgetEntries and should be specified in value
[11:19:43] [main/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'
[11:19:47] [main/ERROR] (Minecraft) Failed to verify authentication
com.mojang.authlib.exceptions.AuthenticationUnavailableException: null
at com.mojang.authlib.yggdrasil.YggdrasilSocialInteractionsService.checkPrivileges(YggdrasilSocialInteractionsService.java:97) ~[authlib-2.1.28.jar:?]
at com.mojang.authlib.yggdrasil.YggdrasilSocialInteractionsService.<init>(YggdrasilSocialInteractionsService.java:40) ~[authlib-2.1.28.jar:?]
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.createSocialInteractionsService(YggdrasilAuthenticationService.java:152) ~[authlib-2.1.28.jar:?]
at net.minecraft.client.MinecraftClient.method_31382(MinecraftClient.java:625) [minecraft-1.16.5-mapped-net.fabricmc.yarn-1.16.5+build.8-v2.jar:?]
at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:409) [minecraft-1.16.5-mapped-net.fabricmc.yarn-1.16.5+build.8-v2.jar:?]
at net.minecraft.client.main.Main.main(Main.java:177) [minecraft-1.16.5-mapped-net.fabricmc.yarn-1.16.5+build.8-v2.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_291]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_291]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_291]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_291]
at net.fabricmc.loader.game.MinecraftGameProvider.launch(MinecraftGameProvider.java:226) [fabric-loader-0.11.3.jar:?]
at net.fabricmc.loader.launch.knot.Knot.launch(Knot.java:146) [fabric-loader-0.11.3.jar:?]
at net.fabricmc.loader.launch.knot.KnotClient.main(KnotClient.java:28) [fabric-loader-0.11.3.jar:?]
at net.fabricmc.devlaunchinjector.Main.main(Main.java:86) [dev-launch-injector-0.2.1+build.8.jar:?]
[11:19:47] [main/INFO] (Minecraft) Setting user: Player770
[11:19:47] [main/WARN] (Mod Menu) WARNING! Mod roughlyenoughitems-api is only using deprecated 'modmenu:parent' custom value! This will be removed in 1.18 snapshots, so ask the author of this mod to support the new API.
[11:19:47] [main/WARN] (Mod Menu) WARNING! Mod roughlyenoughitems-default-plugin is only using deprecated 'modmenu:parent' custom value! This will be removed in 1.18 snapshots, so ask the author of this mod to support the new API.
[11:19:47] [main/WARN] (Mod Menu) WARNING! Mod cloth-basic-math is only using deprecated 'modmenu:api' custom value! This will be removed in 1.18 snapshots, so ask the author of this mod to support the new API.
[11:19:47] [main/WARN] (Mod Menu) WARNING! Mod roughlyenoughitems-runtime is only using deprecated 'modmenu:parent' custom value! This will be removed in 1.18 snapshots, so ask the author of this mod to support the new API.
[11:19:47] [main/WARN] (Mod Menu) WARNING! Mod cloth-client-events-v0 is only using deprecated 'modmenu:parent' custom value! This will be removed in 1.18 snapshots, so ask the author of this mod to support the new API.
[11:19:47] [main/WARN] (Mod Menu) WARNING! Mod cloth-client-events-v0 is only using deprecated 'modmenu:clientsideOnly' custom value! This is no longer needed and will be removed in 1.18 snapshots.
[11:19:47] [main/WARN] (Mod Menu) WARNING! Mod cloth-client-events-v0 is only using deprecated 'modmenu:api' custom value! This will be removed in 1.18 snapshots, so ask the author of this mod to support the new API.
[11:19:48] [main/INFO] (REI) Config loaded.
[11:19:48] [main/INFO] (Indigo) [Indigo] Different rendering plugin detected; not applying Indigo.
[11:19:48] [main/INFO] (Minecraft) Backend library: LWJGL version 3.2.2 build 10
[11:19:52] [main/INFO] (Minecraft) Narrator library for x64 successfully loaded
[11:19:52] [main/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Lithium, Sodium, Mod Menu, Phosphor, REI (Runtime), Roughly Enough Items, Cloth Config v4, AppleSkin, Fabric Renderer API (v1), Fabric Key Bindings (v0), Fabric Loader, Fabric Structure API (v1), Fabric Containers (v0), Fabric Dimensions API (v1), Fabric Object Builder API (v1), Fabric Game Rule API (v1), Fabric API Base, Fabric Rendering Data Attachment (v1), Fabric Textures (v0), Fabric Rendering Fluids (v1), Fabric BlockRenderLayer Registration (v1), Fabric Lifecycle Events (v1), Fabric Renderer Registries (v1), Fabric Loot Tables (v1), Fabric API, Fabric Particles (v1), Fabric Networking (v0), Fabric API Lookup API (v1), Fabric Networking Block Entity (v0), Fabric Screen Handler API (v1), Fabric Command API (v1), Fabric Screen API (v1), Fabric Tool Attribute API (v1), Fabric Renderer - Indigo, Fabric Crash Report Info (v1), Fabric Events Interaction (v0), Fabric Item API (v1), Simple Compat, Fabric Entity Events (v1), Fabric Rendering (v0), Fabric Rendering (v1), Fabric Key Binding API (v1), Fabric Resource Loader (v0), Fabric Content Registries (v0), Fabric Tag Extensions (v0), Fabric Biome API (v1), Fabric Registry Sync (v0), Fabric Commands (v0), Fabric Mining Levels (v0), Fabric Networking API (v1), Fabric Events Lifecycle (v0), Fabric Item Groups (v0), Fabric Models (v0), Fabric Object Builders (v0))
[11:20:03] [Worker-Main-7/ERROR] (Minecraft) Using missing texture, unable to load simplecompat:textures/block/nether_diamond_ore.png : java.io.FileNotFoundException: simplecompat:textures/block/nether_diamond_ore.png
[11:20:04] [main/INFO] (Minecraft) OpenAL initialized.
[11:20:04] [main/INFO] (Minecraft) Sound engine started
[11:20:05] [main/INFO] (Minecraft) Created: 1024x1024x4 minecraft:textures/atlas/blocks.png-atlas
[11:20:05] [main/INFO] (Minecraft) Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas
[11:20:05] [main/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/banner_patterns.png-atlas
[11:20:05] [main/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/shield_patterns.png-atlas
[11:20:05] [main/INFO] (Minecraft) Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas
[11:20:05] [main/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas
[11:20:05] [main/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas
[11:20:07] [main/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas
[11:20:07] [main/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas
[11:20:07] [main/INFO] (Minecraft) Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas
[11:20:20] [main/WARN] (Minecraft) Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]
[11:20:20] [main/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[11:20:20] [main/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0]
[11:20:20] [main/WARN] (Minecraft) Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498]
[11:20:20] [main/WARN] (Minecraft) Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[11:20:20] [main/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Fabric Tool Attribute API (v1), Simple Compat)
[11:20:22] [main/INFO] (Minecraft) Loaded 7 recipes
[11:20:22] [main/INFO] (Minecraft) Loaded 937 advancements
[11:20:22] [main/INFO] (BiomeModificationImpl) Applied 0 biome modifications to 0 of 79 new biomes in 11.94 ms
[11:20:25] [main/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'
[11:20:25] [Server thread/INFO] (Minecraft) Starting integrated minecraft server version 1.16.5
[11:20:25] [Server thread/INFO] (Minecraft) Generating keypair
[11:20:28] [Server thread/INFO] (Minecraft) Preparing start region for dimension minecraft:overworld
[11:20:28] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:28] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:30] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:30] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:30] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:30] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:31] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:31] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:32] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:32] [main/INFO] (Minecraft) Preparing spawn area: 1%
[11:20:34] [main/INFO] (Minecraft) Preparing spawn area: 4%
[11:20:34] [main/INFO] (Minecraft) Preparing spawn area: 4%
[11:20:34] [main/INFO] (Minecraft) Preparing spawn area: 4%
[11:20:34] [main/INFO] (Minecraft) Preparing spawn area: 24%
[11:20:37] [main/INFO] (Minecraft) Preparing spawn area: 24%
[11:20:37] [main/INFO] (Minecraft) Preparing spawn area: 24%
[11:20:37] [main/INFO] (Minecraft) Preparing spawn area: 24%
[11:20:37] [main/INFO] (Minecraft) Preparing spawn area: 24%
[11:20:37] [main/INFO] (Minecraft) Preparing spawn area: 24%
[11:20:37] [main/INFO] (Minecraft) Preparing spawn area: 24%
[11:20:38] [main/INFO] (Minecraft) Preparing spawn area: 57%
[11:20:40] [main/INFO] (Minecraft) Preparing spawn area: 57%
[11:20:40] [main/INFO] (Minecraft) Preparing spawn area: 57%
[11:20:40] [main/INFO] (Minecraft) Preparing spawn area: 57%
[11:20:40] [main/INFO] (Minecraft) Preparing spawn area: 57%
[11:20:40] [main/INFO] (Minecraft) Preparing spawn area: 57%
[11:20:41] [main/INFO] (Minecraft) Preparing spawn area: 57%
[11:20:42] [main/INFO] (Minecraft) Preparing spawn area: 83%
[11:20:44] [main/INFO] (Minecraft) Preparing spawn area: 85%
[11:20:44] [main/INFO] (Minecraft) Preparing spawn area: 85%
[11:20:44] [main/INFO] (Minecraft) Preparing spawn area: 85%
[11:20:44] [main/INFO] (Minecraft) Preparing spawn area: 85%
[11:20:44] [main/INFO] (Minecraft) Preparing spawn area: 85%
[11:20:44] [main/INFO] (Minecraft) Preparing spawn area: 85%
[11:20:44] [Server thread/INFO] (Minecraft) Changing view distance to 5, from 10
[11:20:47] [main/INFO] (Minecraft) Time elapsed: 19270 ms
[11:20:47] [Server thread/INFO] (Minecraft) Player770[local:E:8e7b2051] logged in with entity id 2 at (-233.5, 4.0, 184.5)
[11:20:48] [Server thread/INFO] (Minecraft) Player770 joined the game
[11:20:48] [main/INFO] (ChunkBuilder) Started 4 worker threads
[11:20:48] [Server thread/INFO] (Minecraft) Saving and pausing game...
[11:20:48] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[11:20:49] [REI-SyncRecipes/INFO] (REI) Reloading REI, registered 2 plugins: roughlyenoughitems:default_runtime_plugin, roughlyenoughitems:default_plugin
[11:20:49] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[11:20:49] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[11:20:49] [main/INFO] (Minecraft) Loaded 0 advancements
[11:20:49] [REI-SyncRecipes/INFO] (REI/DefaultPlugin) Applied Check Tags for potion in 13ms.
[11:20:49] [REI-SyncRecipes/INFO] (REI) Reloaded 1251 stack entries, 1349 recipes displays, 3 exclusion zones suppliers, 5 overlay deciders, 1 visibility handlers and 16 categories (Crafting, Smelting, Smoking, Blasting, Campfire, Stone Cutting, Fuel, Brewing, Composting, Stripping, Smithing, Beacon Base, Beacon Payment, Tilling, Pathing, Information) in 693ms.
[11:21:56] [main/INFO] (Minecraft) Loaded 3 advancements
[11:22:16] [Server thread/INFO] (Minecraft) Player770 has made the advancement [Isn't It Iron Pick]
[11:22:16] [main/INFO] (Minecraft) [CHAT] Player770 has made the advancement [Isn't It Iron Pick]
[11:22:16] [main/INFO] (Minecraft) Loaded 14 advancements
[11:22:20] [Server thread/INFO] (Minecraft) Player770 has made the advancement [Getting an Upgrade]
[11:22:20] [main/INFO] (Minecraft) [CHAT] Player770 has made the advancement [Getting an Upgrade]
[11:22:20] [main/INFO] (Minecraft) Loaded 17 advancements
[11:22:24] [main/INFO] (Minecraft) Loaded 19 advancements
[11:22:45] [Server thread/INFO] (Minecraft) Saving and pausing game...
[11:22:45] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[11:22:45] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[11:22:45] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[11:23:07] [Server thread/INFO] (Minecraft) [Player770: Set own game mode to Survival Mode]
[11:23:07] [main/INFO] (Minecraft) [CHAT] Set own game mode to Survival Mode
[11:23:37] [Server thread/INFO] (Minecraft) Saving and pausing game...
[11:23:37] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[11:23:37] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[11:23:37] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[11:23:37] [Server thread/INFO] (Minecraft) Player770 lost connection: Disconnected
[11:23:37] [Server thread/INFO] (Minecraft) Player770 left the game
[11:23:37] [Server thread/INFO] (Minecraft) Stopping singleplayer server as player logged out
[11:23:37] [Server thread/INFO] (Minecraft) Stopping server
[11:23:37] [Server thread/INFO] (Minecraft) Saving players
[11:23:37] [Server thread/INFO] (Minecraft) Saving worlds
[11:23:37] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[11:23:37] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (New World (1)): All chunks are saved
[11:23:37] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[11:23:38] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[11:23:38] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[11:23:38] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[11:23:38] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (New World (1)): All chunks are saved
[11:23:38] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[11:23:38] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[11:23:38] [main/INFO] (ChunkBuilder) Stopping worker threads
[11:23:40] [main/INFO] (Minecraft) Stopping!
[11:23:40] [main/INFO] (Minecraft) OpenGL debug message, id=1281, source=API, type=ERROR, severity=HIGH, message=GL error GL_INVALID_VALUE
[11:23:40] [main/INFO] (Minecraft) OpenGL debug message, id=1281, source=API, type=ERROR, severity=HIGH, message=GL error GL_INVALID_VALUE
[11:23:40] [main/INFO] (Minecraft) OpenGL debug message, id=1281, source=API, type=ERROR, severity=HIGH, message=GL error GL_INVALID_VALUE
[11:23:40] [main/INFO] (Minecraft) OpenGL debug message, id=1281, source=API, type=ERROR, severity=HIGH, message=GL error GL_INVALID_VALUE
[11:23:40] [main/INFO] (Minecraft) OpenGL debug message, id=1281, source=API, type=ERROR, severity=HIGH, message=GL error GL_INVALID_VALUE
[11:23:40] [main/INFO] (Minecraft) OpenGL debug message, id=1281, source=API, type=ERROR, severity=HIGH, message=GL error GL_INVALID_VALUE
[11:23:40] [main/INFO] (Minecraft) OpenGL debug message, id=1281, source=API, type=ERROR, severity=HIGH, message=GL error GL_INVALID_VALUE
Краш-лог:
[11:19:25] [main/INFO] (FabricLoader) Loading for game Minecraft 1.16.5
[11:19:25] [main/INFO] (Fabric|Loader) [FabricLoader] Loading 60 mods: [email protected]+2868a2287d, [email protected]+ca58154a7d, [email protected], [email protected], [email protected]+ca58154a7d, [email protected], [email protected]+9354966b7d, [email protected]+61336ba97d, [email protected]+9354966b7d, java@8, [email protected]+ca58154a7d, [email protected]+9354966b7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected], [email protected]+2868a2287d, [email protected]+ca58154a7d, [email protected]+1.16, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+dc716ea17d, [email protected], [email protected]+ca58154a7d, [email protected]+9354966b7d, [email protected], [email protected], [email protected], [email protected]+351679a77d, [email protected]+build.11, [email protected]+c045166c7d, [email protected]+8183d3957d, [email protected], [email protected]+ca58154a7d, [email protected], [email protected], [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected], [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+2868a2287d, [email protected]+9354966b7d, [email protected], [email protected]+2868a2287d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected], [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+ca58154a7d, [email protected]+2868a2287d, [email protected]+bc7a746f7d, [email protected]+ca58154a7d
[11:19:31] [main/INFO] (mixin) SpongePowered MIXIN Subsystem Version=0.8.2 Source=file:/C:/Users/WantaSanchez/.gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.9.2+mixin.0.8.2/12c437eebf031967eaa7daad861e115932772cc7/sponge-mixin-0.9.2+mixin.0.8.2.jar Service=Knot/Fabric Env=CLIENT
[11:19:31] [main/INFO] (Fabric|MixinBootstrap) Loaded Fabric development mappings for mixin remapper!
[11:19:32] [main/INFO] (Sodium) Loaded configuration file for Sodium (38 options available, 0 user overrides)
[11:19:32] [main/INFO] (Sodium) Sodium has been successfully discovered and initialized -- your game is now faster!
[11:19:32] [main/INFO] (mixin) Remapping refMap mixins.sodium.refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap mixins.phosphor.refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-networking-blockentity-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-screen-handler-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-lifecycle-events-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-containers-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-rendering-data-attachment-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-renderer-indigo-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-structure-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-events-interaction-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-item-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-loot-tables-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (Lithium) Loaded configuration file for Lithium: 80 options available, 0 override(s) found
[11:19:32] [main/INFO] (mixin) Remapping refMap mixins.lithium.refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-object-builder-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-screen-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-dimensions-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-renderer-registries-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-textures-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-registry-sync-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-models-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-blockrenderlayer-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-renderer-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-containers-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-rendering-fluids-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-biome-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-resource-loader-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-game-rule-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-networking-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-particles-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-object-builders-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-tag-extensions-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-tool-attribute-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-rendering-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-item-groups-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap cloth-client-events-v0-cloth-client-events-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap appleskin-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-content-registries-v0-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-api-lookup-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-command-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-crash-report-info-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-entity-events-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-key-binding-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap fabric-renderer-api-v1-refmap.json using remapper chain
[11:19:32] [main/INFO] (mixin) Remapping refMap modmenu-refmap.json using remapper chain
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/entity/ai/brain/task/CompositeTask$RunMode$1 is public in lithium.mixins.json:ai.task.RunModeMixin$RunOneMixin and should be specified in value
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/entity/ai/brain/task/CompositeTask$RunMode$2 is public in lithium.mixins.json:ai.task.RunModeMixin$TryAllMixin and should be specified in value
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/block/ComposterBlock$ComposterInventory is public in lithium.mixins.json:alloc.composter.ComposterMixin$ComposterBlockComposterInventoryMixin and should be specified in value
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/block/ComposterBlock$DummyInventory is public in lithium.mixins.json:alloc.composter.ComposterMixin$ComposterBlockDummyInventoryMixin and should be specified in value
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/block/ComposterBlock$FullComposterInventory is public in lithium.mixins.json:alloc.composter.ComposterMixin$ComposterBlockFullComposterInventoryMixin and should be specified in value
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/util/math/AxisCycleDirection$3 is public in lithium.mixins.json:math.fast_util.AxisCycleDirectionMixin$BackwardMixin and should be specified in value
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/util/math/AxisCycleDirection$2 is public in lithium.mixins.json:math.fast_util.AxisCycleDirectionMixin$ForwardMixin and should be specified in value
[11:19:32] [main/WARN] (mixin) @Mixin target net/minecraft/village/TradeOffers$TypeAwareBuyForOneEmeraldFactory is public in fabric-object-builder-v1.mixins.json:TypeAwareTradeMixin and should be specified in value
[11:19:33] [main/WARN] (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
[11:19:33] [main/WARN] (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
[11:19:33] [main/WARN] (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
[11:19:33] [main/WARN] (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
[11:19:33] [main/WARN] (mixin) @Mixin target net/minecraft/client/particle/ParticleManager$SimpleSpriteProvider is public in fabric-particles-v1.mixins.json:ParticleManagerAccessor$SimpleSpriteProviderAccessor and should be specified in value
[11:19:33] [main/WARN] (mixin) @Mixin target net/minecraft/tag/Tag$1 is public in fabric-tag-extensions-v0.mixins.json:MixinTagImpl and should be specified in value
[11:19:33] [main/WARN] (mixin) @Mixin target net/minecraft/tag/RequiredTagList$TagWrapper is public in fabric-tag-extensions-v0.mixins.json:MixinTagImpl and should be specified in value
[11:19:33] [main/WARN] (mixin) @Mixin target net/minecraft/client/gui/widget/EntryListWidget$Entries is public in mixins.modmenu.json:MixinEntryListWidgetEntries and should be specified in value
[11:19:43] [main/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'
[11:19:47] [main/ERROR] (Minecraft) Failed to verify authentication
com.mojang.authlib.exceptions.AuthenticationUnavailableException: null
	at com.mojang.authlib.yggdrasil.YggdrasilSocialInteractionsService.checkPrivileges(YggdrasilSocialInteractionsService.java:97) ~[authlib-2.1.28.jar:?]
	at com.mojang.authlib.yggdrasil.YggdrasilSocialInteractionsService.<init>(YggdrasilSocialInteractionsService.java:40) ~[authlib-2.1.28.jar:?]
	at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.createSocialInteractionsService(YggdrasilAuthenticationService.java:152) ~[authlib-2.1.28.jar:?]
	at net.minecraft.client.MinecraftClient.method_31382(MinecraftClient.java:625) [minecraft-1.16.5-mapped-net.fabricmc.yarn-1.16.5+build.8-v2.jar:?]
	at net.minecraft.client.MinecraftClient.<init>(MinecraftClient.java:409) [minecraft-1.16.5-mapped-net.fabricmc.yarn-1.16.5+build.8-v2.jar:?]
	at net.minecraft.client.main.Main.main(Main.java:177) [minecraft-1.16.5-mapped-net.fabricmc.yarn-1.16.5+build.8-v2.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_291]
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_291]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_291]
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_291]
	at net.fabricmc.loader.game.MinecraftGameProvider.launch(MinecraftGameProvider.java:226) [fabric-loader-0.11.3.jar:?]
	at net.fabricmc.loader.launch.knot.Knot.launch(Knot.java:146) [fabric-loader-0.11.3.jar:?]
	at net.fabricmc.loader.launch.knot.KnotClient.main(KnotClient.java:28) [fabric-loader-0.11.3.jar:?]
	at net.fabricmc.devlaunchinjector.Main.main(Main.java:86) [dev-launch-injector-0.2.1+build.8.jar:?]
[11:19:47] [main/INFO] (Minecraft) Setting user: Player770
[11:19:47] [main/WARN] (Mod Menu) WARNING! Mod roughlyenoughitems-api is only using deprecated 'modmenu:parent' custom value! This will be removed in 1.18 snapshots, so ask the author of this mod to support the new API.
[11:19:47] [main/WARN] (Mod Menu) WARNING! Mod roughlyenoughitems-default-plugin is only using deprecated 'modmenu:parent' custom value! This will be removed in 1.18 snapshots, so ask the author of this mod to support the new API.
[11:19:47] [main/WARN] (Mod Menu) WARNING! Mod cloth-basic-math is only using deprecated 'modmenu:api' custom value! This will be removed in 1.18 snapshots, so ask the author of this mod to support the new API.
[11:19:47] [main/WARN] (Mod Menu) WARNING! Mod roughlyenoughitems-runtime is only using deprecated 'modmenu:parent' custom value! This will be removed in 1.18 snapshots, so ask the author of this mod to support the new API.
[11:19:47] [main/WARN] (Mod Menu) WARNING! Mod cloth-client-events-v0 is only using deprecated 'modmenu:parent' custom value! This will be removed in 1.18 snapshots, so ask the author of this mod to support the new API.
[11:19:47] [main/WARN] (Mod Menu) WARNING! Mod cloth-client-events-v0 is only using deprecated 'modmenu:clientsideOnly' custom value! This is no longer needed and will be removed in 1.18 snapshots.
[11:19:47] [main/WARN] (Mod Menu) WARNING! Mod cloth-client-events-v0 is only using deprecated 'modmenu:api' custom value! This will be removed in 1.18 snapshots, so ask the author of this mod to support the new API.
[11:19:48] [main/INFO] (REI) Config loaded.
[11:19:48] [main/INFO] (Indigo) [Indigo] Different rendering plugin detected; not applying Indigo.
[11:19:48] [main/INFO] (Minecraft) Backend library: LWJGL version 3.2.2 build 10
[11:19:52] [main/INFO] (Minecraft) Narrator library for x64 successfully loaded
[11:19:52] [main/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Lithium, Sodium, Mod Menu, Phosphor, REI (Runtime), Roughly Enough Items, Cloth Config v4, AppleSkin, Fabric Renderer API (v1), Fabric Key Bindings (v0), Fabric Loader, Fabric Structure API (v1), Fabric Containers (v0), Fabric Dimensions API (v1), Fabric Object Builder API (v1), Fabric Game Rule API (v1), Fabric API Base, Fabric Rendering Data Attachment (v1), Fabric Textures (v0), Fabric Rendering Fluids (v1), Fabric BlockRenderLayer Registration (v1), Fabric Lifecycle Events (v1), Fabric Renderer Registries (v1), Fabric Loot Tables (v1), Fabric API, Fabric Particles (v1), Fabric Networking (v0), Fabric API Lookup API (v1), Fabric Networking Block Entity (v0), Fabric Screen Handler API (v1), Fabric Command API (v1), Fabric Screen API (v1), Fabric Tool Attribute API (v1), Fabric Renderer - Indigo, Fabric Crash Report Info (v1), Fabric Events Interaction (v0), Fabric Item API (v1), Simple Compat, Fabric Entity Events (v1), Fabric Rendering (v0), Fabric Rendering (v1), Fabric Key Binding API (v1), Fabric Resource Loader (v0), Fabric Content Registries (v0), Fabric Tag Extensions (v0), Fabric Biome API (v1), Fabric Registry Sync (v0), Fabric Commands (v0), Fabric Mining Levels (v0), Fabric Networking API (v1), Fabric Events Lifecycle (v0), Fabric Item Groups (v0), Fabric Models (v0), Fabric Object Builders (v0))
[11:20:03] [Worker-Main-7/ERROR] (Minecraft) Using missing texture, unable to load simplecompat:textures/block/nether_diamond_ore.png : java.io.FileNotFoundException: simplecompat:textures/block/nether_diamond_ore.png
[11:20:04] [main/INFO] (Minecraft) OpenAL initialized.
[11:20:04] [main/INFO] (Minecraft) Sound engine started
[11:20:05] [main/INFO] (Minecraft) Created: 1024x1024x4 minecraft:textures/atlas/blocks.png-atlas
[11:20:05] [main/INFO] (Minecraft) Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas
[11:20:05] [main/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/banner_patterns.png-atlas
[11:20:05] [main/INFO] (Minecraft) Created: 1024x512x4 minecraft:textures/atlas/shield_patterns.png-atlas
[11:20:05] [main/INFO] (Minecraft) Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas
[11:20:05] [main/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas
[11:20:05] [main/INFO] (Minecraft) Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas
[11:20:07] [main/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas
[11:20:07] [main/INFO] (Minecraft) Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas
[11:20:07] [main/INFO] (Minecraft) Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas
[11:20:20] [main/WARN] (Minecraft) Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]
[11:20:20] [main/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[11:20:20] [main/WARN] (Minecraft) Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0]
[11:20:20] [main/WARN] (Minecraft) Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498]
[11:20:20] [main/WARN] (Minecraft) Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[11:20:20] [main/INFO] (Minecraft) Reloading ResourceManager: Default, Fabric Mods (Fabric Tool Attribute API (v1), Simple Compat)
[11:20:22] [main/INFO] (Minecraft) Loaded 7 recipes
[11:20:22] [main/INFO] (Minecraft) Loaded 937 advancements
[11:20:22] [main/INFO] (BiomeModificationImpl) Applied 0 biome modifications to 0 of 79 new biomes in 11.94 ms
[11:20:25] [main/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'
[11:20:25] [Server thread/INFO] (Minecraft) Starting integrated minecraft server version 1.16.5
[11:20:25] [Server thread/INFO] (Minecraft) Generating keypair
[11:20:28] [Server thread/INFO] (Minecraft) Preparing start region for dimension minecraft:overworld
[11:20:28] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:28] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:30] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:30] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:30] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:30] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:31] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:31] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:32] [main/INFO] (Minecraft) Preparing spawn area: 0%
[11:20:32] [main/INFO] (Minecraft) Preparing spawn area: 1%
[11:20:34] [main/INFO] (Minecraft) Preparing spawn area: 4%
[11:20:34] [main/INFO] (Minecraft) Preparing spawn area: 4%
[11:20:34] [main/INFO] (Minecraft) Preparing spawn area: 4%
[11:20:34] [main/INFO] (Minecraft) Preparing spawn area: 24%
[11:20:37] [main/INFO] (Minecraft) Preparing spawn area: 24%
[11:20:37] [main/INFO] (Minecraft) Preparing spawn area: 24%
[11:20:37] [main/INFO] (Minecraft) Preparing spawn area: 24%
[11:20:37] [main/INFO] (Minecraft) Preparing spawn area: 24%
[11:20:37] [main/INFO] (Minecraft) Preparing spawn area: 24%
[11:20:37] [main/INFO] (Minecraft) Preparing spawn area: 24%
[11:20:38] [main/INFO] (Minecraft) Preparing spawn area: 57%
[11:20:40] [main/INFO] (Minecraft) Preparing spawn area: 57%
[11:20:40] [main/INFO] (Minecraft) Preparing spawn area: 57%
[11:20:40] [main/INFO] (Minecraft) Preparing spawn area: 57%
[11:20:40] [main/INFO] (Minecraft) Preparing spawn area: 57%
[11:20:40] [main/INFO] (Minecraft) Preparing spawn area: 57%
[11:20:41] [main/INFO] (Minecraft) Preparing spawn area: 57%
[11:20:42] [main/INFO] (Minecraft) Preparing spawn area: 83%
[11:20:44] [main/INFO] (Minecraft) Preparing spawn area: 85%
[11:20:44] [main/INFO] (Minecraft) Preparing spawn area: 85%
[11:20:44] [main/INFO] (Minecraft) Preparing spawn area: 85%
[11:20:44] [main/INFO] (Minecraft) Preparing spawn area: 85%
[11:20:44] [main/INFO] (Minecraft) Preparing spawn area: 85%
[11:20:44] [main/INFO] (Minecraft) Preparing spawn area: 85%
[11:20:44] [Server thread/INFO] (Minecraft) Changing view distance to 5, from 10
[11:20:47] [main/INFO] (Minecraft) Time elapsed: 19270 ms
[11:20:47] [Server thread/INFO] (Minecraft) Player770[local:E:8e7b2051] logged in with entity id 2 at (-233.5, 4.0, 184.5)
[11:20:48] [Server thread/INFO] (Minecraft) Player770 joined the game
[11:20:48] [main/INFO] (ChunkBuilder) Started 4 worker threads
[11:20:48] [Server thread/INFO] (Minecraft) Saving and pausing game...
[11:20:48] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[11:20:49] [REI-SyncRecipes/INFO] (REI) Reloading REI, registered 2 plugins: roughlyenoughitems:default_runtime_plugin, roughlyenoughitems:default_plugin
[11:20:49] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[11:20:49] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[11:20:49] [main/INFO] (Minecraft) Loaded 0 advancements
[11:20:49] [REI-SyncRecipes/INFO] (REI/DefaultPlugin) Applied Check Tags for potion in 13ms.
[11:20:49] [REI-SyncRecipes/INFO] (REI) Reloaded 1251 stack entries, 1349 recipes displays, 3 exclusion zones suppliers, 5 overlay deciders, 1 visibility handlers and 16 categories (Crafting, Smelting, Smoking, Blasting, Campfire, Stone Cutting, Fuel, Brewing, Composting, Stripping, Smithing, Beacon Base, Beacon Payment, Tilling, Pathing, Information) in 693ms.
[11:21:56] [main/INFO] (Minecraft) Loaded 3 advancements
[11:22:16] [Server thread/INFO] (Minecraft) Player770 has made the advancement [Isn't It Iron Pick]
[11:22:16] [main/INFO] (Minecraft) [CHAT] Player770 has made the advancement [Isn't It Iron Pick]
[11:22:16] [main/INFO] (Minecraft) Loaded 14 advancements
[11:22:20] [Server thread/INFO] (Minecraft) Player770 has made the advancement [Getting an Upgrade]
[11:22:20] [main/INFO] (Minecraft) [CHAT] Player770 has made the advancement [Getting an Upgrade]
[11:22:20] [main/INFO] (Minecraft) Loaded 17 advancements
[11:22:24] [main/INFO] (Minecraft) Loaded 19 advancements
[11:22:45] [Server thread/INFO] (Minecraft) Saving and pausing game...
[11:22:45] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[11:22:45] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[11:22:45] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[11:23:07] [Server thread/INFO] (Minecraft) [Player770: Set own game mode to Survival Mode]
[11:23:07] [main/INFO] (Minecraft) [CHAT] Set own game mode to Survival Mode
[11:23:37] [Server thread/INFO] (Minecraft) Saving and pausing game...
[11:23:37] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[11:23:37] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[11:23:37] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[11:23:37] [Server thread/INFO] (Minecraft) Player770 lost connection: Disconnected
[11:23:37] [Server thread/INFO] (Minecraft) Player770 left the game
[11:23:37] [Server thread/INFO] (Minecraft) Stopping singleplayer server as player logged out
[11:23:37] [Server thread/INFO] (Minecraft) Stopping server
[11:23:37] [Server thread/INFO] (Minecraft) Saving players
[11:23:37] [Server thread/INFO] (Minecraft) Saving worlds
[11:23:37] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[11:23:37] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (New World (1)): All chunks are saved
[11:23:37] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[11:23:38] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[11:23:38] [Server thread/INFO] (Minecraft) Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[11:23:38] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[11:23:38] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (New World (1)): All chunks are saved
[11:23:38] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[11:23:38] [Server thread/INFO] (Minecraft) ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[11:23:38] [main/INFO] (ChunkBuilder) Stopping worker threads
[11:23:40] [main/INFO] (Minecraft) Stopping!
[11:23:40] [main/INFO] (Minecraft) OpenGL debug message, id=1281, source=API, type=ERROR, severity=HIGH, message=GL error GL_INVALID_VALUE
[11:23:40] [main/INFO] (Minecraft) OpenGL debug message, id=1281, source=API, type=ERROR, severity=HIGH, message=GL error GL_INVALID_VALUE
[11:23:40] [main/INFO] (Minecraft) OpenGL debug message, id=1281, source=API, type=ERROR, severity=HIGH, message=GL error GL_INVALID_VALUE
[11:23:40] [main/INFO] (Minecraft) OpenGL debug message, id=1281, source=API, type=ERROR, severity=HIGH, message=GL error GL_INVALID_VALUE
[11:23:40] [main/INFO] (Minecraft) OpenGL debug message, id=1281, source=API, type=ERROR, severity=HIGH, message=GL error GL_INVALID_VALUE
[11:23:40] [main/INFO] (Minecraft) OpenGL debug message, id=1281, source=API, type=ERROR, severity=HIGH, message=GL error GL_INVALID_VALUE
[11:23:40] [main/INFO] (Minecraft) OpenGL debug message, id=1281, source=API, type=ERROR, severity=HIGH, message=GL error GL_INVALID_VALUE

WantaSanchez

Опоздун
633
17
150
Знаю что Forge, но в Fabric вряд ли отличается
Проблема решена... И знаешь как? А действительно, была лишняя буква "b". НО! Две версии маппингов назад (на 6-м билде) всё работало и так. Боже, когда я уже начну читать чейнджлоги маппингов... 🤦‍♂️
 
Сверху