diff --git a/config/embeddium-mixins.properties b/config/embeddium-mixins.properties new file mode 100644 index 000000000..4e10829d4 --- /dev/null +++ b/config/embeddium-mixins.properties @@ -0,0 +1,6 @@ +# This is the configuration file for Embeddium. +# +# You can find information on editing this file and all the available options here: +# https://github.com/jellysquid3/sodium-fabric/wiki/Configuration-File +# +# By default, this file will be empty except for this notice. diff --git a/config/embeddium-options.json b/config/embeddium-options.json new file mode 100644 index 000000000..cb74121e6 --- /dev/null +++ b/config/embeddium-options.json @@ -0,0 +1,24 @@ +{ + "quality": { + "weather_quality": "DEFAULT", + "leaves_quality": "DEFAULT", + "enable_vignette": true + }, + "advanced": { + "enable_memory_tracing": false, + "use_advanced_staging_buffers": true, + "cpu_render_ahead_limit": 3 + }, + "performance": { + "chunk_builder_threads": 0, + "always_defer_chunk_updates_v2": true, + "animate_only_visible_textures": true, + "use_entity_culling": true, + "use_fog_occlusion": true, + "use_block_face_culling": true, + "use_no_error_g_l_context": true + }, + "notifications": { + "hide_donation_button": false + } +} \ No newline at end of file diff --git a/config/entityculling.json b/config/entityculling.json new file mode 100644 index 000000000..f557378fd --- /dev/null +++ b/config/entityculling.json @@ -0,0 +1,33 @@ +{ + "configVersion": 5, + "renderNametagsThroughWalls": true, + "blockEntityWhitelist": [ + "create:rope_pulley", + "botania:flame_ring", + "minecraft:beacon", + "create:hose_pulley", + "betterend:eternal_pedestal", + "botania:magic_missile", + "botania:falling_star" + ], + "entityWhitelist": [ + "botania:mana_burst" + ], + "tracingDistance": 128, + "debugMode": false, + "sleepDelay": 10, + "hitboxLimit": 50, + "skipMarkerArmorStands": true, + "tickCulling": true, + "tickCullingWhitelist": [ + "create:contraption", + "create:stationary_contraption", + "create:gantry_contraption", + "minecraft:boat", + "minecraft:firework_rocket", + "create:carriage_contraption" + ], + "disableF3": false, + "skipEntityCulling": false, + "skipBlockEntityCulling": false +} \ No newline at end of file diff --git a/config/ferritecore-mixin.toml b/config/ferritecore-mixin.toml new file mode 100644 index 000000000..aed27fe93 --- /dev/null +++ b/config/ferritecore-mixin.toml @@ -0,0 +1,23 @@ +#Use a slightly more compact, but also slightly slower representation for block states +compactFastMap = false +#Replace objects used to detect multi-threaded access to chunks by a much smaller field. This option is disabled by default due to very rare and very hard-to-reproduce crashes, use at your own risk! +useSmallThreadingDetector = false +#Cache the predicate instances used in multipart models +cacheMultipartPredicates = true +#Do not create a new MultipartBakedModel instance for each block state using the same multipartmodel. Requires cacheMultipartPredicates to be enabled +multipartDeduplication = true +#Deduplicate cached data for blockstates, most importantly collision and render shapes +blockstateCacheDeduplication = true +#Avoid creation of new strings when creating ModelResourceLocations +modelResourceLocations = true +#Use smaller data structures for "simple" models, especially models with few side-specific faces +modelSides = true +#Replace the blockstate neighbor table +replaceNeighborLookup = true +#Populate the neighbor table used by vanilla. Enabling this slightly increases memory usage, but can help with issues in the rare case where mods access it directly. +populateNeighborTable = false +#Do not store the properties of a state explicitly and read themfrom the replace neighbor table instead. Requires replaceNeighborLookup to be enabled +replacePropertyMap = true +#Deduplicate vertex data of baked quads in the basic model implementations +bakedQuadDeduplication = true + diff --git a/config/gtceu.yaml b/config/gtceu.yaml new file mode 100644 index 000000000..d94beb043 --- /dev/null +++ b/config/gtceu.yaml @@ -0,0 +1,230 @@ +recipes: + # Whether to generate Flawed and Chipped Gems for materials and recipes involving them. + # Useful for mods like TerraFirmaCraft. + # Default: false + generateLowQualityGems: true + + # Whether to remove Block/Ingot compression and decompression in the Crafting Table. + # Default: false + disableManualCompression: true + + # Change the recipe of Rods in the Lathe to 1 Rod and 2 Small Piles of Dust, instead of 2 Rods. + # Default: false + harderRods: false + + # Whether to make crafting recipes for Bricks, Firebricks, and Coke Bricks harder. + # Default: false + harderBrickRecipes: false + + # Whether to nerf Wood crafting to 2 Planks from 1 Log, and 2 Sticks from 2 Planks. + # Default: false + nerfWoodCrafting: false + + # Whether to make Wood related recipes harder. + # Excludes sticks and planks. + # Default: false + hardWoodRecipes: false + + # Recipes for Buckets, Cauldrons, Hoppers, and Iron Bars require Iron Plates, Rods, and more. + # Default: true + hardIronRecipes: true + + # Whether to make Redstone related recipes harder. + # Default: false + hardRedstoneRecipes: false + + # Whether to make Vanilla Tools and Armor recipes harder. + # Excludes Flint and Steel, and Buckets. + # Default: false + hardToolArmorRecipes: false + + # Whether to make miscellaneous recipes harder. + # Default: false + hardMiscRecipes: false + + # Whether to make Glass related recipes harder. Default: true + hardGlassRecipes: true + + # Whether to nerf the Paper crafting recipe. + # Default: true + nerfPaperCrafting: true + + # Recipes for items like Iron Doors, Trapdoors, Anvil require Iron Plates, Rods, and more. + # Default: false + hardAdvancedIronRecipes: false + + # Whether to make coloring blocks like Concrete or Glass harder. + # Default: false + hardDyeRecipes: false + + # Whether to remove charcoal smelting recipes from the vanilla furnace. + # Default: true + harderCharcoalRecipe: true + + # Whether to make the Flint and Steel recipe require steel parts. + # Default: true. + flintAndSteelRequireSteel: true + + # Whether to remove Vanilla Block Recipes from the Crafting Table. + # Default: false + removeVanillaBlockRecipes: false + + # Whether to remove Vanilla TNT Recipe from the Crafting Table. + # Default: true + removeVanillaTNTRecipe: true + +worldgen: + # Should all Stone Types drop unique Ore Item Blocks? + # Default: false (meaning only Stone, Netherrack, and Endstone) + allUniqueStoneTypes: false + + # Should Sand-like ores fall? + # This includes gravel, sand, and red sand ores. + # Default: false (no falling ores) + sandOresFall: false + + # Radius that ore veins will check for existing ones. + # If one is found, the vein will not spawn. + # Default: 3 + oreVeinScanRadius: 3 + + # Multiplier to bedrock ore generation amount + # Default: 1.0f + bedrockOreMultiplier: 1.0 + + # Make bedrock ore/fluid veins infinite? + # Default: false + infiniteBedrockOresFluids: false + + # Maximum worldgen feature size in chunks + # if a vein is larger than this, Minecraft complains in logs. + # If that happens, either increase this or make your veins smaller. + # NOTE: Larger veins can cause noticeable worldgen lag! + # Default: 2 + maxFeatureChunkSize: 2 + + # Debug ore vein placement? (will print placed veins to server's debug.log) + # Default: false (no placement printout in debug.log) + debugWorldgen: false + + # Rubber Tree spawn chance (% per chunk) + # Default: 0.5 + rubberTreeSpawnChance: 0.5 + + # Prevents regular vanilla ores from being generated outside GregTech ore veins + # Default: true + removeVanillaOreGen: true + + # Prevents vanilla's large ore veins from being generated + # Default: true + removeVanillaLargeOreVeins: true + +machines: + # Whether insufficient energy supply should reset Machine recipe progress to zero. + # If true, progress will reset. + # If false, progress will decrease to zero with 2x speed + # Default: false + recipeProgressLowEnergy: false + + # Whether to require a Wrench, Wirecutter, or other GregTech tools to break machines, casings, wires, and more. + # Default: false + requireGTToolsForBlocks: false + + # Whether machines explode in rainy weather or when placed next to certain terrain, such as fire or lava + # Default: false + doTerrainExplosion: false + + # Whether machines or boilers damage the terrain when they explode. + # Note machines and boilers always explode when overloaded with power or met with special conditions, regardless of this config. + # Default: true + doesExplosionDamagesTerrain: false + + # Divisor for Recipe Duration per Overclock. + # Default: 2.0 + overclockDivisor: 2.0 + + # Whether to play machine sounds while machines are active. + # Default: true + machineSounds: true + + # Whether Steam Multiblocks should use Steel instead of Bronze. + # Default: false + steelSteamMultiblocks: false + + # Whether to enable the cleanroom, required for various recipes. + # Default: true + enableCleanroom: true + + # Whether multiblocks should ignore all cleanroom requirements. + # This does nothing if enableCleanroom is false. + # Default: false + cleanMultiblocks: false + + # Block to replace mined ores with in the miner and multiblock miner. + # Default: minecraft:cobblestone + replaceMinedBlocksWith: minecraft:cobblestone + + # Whether to enable the Maintenance Hatch, required for Multiblocks. + # Default: true + enableMaintenance: true + + # Whether the machine's circuit slot need to be inserted a real circuit. + ghostCircuit: true + + # Wether to add a "Bedrock Ore Miner" (also enables bedrock ore generation) + # Default: false + doBedrockOres: false + + # What Kind of material should the bedrock ore miner output? + # Default: "raw" + bedrockOreDropTagPrefix: raw + + # Wether to add a "Processing Array" + # Default: true + doProcessingArray: true + +client: + # Whether or not to enable Emissive Textures for GregTech Machines. + # Default: true + machinesEmissiveTextures: true + + # The default color to overlay onto machines. + # #FFFFFF is no coloring (default). + # #D2DCFF is the classic blue from GT5. + defaultPaintingColor: #FFFFFF + +# Config options for Mod Compatibility +compat: + # Config options regarding GTEU compatibility with other energy systems + energy: + # Enable Native GTEU to Platform native Energy (RF and alike) on GT Cables and Wires. + # This does not enable nor disable Converters. + # Default: true + nativeEUToPlatformNative: true + + # Enable GTEU to Platform native (and vice versa) Converters. + # Default: false + enablePlatformConverters: false + + # Platform native Energy to GTEU ratio for converting FE to EU. + # Only affects converters. + # Default: 4 FE/Energy == 1 EU + platformToEuRatio: 4 + + # GTEU to Platform native Energy ratio for converting EU to FE. + # Affects native conversion and Converters. + # Default: 4 FE/Energy == 1 EU + euToPlatformRatio: 4 + + # Whether to hide facades of all blocks in JEI and creative search menu. + # Default: true + hideFacadesInJEI: true + + # Whether to hide filled cells in JEI and creative search menu. + # Default: true + hideFilledCellsInJEI: true + + # Whether Gregtech should remove smelting recipes from the vanilla furnace for ingots requiring the Electric Blast Furnace. + # Default: true + removeSmeltingForEBFMetals: true + diff --git a/config/notenoughanimations.json b/config/notenoughanimations.json new file mode 100644 index 000000000..f8e41fce6 --- /dev/null +++ b/config/notenoughanimations.json @@ -0,0 +1,50 @@ +{ + "configVersion": 9, + "animationSmoothingSpeed": 20.0, + "holdingItems": [ + "minecraft:clock", + "minecraft:recovery_compass", + "minecraft:soul_lantern", + "minecraft:compass", + "minecraft:torch", + "minecraft:lantern", + "minecraft:soul_torch" + ], + "enableAnimationSmoothing": true, + "enableInWorldMapRendering": true, + "enableOffhandHiding": true, + "enableRotationLocking": true, + "enableLadderAnimation": true, + "ladderAnimationAmplifier": 0.35, + "ladderAnimationArmHeight": 1.7, + "ladderAnimationArmSpeed": 2.0, + "enableRotateToLadder": true, + "enableEatDrinkAnimation": true, + "enableRowBoatAnimation": true, + "enableHorseAnimation": true, + "dontHoldItemsInBed": true, + "freezeArmsInBed": true, + "rotationLock": "NONE", + "showLastUsedSword": false, + "sheathSwords": [ + "minecraft:golden_sword", + "minecraft:iron_sword", + "minecraft:wooden_sword", + "minecraft:stone_sword", + "minecraft:diamond_sword", + "minecraft:netherite_sword" + ], + "enableCrawlingAnimation": true, + "holdUpItemsMode": "CONFIG", + "holdUpItemOffset": 0.0, + "itemSwapAnimation": true, + "tweakElytraAnimation": true, + "petAnimation": true, + "fallingAnimation": false, + "freezingAnimation": true, + "huggingAnimation": false, + "narutoRunning": false, + "enableInWorldBookRendering": false, + "disableLegSmoothing": false, + "bowAnimation": "VANILLA" +} \ No newline at end of file diff --git a/config/oculus.properties b/config/oculus.properties new file mode 100644 index 000000000..8183269fc --- /dev/null +++ b/config/oculus.properties @@ -0,0 +1,8 @@ +#This file stores configuration options for Iris, such as the currently active shaderpack +#Fri Sep 15 19:46:36 NOVT 2023 +colorSpace=SRGB +disableUpdateMessage=false +enableDebugOptions=false +maxShadowRenderDistance=32 +shaderPack= +enableShaders=true diff --git a/config/voicechat-client.toml b/config/voicechat-client.toml new file mode 100644 index 000000000..21e823e72 --- /dev/null +++ b/config/voicechat-client.toml @@ -0,0 +1,3 @@ +# This config has been moved to config/voicechat/voicechat-client.properties +moved = true + diff --git a/config/voicechat/translations.properties b/config/voicechat/translations.properties new file mode 100644 index 000000000..d68331477 --- /dev/null +++ b/config/voicechat/translations.properties @@ -0,0 +1,14 @@ +# Simple Voice Chat translations +# This file contains all server-side translations for the Simple Voice Chat mod + +# The message a player gets when kicked for not having voice chat installed and the server has force_voicechat enabled +# The first parameter is the mod/plugin name and the second parameter is the mod/plugin version +force_voicechat_kick_message=You need %s %s to play on this server +# The message a player gets when joining a server with an incompatible voice chat version +# The first parameter is the mod/plugin version and the second parameter is the mod/plugin name +voicechat_not_compatible_message=Your voice chat version is not compatible with the servers version.\\nPlease install version %s of %s. +# The message a player gets when trying to execute a command that requires voice chat +# The first parameter is the mod/plugin name +voicechat_needed_for_command_message=You need to have %s installed on your client to use this command +# The message a player gets when trying to execute a command that can only be executed as a player +player_command_message=This command can only be executed as a player diff --git a/config/voicechat/voicechat-client.properties b/config/voicechat/voicechat-client.properties new file mode 100644 index 000000000..29eb1de6e --- /dev/null +++ b/config/voicechat/voicechat-client.properties @@ -0,0 +1,85 @@ +# Simple Voice Chat client config v1.20.1-2.4.24 + +# The voice chat volume +voice_chat_volume=1.0 +# The threshold for voice activation in dB +voice_activation_threshold=-50.0 +# The voice chat microphone amplification +microphone_amplification=1.0 +# Microphone activation type +# Possible values are 'PTT' and 'VOICE' +microphone_activation_type=PTT +# The size of the audio output buffer in packets +# Higher values mean a higher latency, but less crackles +# Increase this value if you have an unstable internet connection +output_buffer_size=5 +# The maximum amount of audio packets that are held back if a packet arrives out of order or gets dropped +# This prevents discarding audio packets that are slightly out of order +# Set this to 0 to disable +audio_packet_threshold=3 +# The time it takes for the microphone to deactivate when using voice activation +# A value of 1 means 20 milliseconds, 2=40 ms, 3=60 ms, ... +voice_deactivation_delay=25 +# The microphone used by the voice chat +# Empty for default device +microphone= +# The speaker used by the voice chat +# Empty for default device +speaker= +# If the microphone is muted (only when using voice activation) +muted=false +# If the voice chat is disabled (sound and microphone off) +disabled=false +# If the voice chat icons should be hidden +hide_icons=false +# If the group HUD should be visible +show_group_hud=true +# If the own icon should be shown when in a group +show_own_group_icon=true +# The scale of the group HUD +group_hud_icon_scale=2.0 +# The orientation of the player icons in the group HUD +# Possible values are 'VERTICAL' and 'HORIZONTAL' +group_player_icon_orientation=VERTICAL +# The X position of the player icons in the group HUD +# Negative values mean anchoring to the right +group_player_icon_pos_x=4 +# The Y position of the player icons in the group HUD +# Negative values mean anchoring to the bottom +group_player_icon_pos_y=4 +# The X position of the HUD icons +# Negative values mean anchoring to the right +hud_icon_pos_x=16 +# The Y position of the HUD icons +# Negative values mean anchoring to the bottom +hud_icon_pos_y=-16 +# The scale of the HUD icons +hud_icon_scale=1.0 +# The location where recordings should be saved +# Leave empty for default location +recording_destination= +# The quality of the recorded audio +# 0 = highest quality, 9 = lowest quality +recording_quality=2 +# If noise cancellation should be enabled +denoiser=false +# If voice chat should work in singleplayer/LAN worlds +run_local_server=true +# Whether to use the Java implementation of microphone capturing instead of OpenAL +java_microphone_implementation=false +# If the mod should check for microphone permissions (MacOS only) +macos_check_microphone_permission=true +# If fake players should have the disconnected icon above their head +show_fake_players_disconnected=false +# If the volume adjustment GUI should also show offline players +offline_player_volume_adjustment=false +# The 3D audio type +# Possible values are 'NORMAL', 'REDUCED' and 'OFF' +audio_type=NORMAL +# If the mod should load native libraries +# If set to false, the Java Opus implementation will be used, the denoiser won't be available and you won't be able to record audio. +use_natives=true +# This lets you hear players near you, even though you are further away with your freecam +freecam_support=true +# If enabled, you will be automatically muted when joining a world +mute_on_join=false diff --git a/config/voicechat/voicechat-server.properties b/config/voicechat/voicechat-server.properties new file mode 100644 index 000000000..830261100 --- /dev/null +++ b/config/voicechat/voicechat-server.properties @@ -0,0 +1,43 @@ +# Simple Voice Chat server config v1.20.1-2.4.24 + +# The port of the voice chat server +# Setting this to "-1" sets the port to the Minecraft servers port (Not recommended) +port=24454 +# The IP address to bind the voice chat server on +# Leave empty to use 'server-ip' of server.properties +# To bind to the wildcard address, use '*' +bind_address= +# The distance to where the voice can be heard +max_voice_distance=48.0 +# The multiplier of the voice distance when crouching +crouch_distance_multiplier=1.0 +# The multiplier of the voice distance when whispering +whisper_distance_multiplier=0.5 +# The opus codec +# Possible values are 'VOIP', 'AUDIO' and 'RESTRICTED_LOWDELAY' +codec=VOIP +# The maximum size in bytes that voice packets are allowed to have +mtu_size=1024 +# The frequency at which keep alive packets are sent +# Setting this to a higher value may result in timeouts +keep_alive=1000 +# If group chats are allowed +enable_groups=true +# The host name that clients should use to connect to the voice chat +# This may also include a port, e.g. 'example.com:24454' +# Don't change this value if you don't know what you are doing +voice_host= +# If players are allowed to record the voice chat +allow_recording=true +# If spectators are allowed to talk to other players +spectator_interaction=false +# If spectators can talk to players they are spectating +spectator_player_possession=false +# If players without the mod should get kicked from the server +force_voice_chat=false +# The amount of milliseconds, the server should wait to check if the player has the mod installed +# Only active when force_voice_chat is set to true +login_timeout=10000 +# The range where the voice chat should broadcast audio to +# A value <0 means 'max_voice_distance' +broadcast_range=-1.0 diff --git a/config/voicechat/voicechat-volumes.properties b/config/voicechat/voicechat-volumes.properties new file mode 100644 index 000000000..c029ae39d --- /dev/null +++ b/config/voicechat/voicechat-volumes.properties @@ -0,0 +1,2 @@ +# Simple Voice Chat volume config + diff --git a/crash-reports/crash-2023-09-15_19.45.46-client.txt b/crash-reports/crash-2023-09-15_19.45.46-client.txt new file mode 100644 index 000000000..73c720197 --- /dev/null +++ b/crash-reports/crash-2023-09-15_19.45.46-client.txt @@ -0,0 +1,243 @@ +---- Minecraft Crash Report ---- +// Hi. I'm Minecraft, and I'm a crashaholic. + +Time: 2023-09-15 19:45:46 +Description: Initializing game + +java.lang.IncompatibleClassChangeError: class net.coderbot.iris.gui.option.ShadowDistanceOption cannot inherit from final class net.minecraft.client.OptionInstance + at java.lang.ClassLoader.defineClass1(Native Method) ~[?:?] {} + at java.lang.ClassLoader.defineClass(ClassLoader.java:1012) ~[?:?] {} + at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:119) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?] {} + at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?] {} + at net.coderbot.iris.config.IrisConfig.save(IrisConfig.java:169) ~[oculus-mc1.20-1.6.4.jar%23172!/:?] {re:classloading} + at net.coderbot.iris.config.IrisConfig.initialize(IrisConfig.java:60) ~[oculus-mc1.20-1.6.4.jar%23172!/:?] {re:classloading} + at net.coderbot.iris.Iris.onEarlyInitialize(Iris.java:146) ~[oculus-mc1.20-1.6.4.jar%23172!/:?] {re:mixin,re:classloading} + at net.minecraft.client.Options.handler$zia000$iris$beforeLoadOptions(Options.java:1430) ~[client-1.20.1-20230612.114412-srg.jar%23176!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.oculus.json:MixinOptions_Entrypoint,pl:mixin:APP:betterf3.mixins.json:autof3.DebugOptionMixin,pl:mixin:APP:mixins.oculus.fixes.maxfpscrash.json:MixinMaxFpsCrashFix,pl:mixin:APP:mixins.oculus.json:sky.MixinOptions_CloudsOverride,pl:mixin:A,pl:runtimedistcleaner:A} + at net.minecraft.client.Options.m_92140_(Options.java) ~[client-1.20.1-20230612.114412-srg.jar%23176!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.oculus.json:MixinOptions_Entrypoint,pl:mixin:APP:betterf3.mixins.json:autof3.DebugOptionMixin,pl:mixin:APP:mixins.oculus.fixes.maxfpscrash.json:MixinMaxFpsCrashFix,pl:mixin:APP:mixins.oculus.json:sky.MixinOptions_CloudsOverride,pl:mixin:A,pl:runtimedistcleaner:A} + at net.minecraft.client.Options.(Options.java:888) ~[client-1.20.1-20230612.114412-srg.jar%23176!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.oculus.json:MixinOptions_Entrypoint,pl:mixin:APP:betterf3.mixins.json:autof3.DebugOptionMixin,pl:mixin:APP:mixins.oculus.fixes.maxfpscrash.json:MixinMaxFpsCrashFix,pl:mixin:APP:mixins.oculus.json:sky.MixinOptions_CloudsOverride,pl:mixin:A,pl:runtimedistcleaner:A} + at net.minecraft.client.Minecraft.(Minecraft.java:425) ~[client-1.20.1-20230612.114412-srg.jar%23176!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:tfc.mixins.json:client.MinecraftMixin,pl:mixin:APP:rubidium.mixins.json:core.MinecraftClientMixin,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Keybinds,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Images,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_PipelineManagement,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:A,pl:runtimedistcleaner:A} + at net.minecraft.client.main.Main.main(Main.java:182) ~[1.20.1-1.20.1-47.1.3.jar:?] {re:classloading,pl:runtimedistcleaner:A} + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} + at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} + at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.1.3.jar:?] {} + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.1.3.jar:?] {} + at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.1.3.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} + + +A detailed walkthrough of the error, its code path and all known details is as follows: +--------------------------------------------------------------------------------------- + +-- Head -- +Thread: Render thread +Stacktrace: + at java.lang.ClassLoader.defineClass1(Native Method) ~[?:?] {} + at java.lang.ClassLoader.defineClass(ClassLoader.java:1012) ~[?:?] {} + at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:119) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?] {} + at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?] {} + at net.coderbot.iris.config.IrisConfig.save(IrisConfig.java:169) ~[oculus-mc1.20-1.6.4.jar%23172!/:?] {re:classloading} + at net.coderbot.iris.config.IrisConfig.initialize(IrisConfig.java:60) ~[oculus-mc1.20-1.6.4.jar%23172!/:?] {re:classloading} + at net.coderbot.iris.Iris.onEarlyInitialize(Iris.java:146) ~[oculus-mc1.20-1.6.4.jar%23172!/:?] {re:mixin,re:classloading} + at net.minecraft.client.Options.handler$zia000$iris$beforeLoadOptions(Options.java:1430) ~[client-1.20.1-20230612.114412-srg.jar%23176!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.oculus.json:MixinOptions_Entrypoint,pl:mixin:APP:betterf3.mixins.json:autof3.DebugOptionMixin,pl:mixin:APP:mixins.oculus.fixes.maxfpscrash.json:MixinMaxFpsCrashFix,pl:mixin:APP:mixins.oculus.json:sky.MixinOptions_CloudsOverride,pl:mixin:A,pl:runtimedistcleaner:A} + at net.minecraft.client.Options.m_92140_(Options.java) ~[client-1.20.1-20230612.114412-srg.jar%23176!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.oculus.json:MixinOptions_Entrypoint,pl:mixin:APP:betterf3.mixins.json:autof3.DebugOptionMixin,pl:mixin:APP:mixins.oculus.fixes.maxfpscrash.json:MixinMaxFpsCrashFix,pl:mixin:APP:mixins.oculus.json:sky.MixinOptions_CloudsOverride,pl:mixin:A,pl:runtimedistcleaner:A} + at net.minecraft.client.Options.(Options.java:888) ~[client-1.20.1-20230612.114412-srg.jar%23176!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.oculus.json:MixinOptions_Entrypoint,pl:mixin:APP:betterf3.mixins.json:autof3.DebugOptionMixin,pl:mixin:APP:mixins.oculus.fixes.maxfpscrash.json:MixinMaxFpsCrashFix,pl:mixin:APP:mixins.oculus.json:sky.MixinOptions_CloudsOverride,pl:mixin:A,pl:runtimedistcleaner:A} + at net.minecraft.client.Minecraft.(Minecraft.java:425) ~[client-1.20.1-20230612.114412-srg.jar%23176!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:tfc.mixins.json:client.MinecraftMixin,pl:mixin:APP:rubidium.mixins.json:core.MinecraftClientMixin,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Keybinds,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Images,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_PipelineManagement,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:A,pl:runtimedistcleaner:A} +-- Initialization -- +Details: + Modules: + ADVAPI32.dll:Расширенная библиотека API Windows 32:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + COMCTL32.dll:Библиотека элементов управления взаимодействия с пользователем:6.10 (WinBuild.160101.0800):Microsoft Corporation + CRYPT32.dll:API32 криптографии:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + CRYPTBASE.DLL:Base cryptographic API DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + CRYPTSP.dll:Cryptographic Service Provider API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + CoreMessaging.dll:Microsoft CoreMessaging Dll:10.0.22621.1635 (WinBuild.160101.0800):Microsoft Corporation + CoreUIComponents.dll:Microsoft Core UI Components Dll:10.0.22621.1635:Microsoft Corporation + DBGHELP.DLL:Windows Image Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + DEVOBJ.dll:Device Information Set DLL:10.0.22621.1344 (WinBuild.160101.0800):Microsoft Corporation + DNSAPI.dll:Динамическая библиотека API DNS-клиента:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + GDI32.dll:GDI Client DLL:10.0.22621.1778 (WinBuild.160101.0800):Microsoft Corporation + GLU32.dll:Библиотека подпрограмм OpenGL:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + IMM32.DLL:Multi-User Windows IMM32 API Client DLL:10.0.22621.1344 (WinBuild.160101.0800):Microsoft Corporation + IPHLPAPI.DLL:API вспомогательного приложения IP:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + KERNEL32.DLL:Библиотека клиента Windows NT BASE API:10.0.22621.2275 (WinBuild.160101.0800):Microsoft Corporation + KERNELBASE.dll:Библиотека клиента Windows NT BASE API:10.0.22621.2275 (WinBuild.160101.0800):Microsoft Corporation + MSCTF.dll:Серверная библиотека MSCTF:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + MpOav.dll:IOfficeAntiVirus Module:4.18.23080.2006 (04d8e871ffe7ba6b2204046883e1ad9b7a5989ce):Microsoft Corporation + NSI.dll:NSI User-mode interface DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + NTASN1.dll:Microsoft ASN.1 API:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + OLEAUT32.dll:OLEAUT32.DLL:10.0.22621.1992 (WinBuild.160101.0800):Microsoft Corporation + PSAPI.DLL:Process Status Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + RPCRT4.dll:Библиотека удаленного вызова процедур:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + SETUPAPI.dll:Windows Setup API:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + SHCORE.dll:SHCORE:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + SHELL32.dll:Общая библиотека оболочки Windows:10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + UMPDC.dll:User Mode Power Dependency Coordinator:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + USER32.dll:Многопользовательская библиотека клиента USER API Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + USERENV.dll:Userenv:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + VCRUNTIME140.dll:Microsoft® C Runtime Library:14.31.31103.0:Microsoft Corporation + VERSION.dll:Version Checking and File Installation Libraries:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + WINHTTP.dll:Службы HTTP Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + WINMM.dll:MCI API DLL:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + WINSTA.dll:Winstation Library:10.0.22621.1635 (WinBuild.160101.0800):Microsoft Corporation + WINTRUST.dll:Microsoft Trust Verification APIs:10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + WS2_32.dll:32-разрядная библиотека Windows Socket 2.0:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + WSOCK32.dll:Windows Socket 32-Bit DLL:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + WTSAPI32.dll:Windows Remote Desktop Session Host Server SDK APIs:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + amsi.dll:Anti-Malware Scan Interface:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + bcrypt.dll:Библиотека криптографических примитивов Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + bcryptPrimitives.dll:Windows Cryptographic Primitives Library:10.0.22621.1928 (WinBuild.160101.0800):Microsoft Corporation + cfgmgr32.dll:Configuration Manager DLL:10.0.22621.1344 (WinBuild.160101.0800):Microsoft Corporation + clbcatq.dll:COM+ Configuration Catalog:2001.12.10941.16384 (WinBuild.160101.0800):Microsoft Corporation + combase.dll:Microsoft COM для Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + cryptnet.dll:Crypto Network Related API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + dbgcore.DLL:Windows Core Debugging Helpers:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + dhcpcsvc.DLL:Служба DHCP-клиента:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + dhcpcsvc6.DLL:Клиент DHCPv6:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + dinput8.dll:Microsoft DirectInput:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + drvstore.dll:Driver Store API:10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + dwmapi.dll:Интерфейс API диспетчера окон рабочего стола (Майкрософт):10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + dxcore.dll:DXCore:10.0.22621.1778 (WinBuild.160101.0800):Microsoft Corporation + fwpuclnt.dll:API пользовательского режима FWP/IPsec:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + gdi32full.dll:GDI Client DLL:10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + glfw.dll:GLFW 3.4.0 DLL:3.4.0:GLFW + inputhost.dll:InputHost:10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + java.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + javaw.exe:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + jemalloc.dll + jimage.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + jli.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + jna5653545338839873486.dll:JNA native library:6.1.4:Java(TM) Native Access (JNA) + jsvml.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + jvm.dll:Java HotSpot(TM) 64-Bit server VM:17.0.6.0:Oracle Corporation + kernel.appcore.dll:AppModel API Host:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + lwjgl.dll + lwjgl_opengl.dll + lwjgl_stb.dll + management.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + management_ext.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + msasn1.dll:ASN.1 Runtime APIs:10.0.22621.819 (WinBuild.160101.0800):Microsoft Corporation + msvcp140.dll:Microsoft® C Runtime Library:14.31.31103.0:Microsoft Corporation + msvcp_win.dll:Microsoft® C Runtime Library:10.0.22621.608 (WinBuild.160101.0800):Microsoft Corporation + msvcrt.dll:Windows NT CRT DLL:7.0.22621.608 (WinBuild.160101.0800):Microsoft Corporation + mswsock.dll:Расширение поставщика службы API Microsoft Windows Sockets 2.0:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + napinsp.dll:Поставщик оболочки совместимости для имен электронной почты:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + ncrypt.dll:Маршрутизатор Windows NCrypt:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + net.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + nio.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + nlansp_c.dll:NLA Namespace Service Provider DLL:10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + ntdll.dll:Системная библиотека NT:10.0.22621.2275 (WinBuild.160101.0800):Microsoft Corporation + ntmarta.dll:Поставщик Windows NT MARTA:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + nvoglv64.dll:NVIDIA Compatible OpenGL ICD:31.0.15.2849:NVIDIA Corporation + nvspcap64.dll:NVIDIA Game Proxy:3.27.0.112:NVIDIA Corporation + ole32.dll:Microsoft OLE для Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + opengl32.dll:OpenGL Client DLL:10.0.22621.1635 (WinBuild.160101.0800):Microsoft Corporation + pdh.dll:Модуль поддержки данных производительности Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + perfos.dll:Библиотека объектов производительности системы Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + perfproc.dll:Библиотека объектов производительности системных процессов Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + pfclient.dll:SysMain Client:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + pnrpnsp.dll:Поставщик пространства имен PNRP:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + powrprof.dll:DLL модуля поддержки профиля управления питанием:10.0.22621.818 (WinBuild.160101.0800):Microsoft Corporation + profapi.dll:User Profile Basic API:10.0.22621.1928 (WinBuild.160101.0800):Microsoft Corporation + rasadhlp.dll:Remote Access AutoDial Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + rsaenh.dll:Microsoft Enhanced Cryptographic Provider:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + sechost.dll:Host for SCM/SDDL/LSA Lookup APIs:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + shlwapi.dll:Библиотека небольших программ оболочки:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + sunmscapi.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + textinputframework.dll:"TextInputFramework.DYNLINK":10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + ucrtbase.dll:Microsoft® C Runtime Library:10.0.22621.608 (WinBuild.160101.0800):Microsoft Corporation + uxtheme.dll:Библиотека тем UxTheme (Microsoft):10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + vcruntime140_1.dll:Microsoft® C Runtime Library:14.31.31103.0:Microsoft Corporation + verify.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + win32u.dll:Win32u:10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + windows.storage.dll:API хранения Microsoft WinRT:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + winrnr.dll:LDAP RnR Provider DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + wintypes.dll:Библиотека DLL основных типов Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + wldp.dll:Политика блокировки Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + wshbth.dll:Windows Sockets Helper DLL:10.0.22621.1778 (WinBuild.160101.0800):Microsoft Corporation + xinput1_4.dll:API общего контроллера (Майкрософт):10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + zip.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation +Stacktrace: + at net.minecraft.client.main.Main.main(Main.java:182) ~[1.20.1-1.20.1-47.1.3.jar:?] {re:classloading,pl:runtimedistcleaner:A} + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} + at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} + at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.1.3.jar:?] {} + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.1.3.jar:?] {} + at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.1.3.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} + + +-- System Details -- +Details: + Minecraft Version: 1.20.1 + Minecraft Version ID: 1.20.1 + Operating System: Windows 11 (amd64) version 10.0 + Java Version: 17.0.6, Oracle Corporation + Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode, sharing), Oracle Corporation + Memory: 354432712 bytes (338 MiB) / 704643072 bytes (672 MiB) up to 10779361280 bytes (10280 MiB) + CPUs: 20 + Processor Vendor: GenuineIntel + Processor Name: 12th Gen Intel(R) Core(TM) i7-12700KF + Identifier: Intel64 Family 6 Model 151 Stepping 2 + Microarchitecture: Alder Lake + Frequency (GHz): 3.61 + Number of physical packages: 1 + Number of physical CPUs: 12 + Number of logical CPUs: 20 + Graphics card #0 name: NVIDIA GeForce RTX 2060 + Graphics card #0 vendor: NVIDIA (0x10de) + Graphics card #0 VRAM (MB): 4095.00 + Graphics card #0 deviceId: 0x1f08 + Graphics card #0 versionInfo: DriverVersion=31.0.15.2849 + Memory slot #0 capacity (MB): 8192.00 + Memory slot #0 clockSpeed (GHz): 2.67 + Memory slot #0 type: DDR4 + Memory slot #1 capacity (MB): 8192.00 + Memory slot #1 clockSpeed (GHz): 2.67 + Memory slot #1 type: DDR4 + Memory slot #2 capacity (MB): 8192.00 + Memory slot #2 clockSpeed (GHz): 2.67 + Memory slot #2 type: DDR4 + Memory slot #3 capacity (MB): 8192.00 + Memory slot #3 clockSpeed (GHz): 2.67 + Memory slot #3 type: DDR4 + Virtual memory max (MB): 34655.88 + Virtual memory used (MB): 16830.50 + Swap memory total (MB): 2048.00 + Swap memory used (MB): 66.14 + JVM Flags: 2 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx10280M + Launched Version: 1.20.1 + Backend library: LWJGL version 3.3.1 build 7 + Backend API: Unknown + Window size: + GL Caps: Using framebuffer using OpenGL 3.2 + GL debug messages: + Using VBOs: Yes + Is Modded: Definitely; Client brand changed to 'forge' + Type: Client (map_client.txt) + CPU: \ No newline at end of file diff --git a/crash-reports/crash-2023-09-15_19.46.38-client.txt b/crash-reports/crash-2023-09-15_19.46.38-client.txt new file mode 100644 index 000000000..56f9c1d77 --- /dev/null +++ b/crash-reports/crash-2023-09-15_19.46.38-client.txt @@ -0,0 +1,301 @@ +---- Minecraft Crash Report ---- +// This doesn't make any sense! + +Time: 2023-09-15 19:46:38 +Description: Initializing game + +org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered + at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-10.0.9.jar:10.0.9+10.0.9+main.dcd20f30] {} + at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?] {} + at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?] {} + at net.minecraft.client.gui.font.FontSet.(FontSet.java:35) ~[client-1.20.1-20230612.114412-srg.jar%23178!/:?] {re:classloading} + at net.minecraft.client.gui.font.FontManager.(FontManager.java:63) ~[client-1.20.1-20230612.114412-srg.jar%23178!/:?] {re:classloading} + at net.minecraft.client.Minecraft.(Minecraft.java:475) ~[client-1.20.1-20230612.114412-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:tfc.mixins.json:client.MinecraftMixin,pl:mixin:APP:rubidium.mixins.json:core.MinecraftClientMixin,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Keybinds,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Images,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_PipelineManagement,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:A,pl:runtimedistcleaner:A} + at net.minecraft.client.main.Main.main(Main.java:182) ~[1.20.1-1.20.1-47.1.3.jar:?] {re:classloading,pl:runtimedistcleaner:A} + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} + at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} + at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.1.3.jar:?] {} + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.1.3.jar:?] {} + at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.1.3.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} +Caused by: org.spongepowered.asm.mixin.throwables.ClassMetadataNotFoundException: me.jellysquid.mods.sodium.client.util.color.ColorABGR + at org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.transformMethod(MixinPreProcessorStandard.java:754) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.transform(MixinPreProcessorStandard.java:739) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.attach(MixinPreProcessorStandard.java:310) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.createContextFor(MixinPreProcessorStandard.java:280) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at org.spongepowered.asm.mixin.transformer.MixinInfo.createContextFor(MixinInfo.java:1288) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:292) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:383) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:365) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + ... 32 more + + +A detailed walkthrough of the error, its code path and all known details is as follows: +--------------------------------------------------------------------------------------- + +-- Head -- +Thread: Render thread +Stacktrace: + at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:250) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at org.spongepowered.asm.service.modlauncher.MixinTransformationHandler.processClass(MixinTransformationHandler.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.processClass(MixinLaunchPluginLegacy.java:131) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] {} + at cpw.mods.modlauncher.serviceapi.ILaunchPluginService.processClassWithFlags(ILaunchPluginService.java:156) ~[modlauncher-10.0.9.jar:10.0.9+10.0.9+main.dcd20f30] {} + at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:88) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.readerToClass(ModuleClassLoader.java:113) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.lambda$findClass$15(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.loadFromModule(ModuleClassLoader.java:229) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.findClass(ModuleClassLoader.java:219) ~[securejarhandler-2.1.10.jar:?] {} + at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:135) ~[securejarhandler-2.1.10.jar:?] {} + at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?] {} + at net.minecraft.client.gui.font.FontSet.(FontSet.java:35) ~[client-1.20.1-20230612.114412-srg.jar%23178!/:?] {re:classloading} + at net.minecraft.client.gui.font.FontManager.(FontManager.java:63) ~[client-1.20.1-20230612.114412-srg.jar%23178!/:?] {re:classloading} + at net.minecraft.client.Minecraft.(Minecraft.java:475) ~[client-1.20.1-20230612.114412-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:tfc.mixins.json:client.MinecraftMixin,pl:mixin:APP:rubidium.mixins.json:core.MinecraftClientMixin,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Keybinds,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_Images,pl:mixin:APP:mixins.oculus.json:MixinMinecraft_PipelineManagement,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:A,pl:runtimedistcleaner:A} +-- Initialization -- +Details: + Modules: + ADVAPI32.dll:Расширенная библиотека API Windows 32:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + COMCTL32.dll:Библиотека элементов управления взаимодействия с пользователем:6.10 (WinBuild.160101.0800):Microsoft Corporation + CRYPT32.dll:API32 криптографии:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + CRYPTBASE.DLL:Base cryptographic API DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + CRYPTSP.dll:Cryptographic Service Provider API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + CoreMessaging.dll:Microsoft CoreMessaging Dll:10.0.22621.1635 (WinBuild.160101.0800):Microsoft Corporation + CoreUIComponents.dll:Microsoft Core UI Components Dll:10.0.22621.1635:Microsoft Corporation + DBGHELP.DLL:Windows Image Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + DEVOBJ.dll:Device Information Set DLL:10.0.22621.1344 (WinBuild.160101.0800):Microsoft Corporation + DNSAPI.dll:Динамическая библиотека API DNS-клиента:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + GDI32.dll:GDI Client DLL:10.0.22621.1778 (WinBuild.160101.0800):Microsoft Corporation + GLU32.dll:Библиотека подпрограмм OpenGL:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + IMM32.DLL:Multi-User Windows IMM32 API Client DLL:10.0.22621.1344 (WinBuild.160101.0800):Microsoft Corporation + IPHLPAPI.DLL:API вспомогательного приложения IP:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + KERNEL32.DLL:Библиотека клиента Windows NT BASE API:10.0.22621.2275 (WinBuild.160101.0800):Microsoft Corporation + KERNELBASE.dll:Библиотека клиента Windows NT BASE API:10.0.22621.2275 (WinBuild.160101.0800):Microsoft Corporation + MMDevApi.dll:MMDevice API:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + MSCTF.dll:Серверная библиотека MSCTF:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + MpOav.dll:IOfficeAntiVirus Module:4.18.23080.2006 (04d8e871ffe7ba6b2204046883e1ad9b7a5989ce):Microsoft Corporation + NSI.dll:NSI User-mode interface DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + NTASN1.dll:Microsoft ASN.1 API:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + OLEAUT32.dll:OLEAUT32.DLL:10.0.22621.1992 (WinBuild.160101.0800):Microsoft Corporation + OpenAL.dll:Main implementation library:1.21.1: + PSAPI.DLL:Process Status Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + RPCRT4.dll:Библиотека удаленного вызова процедур:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + SETUPAPI.dll:Windows Setup API:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + SHCORE.dll:SHCORE:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + SHELL32.dll:Общая библиотека оболочки Windows:10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + UMPDC.dll:User Mode Power Dependency Coordinator:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + USER32.dll:Многопользовательская библиотека клиента USER API Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + USERENV.dll:Userenv:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + VCRUNTIME140.dll:Microsoft® C Runtime Library:14.31.31103.0:Microsoft Corporation + VERSION.dll:Version Checking and File Installation Libraries:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + WINHTTP.dll:Службы HTTP Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + WINMM.dll:MCI API DLL:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + WINSTA.dll:Winstation Library:10.0.22621.1635 (WinBuild.160101.0800):Microsoft Corporation + WINTRUST.dll:Microsoft Trust Verification APIs:10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + WS2_32.dll:32-разрядная библиотека Windows Socket 2.0:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + WSOCK32.dll:Windows Socket 32-Bit DLL:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + WTSAPI32.dll:Windows Remote Desktop Session Host Server SDK APIs:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + amsi.dll:Anti-Malware Scan Interface:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + apphelp.dll:Клиентская библиотека совместимости приложений:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + awt.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + bcrypt.dll:Библиотека криптографических примитивов Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + bcryptPrimitives.dll:Windows Cryptographic Primitives Library:10.0.22621.1928 (WinBuild.160101.0800):Microsoft Corporation + cfgmgr32.dll:Configuration Manager DLL:10.0.22621.1344 (WinBuild.160101.0800):Microsoft Corporation + clbcatq.dll:COM+ Configuration Catalog:2001.12.10941.16384 (WinBuild.160101.0800):Microsoft Corporation + combase.dll:Microsoft COM для Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + cryptnet.dll:Crypto Network Related API:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + dbgcore.DLL:Windows Core Debugging Helpers:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + dhcpcsvc.DLL:Служба DHCP-клиента:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + dhcpcsvc6.DLL:Клиент DHCPv6:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + dinput8.dll:Microsoft DirectInput:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + drvstore.dll:Driver Store API:10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + dwmapi.dll:Интерфейс API диспетчера окон рабочего стола (Майкрософт):10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + dxcore.dll:DXCore:10.0.22621.1778 (WinBuild.160101.0800):Microsoft Corporation + fwpuclnt.dll:API пользовательского режима FWP/IPsec:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + gdi32full.dll:GDI Client DLL:10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + glfw.dll:GLFW 3.4.0 DLL:3.4.0:GLFW + icm32.dll:Microsoft Color Management Module (CMM):10.0.22621.1344 (WinBuild.160101.0800):Microsoft Corporation + inputhost.dll:InputHost:10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + java.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + javaw.exe:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + jemalloc.dll + jimage.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + jli.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + jna12624282062108934817.dll:JNA native library:6.1.4:Java(TM) Native Access (JNA) + jsvml.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + jvm.dll:Java HotSpot(TM) 64-Bit server VM:17.0.6.0:Oracle Corporation + kernel.appcore.dll:AppModel API Host:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + lwjgl.dll + lwjgl_opengl.dll + lwjgl_stb.dll + management.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + management_ext.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + msasn1.dll:ASN.1 Runtime APIs:10.0.22621.819 (WinBuild.160101.0800):Microsoft Corporation + mscms.dll:DLL-библиотека системы сопоставления цветов Майкрософт:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + msvcp140.dll:Microsoft® C Runtime Library:14.31.31103.0:Microsoft Corporation + msvcp_win.dll:Microsoft® C Runtime Library:10.0.22621.608 (WinBuild.160101.0800):Microsoft Corporation + msvcrt.dll:Windows NT CRT DLL:7.0.22621.608 (WinBuild.160101.0800):Microsoft Corporation + mswsock.dll:Расширение поставщика службы API Microsoft Windows Sockets 2.0:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + napinsp.dll:Поставщик оболочки совместимости для имен электронной почты:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + ncrypt.dll:Маршрутизатор Windows NCrypt:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + net.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + nio.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + nlansp_c.dll:NLA Namespace Service Provider DLL:10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + ntdll.dll:Системная библиотека NT:10.0.22621.2275 (WinBuild.160101.0800):Microsoft Corporation + ntmarta.dll:Поставщик Windows NT MARTA:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + nvoglv64.dll:NVIDIA Compatible OpenGL ICD:31.0.15.2849:NVIDIA Corporation + nvspcap64.dll:NVIDIA Game Proxy:3.27.0.112:NVIDIA Corporation + ole32.dll:Microsoft OLE для Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + opengl32.dll:OpenGL Client DLL:10.0.22621.1635 (WinBuild.160101.0800):Microsoft Corporation + pdh.dll:Модуль поддержки данных производительности Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + perfos.dll:Библиотека объектов производительности системы Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + perfproc.dll:Библиотека объектов производительности системных процессов Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + pfclient.dll:SysMain Client:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + pnrpnsp.dll:Поставщик пространства имен PNRP:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + powrprof.dll:DLL модуля поддержки профиля управления питанием:10.0.22621.818 (WinBuild.160101.0800):Microsoft Corporation + profapi.dll:User Profile Basic API:10.0.22621.1928 (WinBuild.160101.0800):Microsoft Corporation + rasadhlp.dll:Remote Access AutoDial Helper:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + rsaenh.dll:Microsoft Enhanced Cryptographic Provider:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + sechost.dll:Host for SCM/SDDL/LSA Lookup APIs:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + shlwapi.dll:Библиотека небольших программ оболочки:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + sunmscapi.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + textinputframework.dll:"TextInputFramework.DYNLINK":10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + ucrtbase.dll:Microsoft® C Runtime Library:10.0.22621.608 (WinBuild.160101.0800):Microsoft Corporation + uxtheme.dll:Библиотека тем UxTheme (Microsoft):10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + vcruntime140_1.dll:Microsoft® C Runtime Library:14.31.31103.0:Microsoft Corporation + verify.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation + win32u.dll:Win32u:10.0.22621.2070 (WinBuild.160101.0800):Microsoft Corporation + windows.storage.dll:API хранения Microsoft WinRT:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + winrnr.dll:LDAP RnR Provider DLL:10.0.22621.1 (WinBuild.160101.0800):Microsoft Corporation + wintypes.dll:Библиотека DLL основных типов Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + wldp.dll:Политика блокировки Windows:10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + wshbth.dll:Windows Sockets Helper DLL:10.0.22621.1778 (WinBuild.160101.0800):Microsoft Corporation + xinput1_4.dll:API общего контроллера (Майкрософт):10.0.22621.2338 (WinBuild.160101.0800):Microsoft Corporation + zip.dll:Java(TM) Platform SE binary:17.0.6.0:Oracle Corporation +Stacktrace: + at net.minecraft.client.main.Main.main(Main.java:182) ~[1.20.1-1.20.1-47.1.3.jar:?] {re:classloading,pl:runtimedistcleaner:A} + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} + at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} + at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.1.3.jar:?] {} + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.1.3.jar:?] {} + at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.1.3.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {} + at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} + + +-- System Details -- +Details: + Minecraft Version: 1.20.1 + Minecraft Version ID: 1.20.1 + Operating System: Windows 11 (amd64) version 10.0 + Java Version: 17.0.6, Oracle Corporation + Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode, sharing), Oracle Corporation + Memory: 448001952 bytes (427 MiB) / 838860800 bytes (800 MiB) up to 10779361280 bytes (10280 MiB) + CPUs: 20 + Processor Vendor: GenuineIntel + Processor Name: 12th Gen Intel(R) Core(TM) i7-12700KF + Identifier: Intel64 Family 6 Model 151 Stepping 2 + Microarchitecture: Alder Lake + Frequency (GHz): 3.61 + Number of physical packages: 1 + Number of physical CPUs: 12 + Number of logical CPUs: 20 + Graphics card #0 name: NVIDIA GeForce RTX 2060 + Graphics card #0 vendor: NVIDIA (0x10de) + Graphics card #0 VRAM (MB): 4095.00 + Graphics card #0 deviceId: 0x1f08 + Graphics card #0 versionInfo: DriverVersion=31.0.15.2849 + Memory slot #0 capacity (MB): 8192.00 + Memory slot #0 clockSpeed (GHz): 2.67 + Memory slot #0 type: DDR4 + Memory slot #1 capacity (MB): 8192.00 + Memory slot #1 clockSpeed (GHz): 2.67 + Memory slot #1 type: DDR4 + Memory slot #2 capacity (MB): 8192.00 + Memory slot #2 clockSpeed (GHz): 2.67 + Memory slot #2 type: DDR4 + Memory slot #3 capacity (MB): 8192.00 + Memory slot #3 clockSpeed (GHz): 2.67 + Memory slot #3 type: DDR4 + Virtual memory max (MB): 34655.88 + Virtual memory used (MB): 17123.98 + Swap memory total (MB): 2048.00 + Swap memory used (MB): 66.14 + JVM Flags: 2 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx10280M + Loaded Shaderpack: (off) + NEC status: No NEC detected + Launched Version: 1.20.1 + Backend library: LWJGL version 3.3.1 build 7 + Backend API: NVIDIA GeForce RTX 2060/PCIe/SSE2 GL version 4.6.0 NVIDIA 528.49, NVIDIA Corporation + Window size: + GL Caps: Using framebuffer using OpenGL 3.2 + GL debug messages: + Using VBOs: Yes + Is Modded: Definitely; Client brand changed to 'forge' + Type: Client (map_client.txt) + CPU: 20x 12th Gen Intel(R) Core(TM) i7-12700KF + ModLauncher: 10.0.9+10.0.9+main.dcd20f30 + ModLauncher launch target: forgeclient + ModLauncher naming: srg + ModLauncher services: + mixin-0.8.5.jar mixin PLUGINSERVICE + eventbus-6.0.5.jar eventbus PLUGINSERVICE + fmlloader-1.20.1-47.1.3.jar slf4jfixer PLUGINSERVICE + fmlloader-1.20.1-47.1.3.jar object_holder_definalize PLUGINSERVICE + fmlloader-1.20.1-47.1.3.jar runtime_enum_extender PLUGINSERVICE + fmlloader-1.20.1-47.1.3.jar capability_token_subclass PLUGINSERVICE + accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE + fmlloader-1.20.1-47.1.3.jar runtimedistcleaner PLUGINSERVICE + modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE + modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE + FML Language Providers: + minecraft@1.0 + lowcodefml@null + javafml@null + Mod List: + client-1.20.1-20230612.114412-srg.jar |Minecraft |minecraft |1.20.1 |COMMON_SET|Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f + entityculling-forge-1.6.2-mc1.20.jar |EntityCulling |entityculling |1.6.2 |COMMON_SET|Manifest: NOSIGNATURE + BetterF3-7.0.1-Forge-1.20.1.jar |BetterF3 |betterf3 |7.0.1 |COMMON_SET|Manifest: NOSIGNATURE + cloth-config-11.1.106-forge.jar |Cloth Config v10 API |cloth_config |11.1.106 |COMMON_SET|Manifest: NOSIGNATURE + voicechat-forge-1.20.1-2.4.24.jar |Simple Voice Chat |voicechat |1.20.1-2.4.24 |COMMON_SET|Manifest: NOSIGNATURE + forge-1.20.1-47.1.3-universal.jar |Forge |forge |47.1.3 |COMMON_SET|Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90 + TerraFirmaCraft-Forge-1.20.1-0.0.0-indev.jar |TerraFirmaCraft |tfc |0.0.0-indev |COMMON_SET|Manifest: NOSIGNATURE + notenoughanimations-forge-1.6.4-mc1.20.jar |NotEnoughAnimations Mod |notenoughanimations |1.6.4 |COMMON_SET|Manifest: NOSIGNATURE + patchouli-1.20.1-81-forge.jar |Patchouli |patchouli |1.20.1-81-FORGE |COMMON_SET|Manifest: NOSIGNATURE + oculus-mc1.20-1.6.4.jar |Oculus |oculus |1.6.4 |COMMON_SET|Manifest: NOSIGNATURE + embeddium-0.1.4+mc1.20.1.jar |Embeddium |embeddium |0.1.0-git.5dbd168+mc|COMMON_SET|Manifest: NOSIGNATURE + architectury-9.1.12-forge.jar |Architectury |architectury |9.1.12 |COMMON_SET|Manifest: NOSIGNATURE + ferritecore-6.0.0-forge.jar |Ferrite Core |ferritecore |6.0.0 |COMMON_SET|Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a + Crash Report UUID: 1de548cf-2272-4178-b63b-d092a5c5ce09 + FML: 47.1 + Forge: net.minecraftforge:47.1.3 \ No newline at end of file diff --git a/mods/BetterF3-7.0.1-Forge-1.20.1.jar b/mods/BetterF3-7.0.1-Forge-1.20.1.jar new file mode 100644 index 000000000..c84f165d8 Binary files /dev/null and b/mods/BetterF3-7.0.1-Forge-1.20.1.jar differ diff --git a/mods/architectury-9.1.12-forge.jar b/mods/architectury-9.1.12-forge.jar new file mode 100644 index 000000000..32aa6ced2 Binary files /dev/null and b/mods/architectury-9.1.12-forge.jar differ diff --git a/mods/cloth-config-11.1.106-forge.jar b/mods/cloth-config-11.1.106-forge.jar new file mode 100644 index 000000000..e37d71d7c Binary files /dev/null and b/mods/cloth-config-11.1.106-forge.jar differ diff --git a/mods/embeddium-0.1.4+mc1.20.1.jard b/mods/embeddium-0.1.4+mc1.20.1.jard new file mode 100644 index 000000000..c8d342d2f Binary files /dev/null and b/mods/embeddium-0.1.4+mc1.20.1.jard differ diff --git a/mods/entityculling-forge-1.6.2-mc1.20.jar b/mods/entityculling-forge-1.6.2-mc1.20.jar new file mode 100644 index 000000000..8500fdb57 Binary files /dev/null and b/mods/entityculling-forge-1.6.2-mc1.20.jar differ diff --git a/mods/ferritecore-6.0.0-forge.jar b/mods/ferritecore-6.0.0-forge.jar new file mode 100644 index 000000000..7e1631b1d Binary files /dev/null and b/mods/ferritecore-6.0.0-forge.jar differ diff --git a/mods/gtceu-forge-1.20.1-1.0.11.b.jar b/mods/gtceu-forge-1.20.1-1.0.11.b.jar new file mode 100644 index 000000000..932ba2b24 Binary files /dev/null and b/mods/gtceu-forge-1.20.1-1.0.11.b.jar differ diff --git a/mods/kubejs-forge-2001.6.3-build.45.jar b/mods/kubejs-forge-2001.6.3-build.45.jar new file mode 100644 index 000000000..b7c9304e3 Binary files /dev/null and b/mods/kubejs-forge-2001.6.3-build.45.jar differ diff --git a/mods/notenoughanimations-forge-1.6.4-mc1.20.jar b/mods/notenoughanimations-forge-1.6.4-mc1.20.jar new file mode 100644 index 000000000..1fdd4faa1 Binary files /dev/null and b/mods/notenoughanimations-forge-1.6.4-mc1.20.jar differ diff --git a/mods/oculus-mc1.20-1.6.4.jard b/mods/oculus-mc1.20-1.6.4.jard new file mode 100644 index 000000000..c292482bb Binary files /dev/null and b/mods/oculus-mc1.20-1.6.4.jard differ diff --git a/mods/voicechat-forge-1.20.1-2.4.24.jar b/mods/voicechat-forge-1.20.1-2.4.24.jar new file mode 100644 index 000000000..271deff0b Binary files /dev/null and b/mods/voicechat-forge-1.20.1-2.4.24.jar differ diff --git a/profile.json b/profile.json index 6185ab350..60dd5c4bc 100644 --- a/profile.json +++ b/profile.json @@ -1 +1 @@ -{"uuid":"9869d689-a371-4509-b6a7-9f5ebb4dc5d7","install_stage":"installed","path":"TFG 1.20.1","metadata":{"name":"TFG 1.20.1","icon":"C:\\Users\\Dmitry\\AppData\\Roaming\\com.modrinth.theseus\\caches\\icons\\5b2d98ca07d8ce5786b0cd3bc02bbf916942e726.png","groups":[],"game_version":"1.20.1","loader":"forge","loader_version":{"id":"1.20.1-47.1.3","url":"https://meta.modrinth.com/forge/v0/versions/1.20.1-forge-47.1.3.json","stable":false},"date_created":"2023-09-15T12:26:02.508395500Z","date_modified":"2023-09-15T12:30:37.784252200Z","last_played":"2023-09-15T12:30:49.288008300Z","submitted_time_played":0,"recent_time_played":71},"fullscreen":null,"projects":{"mods\\patchouli-1.20.1-81-forge.jar":{"sha512":"fa1bb3843b147c6048d26095e79da110372f073436448b5ea36caedee28831d6262164e731f8c06ceced1766e555523c7f3b689f1a1c90e7082355e50ea9ab1d","disabled":false,"metadata":{"type":"modrinth","project":{"id":"nU0bVIaL","slug":"patchouli","project_type":"mod","team":"72JcM90m","title":"Patchouli","description":"Accessible, Data-Driven, Dependency-Free Documentation for Minecraft Modders and Pack Makers","body":"[![](https://violetmoon.org/branding/vm0.png)](https://violetmoon.org)[![](https://violetmoon.org/branding/vm1.png)](https://patreon.com/vazkii)[![](https://violetmoon.org/branding/vm2.png)](https://twitter.com/vazkiimods)[![](https://violetmoon.org/branding/vm3.png)](https://discord.gg/vm)\n![](https://violetmoon.org/branding/hero/patchouli.png)\n\n---\n\n# About\n\n**Patchouli** is a mod that aims to provide easy to implement, data-driven documentation for minecraft modders and modpack makers alike.\n\nPatchouli's systems allow any modder or modpack maker to quickly create beautiful books full of user experience enhancing features. The user-facing feature set of the mod is designed in function of research done on what features people liked from Botania's Lexica Botania.\n\n---\n\n# Features\n\n* Data-driven content creation, no code required, you don't even need patchouli's code to build\n* In-game text preview\n* Rich text formatting system that supports macros\n* Advancement-driven content unlocking\n* Nested categories and bookmarkable entries for quick and easy navigation\n* Several ready-to-use page types like text, crafting and image pages\n* Multiblock visualization for easy building\n* Template system to create custom page types\n* Seamless integration with mods, with creative tab and pretending the book is from your mod\n* Custom visuals and sounds\n* Easily localizable for other languages\n* Tons of other user friendly features!\n\n---\n\n# Learn more about Patchouli today\n### Visit the **[Wiki](https://vazkiimods.github.io/Patchouli/)** to learn about how to use this in your mod or modpack\n\n---\n\n# Credits\n\nMassive shout out to the following people who helped this become a reality:\n\n* Drullkus for testing, providing some code, and the logo\n* Ellpeck for extensive testing and tons of help with fixing bugs\n* StanHebben, for extensive testing, lots of good feature requests, and also providing fair amount of code\n* wiiv, for creating the art I used \n\n---\n\n\n\n![](https://violetmoon.org/branding/support.png)\n[![](https://violetmoon.org/branding/patreon.png)](https://patreon.com/vazkii)[![](https://violetmoon.org/branding/store.png)](https://store.vazkii.net)\n[![](https://violetmoon.org/branding/ch.png)](https://violetmoon.org/creeperhost)","published":"2021-12-23T21:23:57.938115Z","updated":"2023-07-11T02:01:27.198623Z","client_side":"required","server_side":"required","downloads":166106,"followers":329,"categories":["library","utility"],"additional_categories":[],"game_versions":["1.12.2","1.14.4","1.15.2","1.16.4","1.16.5","1.17.1","1.18.1","1.18.2","1.19","1.19.2","1.19.3","1.19.4","1.20.1"],"loaders":["fabric","forge","quilt"],"versions":["clOhZpKV","Bc62letg","YELVQSgP","I49wahSA","hOeuGyBc","AIocSIUP","7lEuKMXY","y5Iv4bvx","LLQZJV1E","bdOMmClI","OUi0L7mI","OfTGI9k6","lnWBMA5s","NfGlUTEX","YBbCmQdE","e8OPjNDT","b6yJCZbc","rgxH3b9S","pwPPKYN3","3nYm6JyE","oFXdEP6M","owlMYTOU","WZ0HMKHN","7hfShY6i","m3VnSBR9","9ocdD9Uo","OgM9g0zW","x2hqKA51","rJhsHi7U","expKhdK0","Dyqz3qo7","vCTStWON","VReLlKMv","yLlzynQ5","swxCEODj","4pBSxxGQ","8cbrvZZN","Ust5yPbd","1Cbhbli9","canbiioP","62ztr7HA","NorgAU8F","vU0HeQTe","uLqYYIHD","ajMDgDNM","VbKVW3Bi","PKvFvHeb","scPQNgN5","tzz6fEoj","YodpuIBJ","qXopWA1k","bxlh2STX"],"icon_url":"https://cdn.modrinth.com/data/nU0bVIaL/130922464c30a3a61eb493ce71d2502b23f29905.png"},"version":{"id":"YodpuIBJ","project_id":"nU0bVIaL","author_id":"wlfGXpf5","featured":false,"name":"1.20.1-81-forge","version_number":"1.20.1-81-forge","changelog":"https://github.com/VazkiiMods/Patchouli/releases/tag/release-1.20.1-81","changelog_url":null,"date_published":"2023-07-11T01:49:34.292807Z","downloads":10987,"version_type":"release","files":[{"hashes":{"sha1":"ac962914225ec045431b9c12618e296ca9cb3e22","sha512":"fa1bb3843b147c6048d26095e79da110372f073436448b5ea36caedee28831d6262164e731f8c06ceced1766e555523c7f3b689f1a1c90e7082355e50ea9ab1d"},"url":"https://cdn.modrinth.com/data/nU0bVIaL/versions/YodpuIBJ/Patchouli-1.20.1-81-FORGE.jar","filename":"Patchouli-1.20.1-81-FORGE.jar","primary":true,"size":637092,"file_type":null}],"dependencies":[],"game_versions":["1.20.1"],"loaders":["forge"]},"members":[{"team_id":"72JcM90m","user":{"id":"wlfGXpf5","username":"williewillus","name":"","avatar_url":"https://avatars.githubusercontent.com/u/2015032?v=4","bio":"Violet Moon member // Former ProjectE and Twilight Forest contributor","created":"2021-12-23T03:09:28.025799Z","role":"developer"},"role":"Maintainer","ordering":0},{"team_id":"72JcM90m","user":{"id":"kRXgk5E1","username":"Vazkii","name":"Vasco Lavos","avatar_url":"https://avatars.githubusercontent.com/u/1794735?v=4","bio":"holy hell","created":"2022-11-13T03:09:41.900759Z","role":"developer"},"role":"Owner","ordering":0}],"update_version":null,"incompatible":true},"file_name":"patchouli-1.20.1-81-forge.jar"},"mods\\TerraFirmaCraft-Forge-1.20.1-0.0.0-indev.jar":{"sha512":"f7edd5add4d9b60b5517c2af41a9ceea83872ab3e7499d21741b4f6bea7488de627fb1f5a053abf27c55095b932cddfc994f32681feca13d7c2608c2331e5c31","disabled":false,"metadata":{"type":"inferred","title":"TerraFirmaCraft","description":"TerraFirmaCraft - The Next Generation","authors":["AlcatrazEscapee"],"version":"${file.jarVersion}","icon":null,"project_type":"mod"},"file_name":"TerraFirmaCraft-Forge-1.20.1-0.0.0-indev.jar"}},"modrinth_update_version":null} \ No newline at end of file +{"uuid":"9869d689-a371-4509-b6a7-9f5ebb4dc5d7","install_stage":"installed","path":"TFG 1.20.1","metadata":{"name":"TFG 1.20.1","icon":"C:\\Users\\Dmitry\\AppData\\Roaming\\com.modrinth.theseus\\caches\\icons\\5b2d98ca07d8ce5786b0cd3bc02bbf916942e726.png","groups":[],"game_version":"1.20.1","loader":"forge","loader_version":{"id":"1.20.1-47.1.3","url":"https://meta.modrinth.com/forge/v0/versions/1.20.1-forge-47.1.3.json","stable":false},"date_created":"2023-09-15T12:26:02.508395500Z","date_modified":"2023-09-15T12:30:37.784252200Z","last_played":"2023-09-15T12:48:17.525409300Z","submitted_time_played":0,"recent_time_played":183},"fullscreen":null,"projects":{"mods\\cloth-config-11.1.106-forge.jar":{"sha512":"f48397e041df04bfd8c333cf282e6eeb076e38248aa8518ee7289859becf7037bbf00582cf7e6593e28eeaf74a44737438f100af666a83619b5d066389e70f49","disabled":false,"metadata":{"type":"modrinth","project":{"id":"9s6osm5g","slug":"cloth-config","project_type":"mod","team":"z9omIQMN","title":"Cloth Config API","description":"Configuration Library for Minecraft Mods","body":"[\"\"](https://discord.gg/Vs9AVkxjYY) [\"\"](https://www.patreon.com/shedaniel)\n\nCloth Config API is a config screen api.\n\n### Developers Wiki\n[https://shedaniel.gitbook.io/cloth-config/](https://shedaniel.gitbook.io/cloth-config/)\n\nNeed a server to play with friends? Or don't know how to setup one? Just rent a server that is already configured!\n\n[\"\"](https://www.bisecthosting.com/)\n\nClick on the picture above, select plan (at least 4 GB), use my code **shedaniel** to get **25% off** your first month and enjoy playing with your friends!\n\n![](https://i.imgur.com/AkpzyeC.png)","published":"2022-04-21T10:29:41.555173Z","updated":"2023-08-08T14:19:27.276128Z","client_side":"optional","server_side":"optional","downloads":2040998,"followers":2908,"categories":["library"],"additional_categories":[],"game_versions":["1.14","1.14.1","1.14.2","1.14.3","1.14.4","1.15","1.15.1","1.15.2","1.16","1.16.1","1.16.2","1.16.3","1.16.4","1.16.5","1.17","1.17.1","1.18","1.18.1","1.18.2","1.19","1.19.1","1.19.2","1.19.3","1.19.3-pre2","1.19.4","1.19.4-pre1","1.20","1.20.1","1.20-pre6","22w43a","23w13a_or_b","23w31a"],"loaders":["fabric","forge"],"versions":["2E04stZn","vcrZcwvb","dhr1Royh","FtlBFpp0","tR748cRj","D7tEkaAc","mJwBHBVB","wqFP5baC","HvviXJZV","vb3noRwi","6vFGWMar","63NArvT8","re60xAev","hcuWsP3M","DmOAoTTg","d1D40LRO","gb0cZ2Qp","GH6kNTCk","31tLmbMI","KiKLKNrl","wOP2dCdL","CsdOwOro","ehzvjLXC","XInqR7zc","FPWqEBEx","c4kFw2we","hg9bSXT3","VazGdWq6","JaKvOQIz","Q0bdszKc","GcaDCWXk","gPqHXnrg","iYo4XV1L","szXeTOs6","EXrxCjl6","Fw7B2c97","72Wj1Wri","IVxgEGfU","M3yxljrZ","VYURtAAK","QXKLvmdz","6XGTNEII","X8YuGurB","XqZIxbLN","dVpHBgHi","y0kQixP8","aAaLEVNM","oIHJeqqQ","CXaMuU8e","xMTUxQCV","i0ExoqTD","BLMp2TRt","ZbWG3eJW","w2VZSLTf","o9dFD9SO","8AMPotFw","EUyHCmUW","mhFzbEwE","Sqf2NXVd","s7VTKfLA","JoLgnJ0G","YR0cy5Ll"],"icon_url":"https://cdn.modrinth.com/data/9s6osm5g/icon.png"},"version":{"id":"JoLgnJ0G","project_id":"9s6osm5g","author_id":"1Hsaf75m","featured":false,"name":"[Forge 1.20(.1)] v11.1.106","version_number":"11.1.106+forge","changelog":"","changelog_url":null,"date_published":"2023-07-09T14:05:10.273534Z","downloads":91771,"version_type":"release","files":[{"hashes":{"sha1":"b6f17b52c469c5ca27c9e90abdb0ecc0be16149d","sha512":"f48397e041df04bfd8c333cf282e6eeb076e38248aa8518ee7289859becf7037bbf00582cf7e6593e28eeaf74a44737438f100af666a83619b5d066389e70f49"},"url":"https://cdn.modrinth.com/data/9s6osm5g/versions/JoLgnJ0G/cloth-config-11.1.106-forge.jar","filename":"cloth-config-11.1.106-forge.jar","primary":true,"size":1168375,"file_type":null}],"dependencies":[],"game_versions":["1.20","1.20.1"],"loaders":["forge"]},"members":[{"team_id":"z9omIQMN","user":{"id":"1Hsaf75m","username":"shedaniel","name":null,"avatar_url":"https://avatars2.githubusercontent.com/u/34910653?v=4","bio":"yes hello world i code java","created":"2020-10-26T15:37:45.882173Z","role":"developer"},"role":"Owner","ordering":0}],"update_version":null,"incompatible":true},"file_name":"cloth-config-11.1.106-forge.jar"},"mods\\TerraFirmaCraft-Forge-1.20.1-0.0.0-indev.jar":{"sha512":"f7edd5add4d9b60b5517c2af41a9ceea83872ab3e7499d21741b4f6bea7488de627fb1f5a053abf27c55095b932cddfc994f32681feca13d7c2608c2331e5c31","disabled":false,"metadata":{"type":"inferred","title":"TerraFirmaCraft","description":"TerraFirmaCraft - The Next Generation","authors":["AlcatrazEscapee"],"version":"${file.jarVersion}","icon":null,"project_type":"mod"},"file_name":"TerraFirmaCraft-Forge-1.20.1-0.0.0-indev.jar"},"mods\\ferritecore-6.0.0-forge.jar":{"sha512":"e78ddd02cca0a4553eb135dbb3ec6cbc59200dd23febf3491d112c47a0b7e9fe2b97f97a3d43bb44d69f1a10aad01143dcd84dc575dfa5a9eaa315a3ec182b37","disabled":false,"metadata":{"type":"modrinth","project":{"id":"uXXizFIs","slug":"ferrite-core","project_type":"mod","team":"2JhABx1f","title":"FerriteCore","description":"Memory usage optimizations","body":"This mod reduces the memory usage of Minecraft in a few different ways. A high-level technical description of the changes is available [here](https://github.com/malte0811/FerriteCore/blob/main/summary.md).\n\nThe amount of memory saved will depend on the pack. In version 2.5.9 of [All Of Fabric 3](https://www.curseforge.com/minecraft/modpacks/all-of-fabric-3) it reduces the RAM usage (heap size) from 1,792 MB to 984 MB. For comparison the same setup with Hydrogen instead of FerriteCore uses 1,335 MB. \nThese values were measured after generating a world with a fixed seed and waiting for two minutes.\nThe project picture is a cropped version of [this](https://commons.wikimedia.org/wiki/File:Magnetic-core_memory,_at_angle.jpg) picture.\n\n### FAQ\n\n#### Should I install this on the server or just on the client?\n\nSome optimizations are client-side only, but there are some rather high-impact optimizations that are relevant on the server too. So you should install it on both sides.\n\n#### Is this compatible with [other mod]?\n\nMost likely yes. The only exception is Hydrogen, which is compatible with all recent FerriteCore versions *on Minecraft versions where Hydrogen is officially released*. This means that 1.18+ builds are not compatible with Hydrogen, since it has been officially archived and won't receive any releases on these versions.","published":"2021-04-03T07:04:43.971189Z","updated":"2023-06-08T18:25:55.263079Z","client_side":"optional","server_side":"optional","downloads":1240154,"followers":3199,"categories":["optimization","utility"],"additional_categories":[],"game_versions":["1.16.5","1.17","1.17.1","1.18","1.18.1","1.18.2","1.19","1.19.1","1.19.2","1.19.3","1.19.4","1.20","1.20.1"],"loaders":["fabric","forge","quilt"],"versions":["GeyB7u1y","Mc6hHgQU","hjsymojR","LG5zF5LP","5rLOvzfo","2XHUVaPQ","HjttFjoa","JQl5JoCm","oP38VFTJ","1FrNtQTK","OhmGV4Hp","c9p5gemS","FMdIAsIi","OhuTVpQH","776Z5oW9","AvWRJcqx","zkszypjI","7epbwkFg","xyl3NViI","fwozdl4o","fs07zE6w","6gwDuh90","3UkWIj4a","kwjHqfz7","CtXsUUz6","GHcKib6J","YrvjR5sX","RbR7EG8T","zI3uKvrU","l9p9zXTR","FCnCG6PS","ULSumfl4"],"icon_url":"https://cdn.modrinth.com/data/uXXizFIs/icon.jpg"},"version":{"id":"ULSumfl4","project_id":"uXXizFIs","author_id":"cXzLZ8YY","featured":false,"name":"6.0.0 (Forge)","version_number":"6.0.0-forge","changelog":"- Update to Minecraft 1.20","changelog_url":null,"date_published":"2023-06-08T18:26:31.366709Z","downloads":28342,"version_type":"release","files":[{"hashes":{"sha1":"5c090bf8e882c0ccb9dcdb4afe712fa430e03a02","sha512":"e78ddd02cca0a4553eb135dbb3ec6cbc59200dd23febf3491d112c47a0b7e9fe2b97f97a3d43bb44d69f1a10aad01143dcd84dc575dfa5a9eaa315a3ec182b37"},"url":"https://cdn.modrinth.com/data/uXXizFIs/versions/ULSumfl4/ferritecore-6.0.0-forge.jar","filename":"ferritecore-6.0.0-forge.jar","primary":true,"size":122786,"file_type":null}],"dependencies":[],"game_versions":["1.20","1.20.1"],"loaders":["forge"]},"members":[{"team_id":"2JhABx1f","user":{"id":"cXzLZ8YY","username":"malte0811","name":null,"avatar_url":"https://avatars.githubusercontent.com/u/10406104?v=4","bio":null,"created":"2021-01-29T18:51:24.633575Z","role":"developer"},"role":"Owner","ordering":0}],"update_version":null,"incompatible":true},"file_name":"ferritecore-6.0.0-forge.jar"},"mods\\notenoughanimations-forge-1.6.4-mc1.20.jar":{"sha512":"32624b2a345d4f4d53b3bf7efc5680f43df09f95d497075fc6d61c806cbd056d76f48e51f05c7e60c4b01885c3239daecb0292616bf39a7d7e0de1d29a76dba8","disabled":false,"metadata":{"type":"modrinth","project":{"id":"MPCX6s5C","slug":"not-enough-animations","project_type":"mod","team":"Eayl8ao3","title":"Not Enough Animations","description":"Bringing first-person animations to the third-person","body":"# Not Enough Animations \n\nThis mod brings a lot of missing third-person animations from the first-person or modifies them to be better representative to how they should look like or look like in the first-person. This mod was created as an expansion for the [First-Person Mod](https://www.curseforge.com/minecraft/mc-mods/first-person-model), but works completely on its own and is fully vanilla/3rd party server compatible(since it's all just visual).\n\n[![Shockbyte](https://tr7zw.dev/img/shockbyte_black.png)](https://shockbyte.com/partner/tr7zw)\n\n### All features can be enabled/disabled individually in an ingame config screen! (Accessible via the ModList/ModMenu)\n\nAdded/fixed animations:\n\n- Eating/Drinking\n\n![](https://tr7zw.dev/nea/eating.png)\n![](https://tr7zw.dev/nea/drinking.png)\n\n- Maps(Yes you can see the map content if your client has been sent the map by holding it once/seeing it in an item frame)\n\n![](https://tr7zw.dev/nea/maps1.PNG)\n![](https://tr7zw.dev/nea/maps2.PNG)\n\n- Shield placement(you block where you look, not where the body is rotated to. So this will rotate the body with the head while blocking)\n\n![](https://tr7zw.dev/nea/shield.png)\n\n- Don't show items during two-handed animations(Hide the offhand item while using a bow/crossbow)\n\n![](https://tr7zw.dev/nea/twoHands.PNG)\n\n- Boat rowing(No longer sitting there and staring at the self-moving Paddles)\n\n![](https://tr7zw.dev/nea/boat.png)\n\n- Horses(at least act like you're holding the reins)\n\n![](https://tr7zw.dev/nea/horse.png)\n\n- Looking at a compass/clock(this one is actually more eye candy for the First-person Mod to make the compass better usable, but won't hurt outside of that, can be modified in the config file to extend to more items)\n\n![](https://tr7zw.dev/nea/compass.PNG)\n\n- Ladder/climbing animation\n\n![](https://tr7zw.dev/nea/ladder.gif)\n\n- Crawling animation, replacing the swimming one while out of water\n\n![](https://tr7zw.dev/nea/crawling.gif)\n\n- Smooth arm movement and transitions\n\n![](https://tr7zw.dev/nea/smootharms.gif)\n","published":"2022-05-25T10:21:03.610236Z","updated":"2023-06-08T14:44:21.919968Z","client_side":"required","server_side":"unsupported","downloads":606851,"followers":1504,"categories":["adventure","decoration"],"additional_categories":[],"game_versions":["1.17","1.17.1","1.18","1.18.1","1.18.2","1.19","1.19.1","1.19.2","1.19.3","1.19.4","1.20","1.20.1"],"loaders":["fabric","forge"],"versions":["ufNWfIaS","C44WSsJJ","Y0NYcd2Z","KTGfH3KC","CioYPb6W","K6cf9eax","LUGyS5vg","TGtlRlUI","74jIxq2r","KZmMUPjz","C4uW6hHV","kE3Ii6Ew","m0POSPSz","LxB5Tojq","2TKqy76Z","V5HfYVtW","KLXLxD01","XFJeh7MA","QWDLTMMa","6auoqhMp"],"icon_url":"https://cdn.modrinth.com/data/MPCX6s5C/icon.png"},"version":{"id":"QWDLTMMa","project_id":"MPCX6s5C","author_id":"Qnt13hO8","featured":true,"name":"1.6.4-1.20 - Forge","version_number":"1.6.4-1.20","changelog":"Update to 1.20\r\n\r\n**Full Changelog**: https://github.com/tr7zw/NotEnoughAnimations/compare/1.6.4-1.19.4...1.6.4-1.20","changelog_url":null,"date_published":"2023-06-08T14:39:38.309627Z","downloads":22959,"version_type":"release","files":[{"hashes":{"sha512":"32624b2a345d4f4d53b3bf7efc5680f43df09f95d497075fc6d61c806cbd056d76f48e51f05c7e60c4b01885c3239daecb0292616bf39a7d7e0de1d29a76dba8","sha1":"47099dc3b5c339ce918bd06523bae22f59c5c65a"},"url":"https://cdn.modrinth.com/data/MPCX6s5C/versions/QWDLTMMa/notenoughanimations-forge-1.6.4-mc1.20.jar","filename":"notenoughanimations-forge-1.6.4-mc1.20.jar","primary":true,"size":411036,"file_type":null}],"dependencies":[],"game_versions":["1.20","1.20.1"],"loaders":["forge"]},"members":[{"team_id":"Eayl8ao3","user":{"id":"Qnt13hO8","username":"tr7zw","name":"tr7zw","avatar_url":"https://cdn.modrinth.com/user/Qnt13hO8/icon.png","bio":"https://tr7zw.dev/","created":"2022-05-04T13:41:52.033912Z","role":"developer"},"role":"Owner","ordering":0}],"update_version":null,"incompatible":true},"file_name":"notenoughanimations-forge-1.6.4-mc1.20.jar"},"mods\\embeddium-0.1.4+mc1.20.1.jard":{"sha512":"2f3890a5e467b956beb2672b4b8699d0400f51739ceed94b69c5640a849467377b47a40f5607aaa0b627fcdd76dcd4480fe28ab24b2e471eb97cfef212008aa7","disabled":false,"metadata":{"type":"modrinth","project":{"id":"sk9rgfiA","slug":"embeddium","project_type":"mod","team":"4VBpO7y2","title":"Embeddium","description":"A reliable fork of Sodium for Forge that focuses on compatibility","body":"# Embeddium\n\nEmbeddium is an unofficial fork of Sodium based off Rubidium, with additional changes and bugfixes to integrate it with the Forge modding\necosystem.\n\nEmbeddium is **not supported by CaffeineMC**. Do not report issues encountered with it to their bug tracker or in their Discord. I have my own [Discord server](https://discord.gg/rN9Y7caguP) for my mods if you would like to discuss, provide suggestions, etc.\n\n## Compatibility\n\nGenerally Embeddium should work out of the box with many more mods than Rubidium. However, given the scope of changes\nit makes to the renderer, it may have compatibility issues with some mods that use advanced rendering. Please open an\nissue if you experience problems. Some issues may require changes to be made in the other mod but it's good to have\nthem documented.\n\nThe [GitHub wiki page](https://github.com/embeddedt/embeddium/wiki/Compatibility#known-incompatibilities) has a somewhat-maintained list of known incompatibilities.\n\n**OptiFine is not supported** for obvious reasons.\n\n## Shaders\n\nFor now, please continue to use [Oculus](https://www.curseforge.com/minecraft/mc-mods/oculus) if you want shader support.\nNote that Oculus is somewhat buggy, and your experience will probably be more stable without it. I recommend removing\nOculus if you do not need shaders.\n\n## Credits\n\n* JellySquid & the CaffeineMC team, for making Sodium in the first place, without which this project would not be possible\n* Asek3, for the initial port to Forge\n* XFactHD, for providing a list of gamebreaking Rubidium issues to start this work off, and for testing early builds\n* Pepper, for their invaluable assistance with getting Forge lighting to work on Sodium 0.5\n\n## License\n\nPlease refer to the [LICENSE](https://github.com/embeddedt/embeddium/blob/16.x/forge/LICENSE) file. Embeddium is LGPL-3.0 but there is a very small amount of code from Forge that remains LGPL-2.1.\n","published":"2023-09-01T13:13:55.152605Z","updated":"2023-09-09T00:36:01.494386Z","client_side":"required","server_side":"unsupported","downloads":1394,"followers":34,"categories":["optimization"],"additional_categories":[],"game_versions":["1.16.5","1.18.2","1.19.2","1.20.1"],"loaders":["forge"],"versions":["OY3WMRon","hAX6sZDw","CaCf4EvP","DJkrzyL1","UIKYhj3g","D2QgOs8k","wgTSyLdT","n92q1xDm","x2iQDsSn","w5i6C5rA","VYx7wJuh","BPwa1a0f","Z0owWEPo","LRqPQ9p6"],"icon_url":"https://cdn.modrinth.com/data/sk9rgfiA/d072b86975d2193782912f0e9ec44fffc8c0f181.png"},"version":{"id":"LRqPQ9p6","project_id":"sk9rgfiA","author_id":"6bGskxLV","featured":false,"name":"[1.20.1] Embeddium 0.1.4","version_number":"0.1.4+mc1.20.1","changelog":"[Changelog not implemented yet.]","changelog_url":null,"date_published":"2023-09-09T00:36:02.361187Z","downloads":757,"version_type":"release","files":[{"hashes":{"sha1":"2610722f25189e0ffea7f88d2ebc4a1b8ac3de90","sha512":"2f3890a5e467b956beb2672b4b8699d0400f51739ceed94b69c5640a849467377b47a40f5607aaa0b627fcdd76dcd4480fe28ab24b2e471eb97cfef212008aa7"},"url":"https://cdn.modrinth.com/data/sk9rgfiA/versions/LRqPQ9p6/embeddium-0.1.4%2Bmc1.20.1.jar","filename":"embeddium-0.1.4+mc1.20.1.jar","primary":true,"size":716375,"file_type":null}],"dependencies":[{"version_id":null,"project_id":"4ZqxOvjD","file_name":null,"dependency_type":"incompatible"}],"game_versions":["1.20.1"],"loaders":["forge"]},"members":[{"team_id":"4VBpO7y2","user":{"id":"6bGskxLV","username":"embeddedt","name":null,"avatar_url":"https://avatars.githubusercontent.com/u/42941056?v=4","bio":"Minecraft performance modder.","created":"2022-02-28T13:41:58.687703Z","role":"developer"},"role":"Owner","ordering":0},{"team_id":"4VBpO7y2","user":{"id":"TEZXhE2U","username":"jellysquid3","name":"JellySquid","avatar_url":"https://avatars0.githubusercontent.com/u/1363084?v=4","bio":"Professional idiot at day, maniac programmer by night.","created":"2021-01-03T00:49:18.373336Z","role":"developer"},"role":"Upstream Author","ordering":0},{"team_id":"4VBpO7y2","user":{"id":"OGBzw79h","username":"Asek3","name":null,"avatar_url":"https://avatars.githubusercontent.com/u/64613894?v=4","bio":null,"created":"2022-07-02T09:26:04.535310Z","role":"developer"},"role":"Upstream Author","ordering":0}],"update_version":null,"incompatible":true},"file_name":"embeddium-0.1.4+mc1.20.1.jard"},"mods\\gtceu-forge-1.20.1-1.0.11.b.jar":{"sha512":"7f2551b3063eff1824f320277bb47401c0c5eb66e4c502892625080d0587dbfe950e2c005b58bbce8d6de09ed872ad44ac0be0f5bb57513bf9e6b35aa2a7045d","disabled":false,"metadata":{"type":"modrinth","project":{"id":"7tG215v7","slug":"gregtechceu-modern","project_type":"mod","team":"tCwU6H70","title":"GregTechCEu Modern","description":"Modern GregTech based on GTCEu 1.12.2.","body":"# GregTechCEu Modern\n\n\"Discord\"/\n\nGregTech based on Architectury for performing on Forge, Fabric, and ~~Quilt~~, simultaneously.\n\n
\n\n
\n\n\nGregTechCEu Modern is a mod which aims to based on GTCEu(1.12,2) to provide the ultimate GT experience in modern versions.\n\n## Different from 1.12\n\n* More consistent with higher versions of minecraft, e.g. raw ores, datapack for recipes and ore/fluid veins\n* Better performance makes later stages of GregTheh smoother\n* New textures, UI, built-in CTM\n* No need to install dependencies\n* More customization capabilities, custom UIs, custom machines, multiblocks, etc\n\n## A (very, VERY) brief list of some new features (from GTCEu):\n\n* Greatly improved performance and optimization from GTCE. Most users should enjoy improved RAM usage, FPS and TPS\n* Fixed many GTCE bugs (invisible blocks, infinite amps)\nImproved player experience and QoL. Example: Different stone types of ores don't clog player inventories\n* Completely reworked and improved fluid pipes and energy cables\n* New item pipe system with huge throughputs and configurable logistics\n* World generation improvements. Better performance, rebalanced ores. New virtual fluid veins for harvesting\n* New content integrated from Shadows of Greg, Gregicality, GT5 Unofficial, TecTech, Nomifactory, GT New Horizons, GT IMPACT and more\n* Fancy rendering effects including emissive textures and bloom\n* Content added at every single tier of the game. No stone left unturned, this is a completely different GregTech experience from GTCE\n\nAnd many, many, many more things...\n\n## Dev Q&A\n* [Todo-List](https://github.com/GregTechCEu/GregTechCEu-1.19/issues/125) for potential contributors who are interested in this project\n* [Wiki](https://github.com/GregTechCEu/GregTechCEu-1.19/wiki/Dev-Q&A) illustrates common questions and answers related to development\n* [Discord](https://discord.gg/gregtech-ce-unofficial-701354865217110096) The project is also under continuous development with a new version 1.20.1 coming soon. We are looking for developers to join us\n\n","published":"2023-07-18T13:07:50.813907Z","updated":"2023-09-09T10:41:37.038242Z","client_side":"required","server_side":"required","downloads":4774,"followers":34,"categories":["technology"],"additional_categories":["decoration","equipment","storage","utility","worldgen"],"game_versions":["1.19.2","1.20.1"],"loaders":["fabric","forge"],"versions":["NQnEryLD","hMmVE90n","OML9PD4O","NkpOhLnr","XFgTiOE3","N207j75I","NitmGtEx","TsF4QULg","z4geZ2Cq","B9GQJvrv","AwbccqqE","TOYIlPEk","9v1TqFRY","F4ydv9lW","M2kkuyJu","TSMZkR5e","FVycdQ0A","LFyNtzmc","pkBkvM9j","Tq1yTaTi","k4EUVaZC","qbYMJcLQ","IrdnTvdz","HTiYIb2m","r6FPJgn7","hPhuh0SO","aAZ81Kef","zV8d5wnX","fFXPdPwm","9Lsdxafu","vcZm4mZW","kbCchi67","oVkWYrzo","Icy9tsfo","eLgIDBBe","Ocvv9CxB","HVZeU5f5","YhC8p6F5","mclmtA7e","yvDX3Vbk"],"icon_url":"https://cdn.modrinth.com/data/7tG215v7/b1920d915c87890d82debaef00944997df90d808.png"},"version":{"id":"yvDX3Vbk","project_id":"7tG215v7","author_id":"e4DjYmpa","featured":true,"name":"GregTechCEu 1.20.1-1.0.11.b-forge","version_number":"mc1.20.1-1.0.11.b-forge","changelog":"# ChangeLog\n\n* fix super chest transfer\n* fix the locking bug of super tank\n* fix crash when the fluid texture is missing\n* fix super chest/tank model offset when they are connected\n* fix bio chaff recipe eut\n* fix ldlib fabric transfer\n* fix jei crash when the slot size updated (1.20)\n* fix wire overlay icon error\n* fix distinct buses button is replaced by circuit select button in input bus\n* fix wire lose more power than expected\n* fix Drum's fluid can be duplicated\n* fix emi rendering + interaction\n* fix fluid bucket interaction (1.20)\n* fix battery buffer dropping","changelog_url":null,"date_published":"2023-09-09T10:41:39.936424Z","downloads":238,"version_type":"alpha","files":[{"hashes":{"sha1":"50a96a48c4e6de59e12554d54950097a8e8eb588","sha512":"7f2551b3063eff1824f320277bb47401c0c5eb66e4c502892625080d0587dbfe950e2c005b58bbce8d6de09ed872ad44ac0be0f5bb57513bf9e6b35aa2a7045d"},"url":"https://cdn.modrinth.com/data/7tG215v7/versions/yvDX3Vbk/gtceu-forge-1.20.1-1.0.11.b.jar","filename":"gtceu-forge-1.20.1-1.0.11.b.jar","primary":true,"size":10487934,"file_type":null},{"hashes":{"sha512":"79e39886008cb3777912442f534a6ce9d6922eddc1d64a2c973c51daa7df5fdc77de5e4cc7b5c327fc04e99a33aef3e1bec65e868be5fa4353401d91c3551044","sha1":"c09560da96fc771bbec884c0d4ddaab8f75bde6f"},"url":"https://cdn.modrinth.com/data/7tG215v7/versions/yvDX3Vbk/gtceu-forge-1.20.1-1.0.11.b-dev-shadow.jar","filename":"gtceu-forge-1.20.1-1.0.11.b-dev-shadow.jar","primary":false,"size":7823129,"file_type":null},{"hashes":{"sha1":"09963aeb699b2f69e18e6847106b88588da95a7e","sha512":"c3ed4a6affa131f7340e989c82f4a6c7fa0d9672b4f5afd1820ae5f7dedbee8aebce21ce8935ee2ee1c2fdedb7adc3f99dcd001c5dece2f6c0dd3d535cfd08ce"},"url":"https://cdn.modrinth.com/data/7tG215v7/versions/yvDX3Vbk/gtceu-forge-1.20.1-1.0.11.b-sources.jar","filename":"gtceu-forge-1.20.1-1.0.11.b-sources.jar","primary":false,"size":6716631,"file_type":null}],"dependencies":[],"game_versions":["1.20.1"],"loaders":["forge"]},"members":[{"team_id":"tCwU6H70","user":{"id":"J47I5fLr","username":"Serenibyss","name":"Dane Strandboge","avatar_url":"https://avatars.githubusercontent.com/u/10861407?v=4","bio":"","created":"2023-03-16T22:48:39.817605Z","role":"developer"},"role":"Member","ordering":0},{"team_id":"tCwU6H70","user":{"id":"e4DjYmpa","username":"KilaBash","name":"KilaBash","avatar_url":"https://cdn.modrinth.com/user/e4DjYmpa/eefafd0fb8abeb3bbd07b4852f4e88dc549b3821.jpeg","bio":null,"created":"2023-06-08T02:09:07.899363Z","role":"developer"},"role":"Owner","ordering":0},{"team_id":"tCwU6H70","user":{"id":"QRWcMJqD","username":"screret","name":null,"avatar_url":"https://avatars.githubusercontent.com/u/68943070?v=4","bio":null,"created":"2022-11-18T18:10:08.841054Z","role":"developer"},"role":"Member","ordering":0}],"update_version":null,"incompatible":true},"file_name":"gtceu-forge-1.20.1-1.0.11.b.jar"},"mods\\oculus-mc1.20-1.6.4.jard":{"sha512":"3afca1b461248f2b87fe9fc534660488e5bd7dc9d24d1e2d1a46eabdb28c5dcbae9906d4392ee678f7c6f6e4dcb2b694a6ea7765b57e0a3abd4122674a5152cd","disabled":false,"metadata":{"type":"modrinth","project":{"id":"GchcoXML","slug":"oculus","project_type":"mod","team":"zFcUWaYx","title":"Oculus","description":"Unofficial Fork of \"Iris\", made to work with FML","body":"Unofficial Fork of \"Iris\", made to work with FML\n\nFeatures\n\n
\n Features\n\n- Performance. Oculus should fully utilize your graphics card when paired with optimization mods like Rubidium.\n- Mod compatibility. Oculus should make a best effort to be compatible with modded environments.\n- Backwards compatibility. All existing ShadersMod / OptiFine shader packs should just work on Iris, without any modifications required.\n- A well-organized codebase. I'd like for working with Iris code to be a pleasant experience overall.\n
\n\n \nPlease, don't report Oculus' issues to the official Iris Github.","published":"2022-07-02T10:02:12.932789Z","updated":"2023-09-08T12:55:22.017644Z","client_side":"required","server_side":"unsupported","downloads":152587,"followers":178,"categories":["decoration","optimization"],"additional_categories":[],"game_versions":["1.16.5","1.18.2","1.19","1.19.1","1.19.2","1.19.4","1.20","1.20.1"],"loaders":["forge"],"versions":["Ti8TJ58B","rhj7Nexq","sl4bJ9He","E7vz516D","ZjN0wxRC","rR8ZrdCw","zxDW8JVW","9KaQ8Nei","YM91QDuZ","A6aEs4bJ","nApEYsZi","uNDmEO4n","zuJ1306r","KyxZ315g","mGoSRprD","Af4brqYV","HxUtDCCe","UynWw2df","Uz28Wi1p"],"icon_url":"https://cdn.modrinth.com/data/GchcoXML/icon.png"},"version":{"id":"HxUtDCCe","project_id":"GchcoXML","author_id":"OGBzw79h","featured":false,"name":"Oculus mc1.20-1.6.4","version_number":"1.20-1.6.4","changelog":"### Includes all Iris changes from 1.6 -> 1.6.4\n\n\n### Forge specific fixes:\n- Parity with Forge in block lighting\n- Added compatibility with Reforgium\n- Deleted NotEnoughCrashes warning screen (left only notice in crash-report)\n- Restored block lighting on 1.19.2 (SEUS PTGI and etc.)\n- Parity with Iris in jar naming","changelog_url":null,"date_published":"2023-06-10T19:00:03.861487Z","downloads":45513,"version_type":"release","files":[{"hashes":{"sha1":"33cecf7bcb17a4cbcb23aed1993771e73f1f9307","sha512":"3afca1b461248f2b87fe9fc534660488e5bd7dc9d24d1e2d1a46eabdb28c5dcbae9906d4392ee678f7c6f6e4dcb2b694a6ea7765b57e0a3abd4122674a5152cd"},"url":"https://cdn.modrinth.com/data/GchcoXML/versions/HxUtDCCe/oculus-mc1.20-1.6.4.jar","filename":"oculus-mc1.20-1.6.4.jar","primary":true,"size":2849391,"file_type":null}],"dependencies":[{"version_id":"iLEHOlRR","project_id":"4ZqxOvjD","file_name":null,"dependency_type":"required"}],"game_versions":["1.20","1.20.1"],"loaders":["forge"]},"members":[{"team_id":"zFcUWaYx","user":{"id":"OGBzw79h","username":"Asek3","name":null,"avatar_url":"https://avatars.githubusercontent.com/u/64613894?v=4","bio":null,"created":"2022-07-02T09:26:04.535310Z","role":"developer"},"role":"Owner","ordering":0}],"update_version":null,"incompatible":true},"file_name":"oculus-mc1.20-1.6.4.jard"},"mods\\architectury-9.1.12-forge.jar":{"sha512":"601931a281d2968c52433d6ae967f75aee655c118626a84e114bd6a6ed5fd8134df8bf379ff88d217b2befc953fc4ab55c8cd0d622b1186a9598c0080a400ded","disabled":false,"metadata":{"type":"modrinth","project":{"id":"lhGA9TYQ","slug":"architectury-api","project_type":"mod","team":"72qgsq9X","title":"Architectury API","description":"An intermediary api aimed to ease developing multiplatform mods.","body":"# Architectury API\n\nTalk to us on [Discord](https://discord.gg/C2RdJDpRBP)!\n\nAn intermediary api aimed to ease developing multiplatform mods.\n\n### What is Architectury API\n\nArchitectury API is an api to abstract calls to fabric api and forge api as both loader has different implementations of\nwhat can be perceived as the same thing.\n\nArchitectury API updates regularly, with new hooks and features. Currently contains over **90** events hooks, networking\nabstraction, loader calls abstraction, game registry abstraction and an easy to use @ExpectPlatform annotation (Only\nworks on static methods).\n\n### Do I really need this API?\n\nArchitectury API is only one part of the architectury ecosystem, **Architectury Plugin** is the gradle plugin enabling\nall this multiplatform actions.\n\nArchitectury API is optional for projects built on architectury, you may create your architectury project with just\nArchitectury Plugin.\n\n### Advantages of Architectury\n\n- Open sourced\n- Less boilerplate for your multiplatform mod\n\n### Getting started with making multiplatform mods\n\nArchitectury Loom: https://github.com/architectury/architectury-loom (a fork of Fabric Loom adding multiplatform development capabilities)\n\nGradle Plugin: https://github.com/architectury/architectury-plugin (includes Architectury Injectables, for the `@ExpectPlatform` annotation)\n\nExample Mod: https://github.com/architectury/architectury-example-mod (a discontinued example mod using Architectury, if possible, use the templates instead)\n\nMod Templates: https://github.com/architectury/architectury-templates (a set of templates to get started using the Architectury toolchain)\n\n### Example: Usage of @ExpectPlatform\n![Exmaple of the @ExpectPlatform annotation, part of Architectury Injectables](https://camo.githubusercontent.com/78c68766affb70fbd88f9806e0e95f78765ec339448d7102065f2942be2b3215/68747470733a2f2f6d656469612e646973636f72646170702e6e65742f6174746163686d656e74732f3538363138363230323738313138383130382f3737363432383831343330393738353632302f756e6b6e6f776e2e706e673f77696474683d31313931266865696768743d343339)\n\n### Credits\n\nIn certain older versions, this library used to bundle typetools; you can find its license [here](https://github.com/jhalterman/typetools/blob/master/LICENSE.txt \"\")","published":"2020-11-16T10:40:17.116288Z","updated":"2023-09-13T17:19:22.574731Z","client_side":"optional","server_side":"optional","downloads":1097362,"followers":1431,"categories":["library"],"additional_categories":[],"game_versions":["1.16.5","1.17.1","1.18","1.18.1","1.18.2","1.19","1.19.1","1.19.2","1.19.3","1.19.3-pre2","1.19.4","1.19.4-pre3","1.19-pre1","1.20","1.20.1","1.20.2-pre1","1.20.2-pre2","1.20.2-pre4","1.20-pre1","1.20-pre5","22w42a","22w43a","22w44a","23w03a","23w13a","23w13a_or_b","23w18a","23w31a","23w32a","23w33a","23w35a"],"loaders":["fabric","forge","quilt"],"versions":["37aObfvM","gyNUAhlG","7mmmFMxV","5KJz05dn","sqJXhMX9","y6rBiuLE","Vato9b7P","2AmdiW2X","YLbgW3at","iKqu0dIa","qFpMNY9p","JD5CZqrY","Uw4OUIpO","468H7PSo","xUSAkGXZ","yekAuTSi","kuKyhx4a","puJaYNe6","G6roBkfe","vhKOfGGy","JKUpiAOI","BO9pG04t","RRYxZ2Ss","LOJZqt02","PNRrEweK","ol14cqSs","6rv0zlku","99woqoda","uwTqwrar","k2CSXNeY","TytFoW0P","BrPyk75r","nEcl9mv3","z3PYgL8v","k5Vk58yE","mjtvukk4","dQVFn0lZ","mpqJwBvP","2nlsuqT0","OcSwv7Bd","PnEz49HI","oNHPgHOo","7tOt6yBe","kgP2KvTa","syUiA6EY","Hf0Bau1j","4EmMThpo","J78onBNb","4QsePUaY","DrzwF8io","M2TFuKCj","LkkGgJ54","Abuha336","hVpjPVqq","ZTaMrj4V","d9yizwYu","cRQNpVkN","iSSjXP6I","e5A7iji0","QbVhURET","QdSI5Jqt","TfrGiL2j","fgbaICgI","4ExwBLcT","Vx9peY9q","LLWnlbqB","AqHbhvJG","D9WJXiDA","I0bwxQis","fmyLcSUR","fuvw3iT3","BDGIzrTW","m9TL0O0B","XNSp0pec","Vfjfgr3q","H2eskN4C","MJMK72lb","CQS8sEfa","DDO8yQYm","RvJHT8eh","A6mEgIbA","mYz4gdHP","99U08qrM","l5BQFxY6","yayVtVT2","lbZY1Knw","SvFEBbXa","juDpYJd0","JzXLfsj6","aNnwGOML","HINkYiBY","nq5xHPXL","76Z4FAQ0","BCLEdiJm","GCR7RG35","JCUL4KKt","Qg9loogH","foPbHoIn","TZRm0P23","ZrvfXtKK","yaTUjhVv","xjWpId6m","cH9PCvfY","rJ54rLqX","FkwCidMg","Dlcr87N4","hFLxuJ0N","KE5bu0Vd","tXIP7YPz","MSHtHE4s","iIYfuRMT","i6EVpCCY","lvNmFud9","PbE00gCi","MGP3b9Aq","d5oFBHkM","umK9Amrq","ejJFmhZW","PEKDmPIQ","ZZxvV3Kl","9yZyQCYh","4QgrcQn8","sylbo6YH","JD6EmQHI","Hl08ZTHo","wkQeBjBR","dcM46wLr","SaBmdMXf","WFvj4t0k","Z7iWDzqB","s1gmP0Q3","1eob8ZdG","uhEeGdaK","41RubmTw","2xqs1Y6b","v3rn2fDT","wafgwqUm","xXsDyf0B","alc70oBu","GEBcq08y","1hOCMZsg","VwpnDGLt","ketja3QP","sGPVpzLh","9VVWBhOe","YiYBpQpv","OrdDd9xt","YxX289mS","I0TW1RGi","BmkZHo8Y","tJBAMkGO","7vxxSNtV","XZrvAVVY","SWry8g5q","6hcOpiuA","Kwuu4O4w","tJGqxo3S","LjNaLvHD","97NYBivp","gP2XH9Oe","gcCtfIqf","MDMnIYXn","fHBKIXLG","lh8TNghT","XXGqoxBe","ppDF7bGm","Xb48U4dI","oGBEjb15","NtVaa36c","jHxM99iS","ZBfefNWq","a9f986RP","XV72M5Gg","w5Kw8FAN","Z6666f4P","ScYnvqdx","Zw57dVyl","j5zDzQqi","o069zrDa","DIw2YTZ2","H3InwdRP","aQu6FcPv","HoIJp48v","ns7Xs1B6","eIZS4sYy","62fhHjWH","cysqWrDN","OFLHUcGo","NxbWyaxs","lReYANwU","7zJ2DJuN","jSGDiM9H","QNVGxVoq","7SbYSIdC","TWylwR7P","ON7CwM6M","6bcAfgt2","8y4xVR6z","8tNf9Wq9","5VA4z5O5","Xisp7QmU","Sbew3kXe","gyJ7kDpb","Ock52JGW","94pDo4Mg","NyIvjlpf","UWacXu6I","cSMWX5mK","msOhmxZv","tN1jacer"],"icon_url":"https://cdn.modrinth.com/data/lhGA9TYQ/icon.png"},"version":{"id":"gyJ7kDpb","project_id":"lhGA9TYQ","author_id":"OQodw31Z","featured":false,"name":"[Forge 1.20(.1)] v9.1.12","version_number":"9.1.12+forge","changelog":"## Architectury v9.1.12 for 1.20(.1)\nUpdated at **2023-07-25 02:56**.\n[Click here for changelog](https://www.github.com/architectury/architectury/commits/1.20)\n- Fix #423","changelog_url":null,"date_published":"2023-07-25T02:56:38.816300Z","downloads":37165,"version_type":"release","files":[{"hashes":{"sha1":"49fc332e52027845caaa0098289dc9059b8eb010","sha512":"601931a281d2968c52433d6ae967f75aee655c118626a84e114bd6a6ed5fd8134df8bf379ff88d217b2befc953fc4ab55c8cd0d622b1186a9598c0080a400ded"},"url":"https://cdn.modrinth.com/data/lhGA9TYQ/versions/gyJ7kDpb/architectury-9.1.12-forge.jar","filename":"architectury-9.1.12-forge.jar","primary":true,"size":567579,"file_type":null}],"dependencies":[],"game_versions":["1.20","1.20.1"],"loaders":["forge"]},"members":[{"team_id":"72qgsq9X","user":{"id":"1Hsaf75m","username":"shedaniel","name":null,"avatar_url":"https://avatars2.githubusercontent.com/u/34910653?v=4","bio":"yes hello world i code java","created":"2020-10-26T15:37:45.882173Z","role":"developer"},"role":"Owner","ordering":0},{"team_id":"72qgsq9X","user":{"id":"OQodw31Z","username":"MaxNeedsSnacks","name":"Max","avatar_url":"https://avatars3.githubusercontent.com/u/12750501?v=4","bio":null,"created":"2021-01-18T20:56:26.016118Z","role":"developer"},"role":"Author","ordering":0},{"team_id":"72qgsq9X","user":{"id":"5vnjU0nQ","username":"Juuz","name":null,"avatar_url":"https://avatars0.githubusercontent.com/u/6596629?v=4","bio":null,"created":"2020-10-30T09:59:52.307285Z","role":"developer"},"role":"Toolchain Maintainer","ordering":0}],"update_version":null,"incompatible":true},"file_name":"architectury-9.1.12-forge.jar"},"mods\\voicechat-forge-1.20.1-2.4.24.jar":{"sha512":"46c9022fd1d04c7aed45f61e92192761237668ec371f74eab9c620d3fd4b0c2c6693382f74747118b0a9a6eaffd0cf05d977e680c77647bf12e49374a3d3ed26","disabled":false,"metadata":{"type":"modrinth","project":{"id":"9eGKb6K1","slug":"simple-voice-chat","project_type":"mod","team":"O9wOHL2n","title":"Simple Voice Chat","description":"A working voice chat in Minecraft!","body":"[Modrinth](https://modrinth.com/mod/simple-voice-chat)\n|\n[CurseForge](https://legacy.curseforge.com/minecraft/mc-mods/simple-voice-chat)\n|\n[CurseForge Bukkit](https://legacy.curseforge.com/minecraft/bukkit-plugins/simple-voice-chat)\n|\n[Spigot](https://www.spigotmc.org/resources/simple-voice-chat.93738/)\n|\n[Hangar](https://hangar.papermc.io/henkelmax/SimpleVoiceChat)\n|\n[Discord](https://discord.gg/4dH2zwTmyX)\n|\n[Wiki](https://modrepo.de/minecraft/voicechat/wiki)\n|\n[FAQ](https://modrepo.de/minecraft/voicechat/faq)\n|\n[Credits](https://modrepo.de/minecraft/voicechat/credits)\n|\n[API](https://modrepo.de/minecraft/voicechat/api)\n\n# Simple Voice Chat\n\nA proximity voice chat for Minecraft.\nYou can choose between push to talk (PTT) or voice activation.\nThe default PTT key is `CAPS LOCK`, but it can be changed in the key bind settings.\nYou can access the voice chat settings by pressing the `V` key.\n\nThere is a variety of [addons](https://modrepo.de/minecraft/voicechat/addons) that offer additional features and functionalities.\n\n⚠️ **NOTE** This mod requires special setup on the server in order to work.\nPlease read the [wiki](https://modrepo.de/minecraft/voicechat/wiki/setup) for more information.\n\n

\n \n \n \n
\n Please join the Discord if you have questions!\n

\n\n## Downloads\n\n- [Fabric](https://modrinth.com/mod/simple-voice-chat/versions?l=fabric)\n- [Forge](https://modrinth.com/mod/simple-voice-chat/versions?l=forge)\n- [Bukkit/Spigot/Paper](https://modrinth.com/plugin/simple-voice-chat/versions?l=bukkit)\n- [Quilt](https://modrinth.com/mod/simple-voice-chat/versions?l=quilt)\n\n## Features\n\n- Push to talk\n- Voice activation\n- Proximity voice chat\n- Password protected group chats\n- [Opus codec](https://opus-codec.org/)\n- [RNNoise](https://jmvalin.ca/demo/rnnoise/) recurrent neural network noise suppression\n- OpenAL audio\n- Cross compatibility between Fabric, Forge, Quilt, Bukkit, Spigot and Paper\n- Compatibility with [ModMenu](https://modrinth.com/mod/modmenu) (Use [ClothConfig](https://modrinth.com/mod/cloth-config) for a better configuration UI)\n- Configurable push to talk key\n- Microphone test playback\n- Configurable voice distance\n- Whispering\n- Individual player volume adjustment\n- Microphone amplification\n- 3D sound\n- AES encryption\n- Audio recording with separate audio tracks\n- A powerful [API](https://modrepo.de/minecraft/voicechat/api)\n- Many [addons](https://modrepo.de/minecraft/voicechat/addons)\n\n## Icons\n\n| Icon | Description |\n|:------------------------------------:|-------------------------------------------------------|\n| ![](https://i.imgur.com/FZD3ohs.png) | You are talking |\n| ![](https://i.imgur.com/BJt2YAL.png) | You are whispering |\n| ![](https://i.imgur.com/lmN6ydy.png) | Player is talking |\n| ![](https://i.imgur.com/Felj73b.png) | Player is whispering |\n| ![](https://i.imgur.com/dI3pfmA.png) | Microphone muted |\n| ![](https://i.imgur.com/MZRBqra.png) | Voice chat disabled |\n| ![](https://i.imgur.com/Lv3K6tC.png) | Voice chat not connected
Voice chat not installed |\n\n## The GUI\n\nYou can open the voice chat GUI by pressing the `V` key.\nThis allows you to open the settings, group chats, mute yourself, disable the voice chat, start/stop a recording and hide all icons.\n\n![](https://i.imgur.com/TCCHTl8.png)\n\n### Group Chats\n\nGroup chats allow you to talk to players that are not in your vicinity.\nTo open the group chat interface, either press the group button in the voice chat GUI or just press the `G` key.\n\nTo create a new group, just type a name in the text field and press the button next to it.\n\n![](https://i.imgur.com/FihRdNd.png)\n\nCreating or joining a group will bring you into the group chat interface.\nYou will also see the heads of the group members in the top left corner of your screen.\nTalking players will be outlined.\nYou can disable these icons by pressing the third button from the left.\n\n![](https://i.imgur.com/ZVSfBms.png)\n\nPlayers that are not in a group will see a group icon next to your head, indicating that they can't talk to you.\n\nYou can invite players to your group chat by entering the command `/voicechat invite `.\n\n### Settings\n\nYou can access the voice chat GUI by pressing the `V` key and pressing the settings button.\n\nThis menu offers the ability to change the general voice chat volume and your microphone amplification.\nIn addition, there is the possibility to specify the recording and playback device.\n\nBy clicking the 'Enable microphone testing' button, you can hear your own voice and adjust the activation level of the voice activation.\n\n![](https://i.imgur.com/TMyfSYU.png)\n\n## Important Notes\n\nYou need to open a port on the server. This is port `24454` `UDP` by default.\nWithout opening this port, the voice chat will not work.\nThis port can be changed in the server config.\nMore information [here](https://modrepo.de/minecraft/voicechat/wiki/setup).\n\nThe voice chat is encrypted, but we don't guarantee the security of it. Use at your own risk!\n","published":"2021-11-15T12:29:48.239701Z","updated":"2023-09-13T17:09:05.823590Z","client_side":"required","server_side":"required","downloads":1130295,"followers":1455,"categories":["adventure","social","utility"],"additional_categories":[],"game_versions":["1.12","1.12.1","1.12.2","1.16","1.16.1","1.16.2","1.16.3","1.16.4","1.16.5","1.17","1.17.1","1.18","1.18.1","1.18.2","1.19","1.19.1","1.19.2","1.19.3","1.19.3-pre1","1.19.3-pre2","1.19.3-pre3","1.19.3-rc1","1.19.3-rc2","1.19.3-rc3","1.19.4","1.19.4-pre1","1.19.4-pre2","1.19.4-pre3","1.19.4-pre4","1.19.4-rc1","1.19.4-rc2","1.19.4-rc3","1.20","1.20.1","1.20.1-rc1","1.20.2-pre1","1.20.2-pre2","1.20.2-pre3","1.20.2-pre4","1.20-pre1","1.20-pre2","1.20-pre4","1.20-pre5","1.20-pre6","1.20-pre7","1.20-rc1","1.8.8","22w42a","22w43a","22w44a","22w45a","22w46a","23w03a","23w04a","23w05a","23w06a","23w07a","23w12a","23w13a","23w13a_or_b","23w14a","23w16a","23w17a","23w18a","23w31a","23w32a","23w33a","23w35a"],"loaders":["bukkit","fabric","folia","forge","neoforge","paper","purpur","quilt","spigot"],"versions":["a68GgwWQ","qInLVpvP","2zfnzZPY","wVje7BCE","MMUXNTu0","kTM5W4Ag","fZkeN3KH","1WB7OGks","Cm5WTwqx","XP3Bvpzv","tlFeShEJ","jOlCnu4M","TMkd5WzZ","odFQGz4w","T8l1OaYB","FZfL7ig6","fXmAp76W","hh4g4mKY","jmNzVeLO","U7Scsh27","PhXefJEH","gRQxhLvr","pannDqQc","tDZ6gDdx","rrAtbsCT","Brx8x8sM","X2lcpNhr","CLl9TgUB","4rJygbyA","Wxj02pl9","9ikmZlYA","gV5TIXIa","CpvbTOtM","PvkbYcIF","d7T14Tld","1yG5JvAW","MaMD1XsY","rK8oQ5DH","5h38xx72","y3larVdV","ehZIh1Ur","d6SM3x61","Ny6LsenR","qGcqJoZi","i69mQMFt","JVlRIMll","dKesVxbi","xelIljay","KLTwj7j5","j7zdEFNs","Tc13aa1k","lAcRGOqp","Ebl40ByV","gLcdThmV","4FSXoNdw","kNjVFvrc","1zh1c83J","IIkTgEDQ","QrUaxZbx","zoVkz695","5YGB8EXl","Dx9saNOi","a1JfCFeZ","WgC0RZyi","tJs1pCAe","PFWwJYb4","4vhaRbZY","CWARkdoN","EsaU9qNJ","CKAUyFW8","ulDJfFjs","E5I4SEkB","eki3bjBL","1taN8mtn","L8YMHkDF","hqYkJouV","lUupmzCM","pEAtFXcF","fG2bd9n4","NHvskD59","bvn32K93","8FnHIJFC","dLiDM0lJ","yvk07Bon","pXnrstYm","sGgXhfj1","84ZAgGYc","6pB886Fc","M9oAh7Eb","Qml1Pazg","ONqhNvFV","wAmpZM9i","K9L3zI9Q","DvXMvWl5","cyxUtFO0","v3VN5xUF","Kopnu9rV","HBcg3TCO","ro1EsDdu","oB6gIWFK","GV71RAeH","SQYWxG4C","CJbhWcNb","JM0Yoxf1","PxV3LYWO","Zxg01Ntl","yK5wjxta","6btNfccz","HqjP2Bbn","gZbmZByU","AM5URYtk","YaXUNzvW","6WN5Da3b","2xj30YIy","EE0zCb5T","p2R6ZqGr","Kcy8yEI4","n1gKBKPO","Te3uIlqL","60B3AcxF","ZP6qiEjn","lDHYuM3N","aexvigxs","k9r73UWv","A17UahWn","BEvTrY9e","LLie01CD","kgqcsEsP","3WnJrRnM","a9unuqCm","RfnrBZZv","jwuLS0Qo","oMfVwdpJ","Fpd7DvhG","jzGURoFS","KJH1Kopc","xauunnuc","4PPUe1g4","FH5q9OOA","yZKwB9Uk","OXquKrKw","jf2a6Do2","rChHxkYz","ZNrhuMhy","o2YbI7Eh","RLROdgHH","BMU3cVKu","ehaQfYVq","5eBdTWg0","cc3pVY3v","yS8N6ZXU","Sl3Qxmgq","7sh4S67C","dSvLJfDB","V8LgaSMa","D7EUjCLk","XbjoKXZL","uPYkQjz6","f0P4bZqy","6XM36i44","rzn7VSfZ","FfNNbqQl","OMvgIpOW","W2SOQdSE","vImdshfE","n3yumyfQ","qTJMu1nO","OCVs4QEi","it0IwF9X","8UVLLM3j","o6xb6x8K","uclNuaZW","WhXaFAsr","JPqNJyqX","AughfLs8","SODKaewA","G2n2Uh26","76qKtyVc","tI9r1Feb","zNkLYq77","gIrTvVIN","iMZws6dS","wZAOmVzE","mKtQOwNx","t8Zd0mB7","3xQLT4qs","TKuQl5lC","YYvdKo5g","WIdr8BMZ","LWhUMA80","UWBnMOdJ","73TONy6p","z2pdbeXj","DgCmCcR2","r0bEB9bH","YDyvBSgX","Z0zw6DbV","q8RCkspv","axEYT5yb","yrPoNnzk","wdoJlCs9","YDtVeNJa","t2zgo1BQ","sUW93e6W","CTkQBuJA","MumXv4My","6ka7bwQl","70xt82Cg","msTfI0hl","vxfPIHfK","YylpTIB0","bnjunHiE","b1WfQy20","5H7d0zQx","zpNigQfT","7qrrec4L","MHNf6pCB","ArZv6rfj","AlWuf8dT","lTip8vnK","9tklldDR","UfgzEmws","Gq2vvxEQ","nuX9d6FG","zYmxGCnD","NHK9sHfg","gYNo1tNg","Ah35LEGu","pOkzmGFM","U1Vescrh","biMq6xQS","kv8wz0jF","iUyOJeE8","WP9iegfO","4GhVHo5T","DNa7kVop","7LRIPiMa","viCJCqZv","MX7Yn79q","29hpXpbb","n9Ao3xPL","XMEDNUPv","siIJbE1D","b6S00j1H","UB5iCt2X","LUlnMGpJ","E01R5OUv","6JRNpY4e","sT5w7chq","ZcfjF5uv","2ph1vecE","w7dOBEZE","KaRM88jt","1KKOEm9o","6bzpUJBu","vYvRzHN5","dMQdzlOS","fTEOY9VF","otwl7qXB","lVSbBjMi","ox285ZhT","SF82yFVY","U83jm5A8","KjLXBqA1","lQ4N6SsU","6NQfDOZD","dg9OwkXs","brgbbuit","UUAbOrCd","skCygDOW","CFGhmFHL","wdtUgD3K","rdGdxpQY","tHZnuSqg","IO0J0SyU","60r69pVR","aQuivvbY","kgY7bUhW","1rSOa2Gv","tbjFoMlx","7wGDl2Nx","scXfSMOr","qwotpGek","5cpjIAIR","pL5dJUeC","ptROztOk","C5D3EkJ3","tiRhnaPg","3SPazklI","CcFrXpuc","BKhaMSiT","WbnJljlf","zeQI28Jn","MACFDfHW","EQQ3Ph49","tKTondTV","SZoow7rI","gzHxTKVj","zkU37cwD","oSEJKnkf","AQsy0EUP","RoW4tOsW","pckcaIc7","Abxhdnho","8qH8zrW4","DKEL9dyW","pC5s0RWz","3VWKOSFu","iAvubgWc","ls6ocxEY","QLSIXo6R","fivMY7Af","Mxrmv1Xk","JHjRBhoO","DzGQQDGK","vATBDANH","xxJgE8BO","6QJ2Scod","xaRcck19","uP9DiSyf","FfcvJn55","Yu92rO6C","HrYAgigy","qykDrhK5","GZy8xHZ3","UuVA043m","MDCC4LZk","S2GYwyxz","b0IrtlnW","1LACBzUs","UYbbcDF6","JQk4ao6v","HAm24DLp","gO5PQY6T","rgVUDkxC","xFPpmf5h","rGRvflN5","Qmkb5A4H","WQ88Rmwr","ySYmTWo3","I6mI6OeN","dmhT5CQ9","hYbqAX4q","az1VwwY3","Ph4M8vVr","YRYYChqz","IkSiL6sa","TV7wMBxT","2toRsysM","wPPCSxad","OyZEX5US","WKqADSbi","i69klTVZ","IixaA11c","GtXbv3fS","tm5PfK02","3HsSGC4Z","MOk6hMMV","Xjx8vmTA","jkq7IAd0","7ZStwdm3","XnDKmly0","eaRwKftF","KJqSzy6C","b8NlnipH","lRjwWNrZ","CkDZXpT5","qhzHCrFC","xTvjbKVQ","sXVAHHIX","rlzo7cSj","p42wypXT","JJreUQxb","bMLoS5Mo","owhezF5z","3goOBS45","IoPPwlWY","ZS9OpzpA","3jJ8TP32","qEbbgFv7","wRg0zbnj","TYN8vsX7","RiTcqFq1","9ywUTZCY","OwrHEVME","oPag3cau","VWj4mtlX","TZO9lzmQ","B7yp7Poi","3822Azin","uXSXSZ1x","HiK9NLR3","mWTCEsku","mwmOj2QM","ombkAocf","OUSOhED6","T5CAxN79","zVAME2Wi","Z7NcKuzh","54K52aKi","YVel1eJv","mefkGHbh","Nuy8uAoD","rqueStfn","c56FcBhh","SxY1yz0e","y86mBB9Q","5flypNDx","QnLA4Mth","vtdjcCIU","KSTZBh0m","UhOSj8YO","cG4us59N","DrQb2Dfe","BMvJ5Qij","OHcPJLxx","3kEZgjSi","GzAyrZXM","iTWGNq1f","cfDknKIG","yh5f4ab6","Gb3oogZ1","WZhhHrS2","Uz7xdv91","QYiX4ujO","lEbdoWzs","QyUqET2M","LeXgP9NY","Oens5iLT","vlChJdYK","4QjOprSY","mMLThJB4","jUmV6CUo","t3KSz0GR","4AkwmP43","Jptf1ShM","BwOgEOYb","J1yrmPaY","S8jxARyk","gJec6R5o","FOfLz4Ep","cYjYpKGC","gK22RPE7","l4XYwRVE","NgQGSkFK","rl7n26wi","r4ywm48l","yPATojcE","TdHOL96o","xxt6H6KG","kQbP3Ntm","zVYTKHob","hAzS4wts","cJ9WIFrs","YEck4uvP","RjLBB4W0","xWmSU7Cb","jb6aYgp4","SWoX2OjP","7ZESpDhQ","GtqlRNA6","uodzVP0q","qJfOuVGT","5a7i8QEr","KVaxwhTC","W7NBwWf5","xWcncKQz","eiJUDzAN","vF8PaXo7","26YAuFPw","AoZlvvq9","xziqzVYu","f3rnMOAy","amTR8cRa","W7pHC6Tv","rFULgZ7N","sOptr2y7","Pi2VjFQ5","7ehAhBvg","BwM77UUZ","qEuAqWJ1","Y4NYu36X","jphEzHkO","WtKXrhHF","DCgHdBA4","jU3Pdjxu","ClJ8ePwh","RrQPT8BM","k9Ul3POY","B5mLEftb","JBDfN50k","TcZ1PseK","8qYOTxSB","VBMJO9nu","j4GVfwQJ","nXp0c0sg","HO06NfqM","ySymCfib","euRdXW5s","8TlfrkMW","STRb9oNt","oKF5f5d0","yMrqIxSf","TsqprTYm","mXxzQU0R","EsVMkcwf","irPymVPG","udz7t3g8","ujSd5u2t","CiQgNe77","8O1ND9Jp","bsmAtyO5","5rA3zbip","4tPcxHOz","yaVPRjpO","XYlD8SRa","Le59p93E","8p57zcI1","R5zXJCs0","qcUaOg8o","8N08H5xj","76xU6eJC","rvrqlnYk","dEK382Rd","FtVXuDsk","d8QNQ2Vp","FVNRwn9x","pcCWPjsP","AZEjdMNf","wptu1MGi","MvyfJGkJ","hwrEwyqz","DDIPxnvp","t9SnWp3c","FDlFuUB3","KfLUPw8c","rhyi0Cjc","BbRUumLF","WrFgEpcp","zXJMBiOx","Qchb21r1","kwQsd5VZ","3gecV8fy","pIRkCOfp","Ihkr0yY5","tafpUkms","ywSc3s7d","ebnUNEuh","naJ4vlr8","QJcM3LM5","25SsDyKn","MgnttvBl","lCmSWcb0","woqyZ58j","3jtpOfqw","u3pVBlpU","vxnXPyv3","58Q1qKSL","Wx0Y2Wnu","3qoYyqsH","vK65MH8C","XRqD00T7","F0fr1NK5","wRnC4Uns","mAt2QkGd","fr9VIjNd","TVPv3vP8","FsFSudAc","T6i3YrNP","RDAzGbOa","QOsWvofn","jYO3nm3f","iT77zmK1","dHPXG5gw","bh8xHlmx","mnPw5bVV","qvF3bePa","PTdXZ57S","6PS1DeZj","6c5KrUSy","gmmCP0pN","Ui1sbJws","5B8Z7NsA","EviEHIbm","sfpdoozI","qkyAwUvq","OJZ2B2bD","EzFdvYsm","7KZTu3M9","psqUqr7v","qFnXTNzp","iHJvsreb","OqIy8fbF","HBiYMFjK","Cg4gISvx","OrMldSxN","5h6GRvG8","yupsEpOA","KwXPXlKI","CK4RVIdK","THndFk3u","2RUDX4l4","7KHZT0R3","64z2lZ3l","iY819UAN","dO9m00za","VsmjwBJV","IgIPdC3s","UFMaQn3E","s0hyOBK4","J5wijpnf","lK15nYA1","7v1XcYPa","TSFNdLC8","rfrxsAs7","iSLcTOCF","tZjNePSI","QTST0vVl","A1gphHYM","m8XUTn3b","iDfWQ0RL","5ju0QwkS","F6C1eSce","a5jrAzZU","D7lsb5A9","sISiDZrg","IKy08zNO","Uvz4QEyH","7BULlG3T","ySvcLNyJ","meGDAtS4","7tmySRgX","e7SAI8ft","YE8ZYXzn","ANMmd67g","bt4jIuhK","mdlBwGRT","1GwCydAY","A4upJcrb","UoKokQ0M","tDrJWkR0","gdb9hVFn","w6WCaPXi","6xlIIRmD","zdrGcCqo","D2J7dxIg","Tp7S2xoX","tYfD3g3o","rQYbR55Y","PI9EDhw6","p2rNDpgX","We4peEIE","4uJpormM","en9vUl48","Rk8nVCvN","9fnBn5IS","Fs99wEBs","YOw7LkVY","i6lTNpQ1","RHPocErC","qaycOrGH","lthaNSLn","CNcIm5Wr","HDbhxCmD","ucPZ0Zlk","iUJ8oxVy","jN03ENCf","G8Bv6OzK","dapDQlTE","J3KRgkVf","knsfNNIv","8irIYM7N","ikZuGWq0","3ROXtbhz","H008xHjt","DSCLNFj2","K8KbB4RV","PO7Rxyzv","FKGoeLU7","q4kyt2ar","wEYnMTdq","AhiFqewG","64MFHaO0","yoeKmXgR","MqeOVVBh","Oii0nmW7","KkvQ0hT9","Am7Afd8l","RTqTi9PB","3mhxktnw","2HcUazLU","drVzG6Y7","DL9zt8gd","aP9bMoEp","x5FBiwpj","NeHultSS","MdwR0Apf","dswLMQFh","MfYQHsh5","USwSNzvD","S0yCxhX1","TXUmE6ZX","FpmzQfDe","9orHeOej","AM14i2i2","CfpYmP4m","TjqDTzEK","ey8TpeYB","bUK4wGH1","yLJuTvmb","jbogbvo0","DQJZgdiw","LebD31bM","qCGtO8JL","zzUou8ba","mV8egSe8","LdWVn5DX","GDBE959Y","K4anOZDD","NSBUNV8T","iLW9xtDt","weK40RkB","DGaZGpgQ","neTrprWE","gnDq69th","nvYdhgWh","e8QBwL9w","sl3abGMn","1YWIncP3","Cx3uX8pP","IDUCmhud","tZTt8hCb","qVwE54Aj","uuNvBToj","MVLWMmUC","5l1I2ZdM","tky50fgb","CFTGxpFO","LZtCLt9H","rnJBUTRy","EUUaZi0Q","KYOlfxQE","j8BAwBBZ","sqGXwxqX","j5PAbjOX","CIHjKfWf","kAK9E7QN","Uf3QfIZH","93LMTU4c","Uiuhm7sz","kkt7Uxwc","O8E9ZJBS","8UibxwNc","6wbks5k5","UfARzPwD","cHcysdnb","CfI06SBh","GjcXqUeQ","biMOGa64","VNVkvAKo","lLJKfb9A","rPNrdRQo","Ro5u8uo5","aWSzugT7","7LGuplN1","B9QRbi6Q","g1awVxcy","p5w6UGA4","ZFo0osSd","zBxORBK3","oyhmybAh","3WNKLSnn","qXreT2fw","2v4Uri99","mQQfBb0o","NrdrBFYe","i9NQz1UV","UvNS1o3v","WXbt8VVQ","YGyDrs0e","Aig2mCto","gVR6ZQ4f","PPychWbD","PoZjqqMr","CFMtkkBh","VcR6SbJV","mgOOw5zH","ab6bHZR8","m3ugvpRg","FjBN5sII","PGAUelxG","WUiHSEAH","zSmmBSbD","GvczqHHe","qbGHOSjZ","MiAYJiJt","TQtV2Hra","BCZ57c57","Do5N35jN","CcCBYmhs","TUgD9o7P","FjGaPqwu","zzlybUhh","18HpRSWL","Sb5dImaz","nvm1m4LA","oyRdxb5n","huNbvkqI","75zYsfAY","odbH5CFR","a9my0yXs","C3gxM8X5","FNTU3zAX","St1xia24","rylPu5v2","N4h1IGZi","NDzYNOfz","pB8Nl4qg","lkr6TMKJ","nU1g281T","fJ9KY0Tk","2kKtcihL","gpYetBhj","FNwUxKKk","gVzhpwQT","CoiHbVKg","DV40IhyY","Z476sQw8","l29Co1Hm","5IjR1VjG","YbSh78z5","RTxKgvdN","JPayrNdN","CAN09s9P","yzY9p5uF","hunCDvaY","fVWT82jY","745uSYQo","Mbd1E3E4","l9IZD4MC","hkfVkE6i","CgMj10S7","AS39IH8k","fLbilXcL","kAllSTb9","Ht3Mrttx","7QE4atCG","hN0G7nAd","PDw3aEDr","jWQBVSa9","oQFPIo9S","dt5G0wtV","6VI6RMTR","rpBFgFO1","5MrR3gHW","Kb55Hvro","dNRC0H37","4v00OeoB","v7g8Q49W","fLUfwENW","D3Y1LHUW","IkbruGCS","Cc42yGJW","bnWaNTxJ","f27HCJfc","z6cYGtZ8","Io5bEHIb","hqwxeAU3","6kP3jszz","pBGz0fqU","a0ysguQP","DBfQn0Oj","hPR4sv1C","Xyw6PHf6","iWH7JeNb","mJdiP8GK","HdikOXpS","uD5zqeKK","e2EgP3uU","j9Q3wDUN","jFOhuDpk","VdJ4Av3h","6eRD1b1Q","Jm3soSTV","66lsZXXX","9bFQBfVz","rfjl31Cj","8KveguYv","ZMnGTC7v","rlXXuf8h","x8GixcU6","W0lrQCZo","IKrqdUEr","r4EGh5Bi","johBN2Vm","Vu0JowCH","RXGM6dBM","KNawhkuj","llVXxYy6","HXunw52L","89FOc1th","q25Eqzhm","rS1kA1jm","FgOiUVzh","z9OFKGnW","Ssz634rO","CZ94DD0g","oDridzfo","tjMpfUw5","c4QUFiaC","gXdrsnMx","CxC7bmmO","6ywPA9w8","zgplU6Cs","WvHElfx1","gTPmzBpA","eIFr5DsE","tW5vWb3F","P2LpxINP","8U9mliwb","KShVfeIj","v2JDwI9x","Kb3Eh1Vr","GEEJMVal","16njRIqG","yye8LI8e","puAazJAw","9grwiEC0","gGuBemZd","psIKOtP4","8hVm9IdZ","XNFjCYms","a3lFY9O0","X0sRsHwa","TFeDdCUJ","2ZayNCih","EyCPoDxa","SdzjNq8X","fU9nVRZ1","V4oempyh","1Tg47pyQ","1jJLOiZo","iM9oebu1","WPO7zjtx","3nRnNUOS","cUVDeuGU","mjPRLrLD","NlfV5vp6","s23igyR8","m3n7XFzH","lFvcH4tY","wgegBogi","tXwhJeN3","LD6eqSjr","lXmfKcJK","3FIyp0gn","qDL8MSFE","fq7Hdwqb","9VTjPCrX","psxCAXkj","EFvZPNWu","WloCHo7S","k6h898TE","YsBCWxk7","E9rZgsW6","AJEN4laF","oTcMpI1F","n0I3acG5","wtbtoLhs","lmOGB7cb","OdVX12L2","MqhEFIaR","GcPWXYJq","qz3BVEUT","95rAIMBh","noUSyNmW","uMiLkRmf","tsjBnFaF","v31bq2O7","RObPBOyE","jhOHFVFZ","25HKRtBI","2MSQmYqW","LOHvKcvY","4D6BZo5m","VydlQQeV","orbqD2kh","YLxyHdWT","bkrJJrW3","ZHDPwzAe","QagkQI5X","8dIe7NyZ","1SmsqHW3","zLeWrjv8","Bw8GoX30","ayUVHd8o","KmJdeFgs","fMiI6qBM","E325Fv09","5yezR6pF","7g14XpHB","4zTbXdL0","41pJoAm3","E9DXnCT8","4rKGtleq","PHK1X3Xc","1Ta3sruj","pErOQ8zI","e2WaF9K8","CrJoAIg8","ynyJ5qq2","sckft84h","gZnjiRtQ","7ZW8m1a6","SB7O3BG5","OvhnD2bZ","3JiuAMvh","TLALmfny","kxcsWZCy","A6xTBa8c","jHTNBrq3","NxKOKNgH","xuDkR90d","qxXE1v3L","Ba0Z7JcX","5lcQH6Ox","lmONnbGl","sX9gItaD","iZzgLAFj","kMyYv1np","EDqQK2Bn","aMdkwahp","Dn1Ar4Um","vQpsjR7L","LMqUKE0H","WBCH04ad","RPApHaDy","EOgv8FZ1","AksP3yMy","KDmDQlQG","oruiCHvC","B6mDcgZ2","dkFdqBHH","OgQPLSvZ","h4W6V7ng","aGLy1gy5","JQMKdk9p","B80K1sK3","7HbFuEwV","QWOzJf9o","BNDuJR7G","WbxLYgSW","kpYr7akq","lnHzo18v","fL9zVA5k","jWwlS0Ae","GQHZbdj8","S9HEO7xa","lATOf68H","ucK1wjNV","MCFsM5VO","CTxElFLQ","OBeNsrg0","KUGGkxQe","BPLYpp8u","Nt2pzNuH","3IDlWyOe","RCwirlGx","O0tSM3cj","aIVDadRg","MjtI3KV4","DTSq8b11","SWlA9ZGy","ZwevDUVF","GDb7Z2mp","HfppZUUX","OEdMPnQz","QQ2pfidM","WcsL0jgz","TZiD4gbi","lKGyYu6S","RXxZHMAW","QOTzX0HV","CYwWgMiY","Vc8gzrS2","GAPgmEyP","10ygOlhl","XHWxM3fw","qPnBD99O","5Zjrtwhl","CFPoOzWW","D4coGZJq","jNEmhqH7","FJxglTu4","mhqkrfFa","hjzg6oiA","J30uUCaK","Sa4g788y","3PTVF1wd","DGcr0eOk","7pRUzAIK","sc2BBBoZ","FUEdZIPi","iO4m5PLU","fUb9N4ZI","9nCKKdft","pO0sk4z2","EAWNGmgG","hwNa4mFL","I92gJvt9","BGrsrYeA","9K63pYwA","b1LqbTTf","KdXov2Pb","HlqH3h2v","v9ZWmwso","h0edb0O5","hfemmEgs","WmmTP1kb","Pv469h8Z","3F6tiGg8","NOKiOW4q","hc2m1WQ6","haux9k7x","nT77HxXK","2j5ph3Pz","vkBZANSG","tKINhHsw","b6EbL1fA","jqbvEUBm","i11VsLvj","2446TGUZ","6JmHqUp9","oKKBLQfr","QSJyjpeG","RrjNtN7P","P6Np9f5M","kmTbM7Oj","6RT8dQdY","ia7HXWz1","59cemCjh","AMhZJa50","cpGsggtq","ZI8OBIBy","KoVdHCnf","E4EnO4Gs","rrp71BLc","FNESHgGq","h176XxBD","9x9tcJS4","4hE7XyBa","NT1uHlh4","Gs6m5jZd","uEYUVRo3","QKmqM5mV","2UKoLNUH","ASv4k3Br","vnCMHABF","QKFGOJUD","5w5NJzCx","7GWzu2ik","onVH7UO9","PJU7PUGE","9SotZNms","p3JAhQkS","IWLirCJ4","HpbGly1U","cgPK1BnP","FodMeJBb","uEvVLusv","onLhjj6q","krETAxFV","XXnKUaMw","svgkfGtz","K1v8xBfy","97E7LfoL","Q9HPHw6L","9g8UForQ","X4MaUU1U","bBJKsRrs","siN5Etnl","wuAPWWPA","DB81KuvO","LfGyOyJ5","2PSG3Ptd","RugUWN67","QaRAXasa","bcEqNDOG","a5HtJfzX","hwbpO0WZ","997ggVwm","svPPpbQ2","sYq079bm","BOM7GPGs","Xotohi09","9UTSA0xJ","ykUiGiXd","Cx0R0y5l","x3PT2flq","4h8IkH9T","snMK4mWV","WsNv27xH","dh8OHbHy","YagyycJq","Y6Lp4xPN","LLXEcoAV","tfDBpe85","vIqwbekb","LPe075dU","NkZguN8n","6NLGnqdb","y0kOOv3w","NHxxG1DC","UdGl7jqC","avAdpOhr","MUpjzK7t","rhiEm2Wc","vxqH7eU5","EX0d5uwR","dYnrrVyT","RzFHk0WW","LKXveeun","GQVfEepq","XldzO6mM","yFp8iIYz","pBoKyquO","JFu6SM7X","rcd2eEe9","mGVFrJAx","GZCpbcyL","SciXH9dB","IxTNImqb","bWVa6698","fT7I56F1","9iDVyHeO","nseoHIqe","Cwkd5wBU","bjiqAfUp","pnIGcZL5","qASNS3BJ","bvCjrdcB","ZO80xMG3","YADIoEZ8","cud7Dp0h","Nzq9hm0h","FXEC67Kf","1OCJWb2P","7LC2hpt1","FCmQV35I","hGHIRD8U","qGSDZYUu","7upudrLq","tndX4rxY","JBuELDZK","JLVwBfqi","mWWIM6j2","7aoFHeZK","JCIvqSzw","mAnLSJyl","VgL33dWp","artaImf9","uBJPw66b","aS3Vm5KV","PTnXEzwa","mZfta0kq","S2yFtAOp","R8TUCsZ7","I3t0998G","UIvURho8","DVrkeg0R","m6dLuagE","QYAPmZyH","VGpoF80L","2LUm2Kaa","EM9eC1Kp","K95RbSbU","euJJhoTs","cz56YIkx","osHean0g","miWStu4G","q3F5v1H3","Wq1967bc","ITZFwWkY","Ak6PxhpG","LeAYbpLY","w4N3jbW8","ZntqzMlZ","PbqLHgq4","OFLUu1Vk","hwkRmEEg","P7uRt7gB","jhgkhS8n","tSR3xUV2","bKxV67dC","krgjx3p1","jwE52Xf0","gqmtyrB2","H7gbaWdG","LRZcMYoL","Lsrm7sW1","eEexAAZf","JP18P49o","qEzrn3Pc","5Dl3MmWc","rPGUskmU","QMs0zUxl","sLTlTljP","amJPikc3","KDAdZwJh","eRZ0ENZR","GE397Cr9","sIjavVzz","emeMXunl","Mnk2EYTk","y6Za5pt9","iAiVKHh8","1ON0czTj","nQlNYJmQ","vNdZtn73","bH98pKVE","loSMVTwS","fK3wSsgG","T4za6MXl","SgmCfFme","QAPwm5rr","OmJwcG0z","vY6k7GI2","Y9wS4uFf","NW4LGxTy","z0SSEbL9","35gDG8zC","tQ176d8H","4V0kSwX9","tZq1GMpi","CH1jYu2U","zESHDhRM","vLqdAtXI","eRaq1KMf","2B8M6mXM","qQGt70lg","Yd7Eth2O","PDs2qJG1","XgylkKVL","mUlCYxGN","DhTnc2RT","euAtnGaR","ey99a2no","QAyAaK5h","pp7LQGPB","pHNfnwoE","RkNHWpEd","7mOyt3px","MhmOpLbi","fjDiImrD","99cJdybq","wpFA4oAg","WDLFDlJU","I0UEW6B0","pvFFpi0L","L0XWijmX","BmL6whvZ","t4U3OaJH","fLdbjW6H","dLY0sQr0","LSio64KU","1N7I9nAd","jttRj5Ud","jJ1on38m","wOV0dhIV","ONzzsgh9","FQ7VYFV6","w3De1D4Z","EMdKgXle","QdTpdJCJ","mWiCXxGO","6D9aAV8M","ilRhAQF6","MmKN6xyO","XPw1Pi7O","flY0vop0","VFit45xH","DCU9Zvdi","uRVWyfZe","YiRdLVIl","8c6nCoFx","bbgtX9q5","WQJpGbVb","GDuoJ9ZO","1PcC2vw4","QNbrbfu0","V8UvxUr5","PtLnSEgN","nuPjouXh","QDadlf45","BkoRXAs8","SGJhnOJI","5T8Ptkdi","4kxxKlSi","OgJeiBxw","J19as8zJ","HwWGr5KV","Pp4nlMap","HE98enGg","FrbZK2lQ","wVsdWkR1","UXs4sihV","rPh7s4pr","ZlrgTz87","sDrVxQQX","aqYkyKYT","s1QhVDIk","cgHFloaM","Nc9kJWyt","zujCP702","wGI0D9fk","wMbmiYWE","vZwHaHMz","AYzguATT","uEwx8qHX","1MMZMWd1","uoLRkZMU"],"icon_url":"https://cdn.modrinth.com/data/9eGKb6K1/icon.png"},"version":{"id":"zujCP702","project_id":"9eGKb6K1","author_id":"mqxuCPbU","featured":false,"name":"Simple Voice Chat 1.20.1-2.4.24","version_number":"forge-1.20.1-2.4.24","changelog":"- Fixed Simplified Chinese translation\n- Added debug overlay\n- Fixed audio issues when having packet loss\n- Fixed audio issues when receiving packets out of order\n- Improved debug logging\n- Fixed error when disconnecting while audio is playing\n","changelog_url":null,"date_published":"2023-08-28T17:30:35.061754Z","downloads":3800,"version_type":"release","files":[{"hashes":{"sha1":"ad593ba6f6695942659bbca76e33559f6a257a31","sha512":"46c9022fd1d04c7aed45f61e92192761237668ec371f74eab9c620d3fd4b0c2c6693382f74747118b0a9a6eaffd0cf05d977e680c77647bf12e49374a3d3ed26"},"url":"https://cdn.modrinth.com/data/9eGKb6K1/versions/zujCP702/voicechat-forge-1.20.1-2.4.24.jar","filename":"voicechat-forge-1.20.1-2.4.24.jar","primary":true,"size":7650531,"file_type":null}],"dependencies":[{"version_id":null,"project_id":"9s6osm5g","file_name":null,"dependency_type":"optional"}],"game_versions":["1.20.1"],"loaders":["forge","neoforge"]},"members":[{"team_id":"O9wOHL2n","user":{"id":"mqxuCPbU","username":"henkelmax","name":"Max Henkel","avatar_url":"https://avatars.githubusercontent.com/u/13237524?v=4","bio":null,"created":"2021-06-20T06:44:48.036761Z","role":"developer"},"role":"Owner","ordering":0},{"team_id":"O9wOHL2n","user":{"id":"8aZhF0JA","username":"BreadLoaf","name":null,"avatar_url":"https://avatars.githubusercontent.com/u/36360408?v=4","bio":null,"created":"2021-07-02T22:47:21.491087Z","role":"developer"},"role":"Developer","ordering":0},{"team_id":"O9wOHL2n","user":{"id":"31j7L936","username":"Stridey","name":null,"avatar_url":"https://avatars.githubusercontent.com/u/19396085?v=4","bio":null,"created":"2022-05-01T15:49:45.517346Z","role":"developer"},"role":"Artist","ordering":0}],"update_version":null,"incompatible":true},"file_name":"voicechat-forge-1.20.1-2.4.24.jar"},"mods\\patchouli-1.20.1-81-forge.jar":{"sha512":"fa1bb3843b147c6048d26095e79da110372f073436448b5ea36caedee28831d6262164e731f8c06ceced1766e555523c7f3b689f1a1c90e7082355e50ea9ab1d","disabled":false,"metadata":{"type":"modrinth","project":{"id":"nU0bVIaL","slug":"patchouli","project_type":"mod","team":"72JcM90m","title":"Patchouli","description":"Accessible, Data-Driven, Dependency-Free Documentation for Minecraft Modders and Pack Makers","body":"[![](https://violetmoon.org/branding/vm0.png)](https://violetmoon.org)[![](https://violetmoon.org/branding/vm1.png)](https://patreon.com/vazkii)[![](https://violetmoon.org/branding/vm2.png)](https://twitter.com/vazkiimods)[![](https://violetmoon.org/branding/vm3.png)](https://discord.gg/vm)\n![](https://violetmoon.org/branding/hero/patchouli.png)\n\n---\n\n# About\n\n**Patchouli** is a mod that aims to provide easy to implement, data-driven documentation for minecraft modders and modpack makers alike.\n\nPatchouli's systems allow any modder or modpack maker to quickly create beautiful books full of user experience enhancing features. The user-facing feature set of the mod is designed in function of research done on what features people liked from Botania's Lexica Botania.\n\n---\n\n# Features\n\n* Data-driven content creation, no code required, you don't even need patchouli's code to build\n* In-game text preview\n* Rich text formatting system that supports macros\n* Advancement-driven content unlocking\n* Nested categories and bookmarkable entries for quick and easy navigation\n* Several ready-to-use page types like text, crafting and image pages\n* Multiblock visualization for easy building\n* Template system to create custom page types\n* Seamless integration with mods, with creative tab and pretending the book is from your mod\n* Custom visuals and sounds\n* Easily localizable for other languages\n* Tons of other user friendly features!\n\n---\n\n# Learn more about Patchouli today\n### Visit the **[Wiki](https://vazkiimods.github.io/Patchouli/)** to learn about how to use this in your mod or modpack\n\n---\n\n# Credits\n\nMassive shout out to the following people who helped this become a reality:\n\n* Drullkus for testing, providing some code, and the logo\n* Ellpeck for extensive testing and tons of help with fixing bugs\n* StanHebben, for extensive testing, lots of good feature requests, and also providing fair amount of code\n* wiiv, for creating the art I used \n\n---\n\n\n\n![](https://violetmoon.org/branding/support.png)\n[![](https://violetmoon.org/branding/patreon.png)](https://patreon.com/vazkii)[![](https://violetmoon.org/branding/store.png)](https://store.vazkii.net)\n[![](https://violetmoon.org/branding/ch.png)](https://violetmoon.org/creeperhost)","published":"2021-12-23T21:23:57.938115Z","updated":"2023-07-11T02:01:27.198623Z","client_side":"required","server_side":"required","downloads":166139,"followers":329,"categories":["library","utility"],"additional_categories":[],"game_versions":["1.12.2","1.14.4","1.15.2","1.16.4","1.16.5","1.17.1","1.18.1","1.18.2","1.19","1.19.2","1.19.3","1.19.4","1.20.1"],"loaders":["fabric","forge","quilt"],"versions":["clOhZpKV","Bc62letg","YELVQSgP","I49wahSA","hOeuGyBc","AIocSIUP","7lEuKMXY","y5Iv4bvx","LLQZJV1E","bdOMmClI","OUi0L7mI","OfTGI9k6","lnWBMA5s","NfGlUTEX","YBbCmQdE","e8OPjNDT","b6yJCZbc","rgxH3b9S","pwPPKYN3","3nYm6JyE","oFXdEP6M","owlMYTOU","WZ0HMKHN","7hfShY6i","m3VnSBR9","9ocdD9Uo","OgM9g0zW","x2hqKA51","rJhsHi7U","expKhdK0","Dyqz3qo7","vCTStWON","VReLlKMv","yLlzynQ5","swxCEODj","4pBSxxGQ","8cbrvZZN","Ust5yPbd","1Cbhbli9","canbiioP","62ztr7HA","NorgAU8F","vU0HeQTe","uLqYYIHD","ajMDgDNM","VbKVW3Bi","PKvFvHeb","scPQNgN5","tzz6fEoj","YodpuIBJ","qXopWA1k","bxlh2STX"],"icon_url":"https://cdn.modrinth.com/data/nU0bVIaL/130922464c30a3a61eb493ce71d2502b23f29905.png"},"version":{"id":"YodpuIBJ","project_id":"nU0bVIaL","author_id":"wlfGXpf5","featured":false,"name":"1.20.1-81-forge","version_number":"1.20.1-81-forge","changelog":"https://github.com/VazkiiMods/Patchouli/releases/tag/release-1.20.1-81","changelog_url":null,"date_published":"2023-07-11T01:49:34.292807Z","downloads":10989,"version_type":"release","files":[{"hashes":{"sha512":"fa1bb3843b147c6048d26095e79da110372f073436448b5ea36caedee28831d6262164e731f8c06ceced1766e555523c7f3b689f1a1c90e7082355e50ea9ab1d","sha1":"ac962914225ec045431b9c12618e296ca9cb3e22"},"url":"https://cdn.modrinth.com/data/nU0bVIaL/versions/YodpuIBJ/Patchouli-1.20.1-81-FORGE.jar","filename":"Patchouli-1.20.1-81-FORGE.jar","primary":true,"size":637092,"file_type":null}],"dependencies":[],"game_versions":["1.20.1"],"loaders":["forge"]},"members":[{"team_id":"72JcM90m","user":{"id":"wlfGXpf5","username":"williewillus","name":"","avatar_url":"https://avatars.githubusercontent.com/u/2015032?v=4","bio":"Violet Moon member // Former ProjectE and Twilight Forest contributor","created":"2021-12-23T03:09:28.025799Z","role":"developer"},"role":"Maintainer","ordering":0},{"team_id":"72JcM90m","user":{"id":"kRXgk5E1","username":"Vazkii","name":"Vasco Lavos","avatar_url":"https://avatars.githubusercontent.com/u/1794735?v=4","bio":"holy hell","created":"2022-11-13T03:09:41.900759Z","role":"developer"},"role":"Owner","ordering":0}],"update_version":null,"incompatible":true},"file_name":"patchouli-1.20.1-81-forge.jar"},"mods\\BetterF3-7.0.1-Forge-1.20.1.jar":{"sha512":"24e9895e8ca9016a48bbb07f2367304fc71321f70cd78f86d090b096a49bf260b442cefb20bfb15bc42d30089a81c46a0121269b325273bc474d035670bb68bb","disabled":false,"metadata":{"type":"modrinth","project":{"id":"8shC1gFX","slug":"betterf3","project_type":"mod","team":"uWJ0gwSz","title":"BetterF3","description":"BetterF3 is a mod that replaces Minecraft's original debug HUD with a highly customizable, more human-readable HUD.","body":"# BetterF3 \n![Environment: Client](https://img.shields.io/badge/environment-client-1976d2?style=flat-square)\n\n#### BetterF3 is a mod that replaces Minecraft's original debug HUD with a highly customizable, more human-readable HUD. You can customize colors, position, add spacings, and more.\n\n#### Dependencies\n\nFabric\n* Optionally: [ModMenu](https://modrinth.com/mod/modmenu) to access the options menu\n* Included: [Cloth Config](https://www.curseforge.com/minecraft/mc-mods/cloth-config) to use F3 + M\n\nForge\n* Highly Recommended: [Cloth Config](https://www.curseforge.com/minecraft/mc-mods/cloth-config) to use F3 + M\n\n#### Features\nEach line is part of a Module, you can:\n* Change the colors of each module\n* Change the position of each module\n* Add and delete modules, as well as add spacings between them\n* Disable individual lines of a module, or disable the whole module\n* Add a shadow to the text rendered (Activated by default)\n* Change the color of the background behind all lines\n* Animations for opening/closing (with configurable speeds)\n\n#### Translations\nThis mod has been translated into multiple languages. Add or update your own language on [Crowdin](https://crowdin.com/project/betterf3)\n\n#### Development Builds\nThe latest builds can be found [here](https://github.com/TreyRuffy/BetterF3/actions/).\n\n#### Configuration\nDownloading [Cloth Config](https://www.curseforge.com/minecraft/mc-mods/cloth-config) allows you to press F3 + M in game to edit the F3 menu.\n##### \n\n#### Screenshots and Videos\n\n![Image](https://raw.githubusercontent.com/TreyRuffy/BetterF3/architectury/1.19/docs/readme/readme-image.png)\n![GIF](https://github.com/TreyRuffy/BetterF3/blob/architectury/1.19/docs/readme/readme-gif-image.gif?raw=true)\n\n[Video by AntVenom](https://www.youtube.com/watch?v=jbkivpOujXI&t=568s)
\n[Video by Boodlyneck](https://www.youtube.com/watch?v=5lcZ853-jkA&t=349s)\n\n#### Thanks to [@Nirewen](https://github.com/nirewen) for the icon.\n\n### Post any issues on the [GitHub Issues tab](https://github.com/TreyRuffy/BetterF3/issues)","published":"2021-09-20T05:42:23.778430Z","updated":"2023-07-13T04:22:05.628019Z","client_side":"required","server_side":"unsupported","downloads":686500,"followers":2708,"categories":["utility"],"additional_categories":[],"game_versions":["1.16","1.16.1","1.16.2","1.16.3","1.16.4","1.16.5","1.17","1.17.1","1.18","1.18.1","1.18.1-pre1","1.18.2","1.19","1.19.1","1.19.2","1.19.3","1.19.3-pre2","1.19.4","1.19-rc1","1.19-rc2","1.20","1.20.1","22w42a"],"loaders":["fabric","forge","quilt"],"versions":["w841lXuC","1eRzbEj6","FGUXrYM8","hfizyzjF","yHMun8ED","u4bJ71r8","c8vyvGaW","bW0Ng49J","Uv4tFOgl","EWqUNavR","EZ6qfsTX","H4zjxa7k","4SrIvqKy","N2TDuUIv","5G2kahYC","YkAPYBjH","P6E28y68","DWvTzfFJ","k6xmp8cg","KNbHopYR","GwlU7rpA","qUyRV6XT","QIXtqgTu","RbNy07Bx","MTPw9hV7","C3hGuqnK","nuKBXZDI","83hxArpY","jFVjbyGK","vZ9QjDs5","cEflCp0r","up8zocIz","HX9I690G","NwdpRyuN","FtJ0KSLo","3Ed94XFJ"],"icon_url":"https://cdn.modrinth.com//data/8shC1gFX/icon.png"},"version":{"id":"3Ed94XFJ","project_id":"8shC1gFX","author_id":"8ffpigk3","featured":false,"name":"BetterF3 Forge v7.0.1 (1.20/1.20.1)","version_number":"7.0.1","changelog":"## BetterF3 v7.0.1 for Minecraft 1.20/1.20.1\nPublished 2023-07-13\n\n### Added\n* 1.20(.1) support for Fabric and Forge\n\nFull Changelog: [`v7.0.0...v7.0.1`](https://github.com/TreyRuffy/BetterF3/compare/v7.0.0...v7.0.1)","changelog_url":null,"date_published":"2023-07-13T04:22:08.273145Z","downloads":24022,"version_type":"release","files":[{"hashes":{"sha512":"24e9895e8ca9016a48bbb07f2367304fc71321f70cd78f86d090b096a49bf260b442cefb20bfb15bc42d30089a81c46a0121269b325273bc474d035670bb68bb","sha1":"3a422b2a055ddbe7d1ca7d5ca4b6a3280ff94a4b"},"url":"https://cdn.modrinth.com/data/8shC1gFX/versions/3Ed94XFJ/BetterF3-7.0.1-Forge-1.20.1.jar","filename":"BetterF3-7.0.1-Forge-1.20.1.jar","primary":true,"size":456795,"file_type":null}],"dependencies":[{"version_id":null,"project_id":"9s6osm5g","file_name":null,"dependency_type":"required"}],"game_versions":["1.20","1.20.1"],"loaders":["forge"]},"members":[{"team_id":"uWJ0gwSz","user":{"id":"4myOoEuu","username":"cominixo","name":null,"avatar_url":"https://avatars0.githubusercontent.com/u/22600756?v=4","bio":null,"created":"2020-11-14T13:24:34.688681Z","role":"developer"},"role":"","ordering":0},{"team_id":"uWJ0gwSz","user":{"id":"8ffpigk3","username":"treyruffy","name":"TreyRuffy","avatar_url":"https://avatars.githubusercontent.com/u/17056969?v=4","bio":"19 | he/him | idk what im doin","created":"2021-07-11T04:52:42.640876Z","role":"developer"},"role":"Owner","ordering":0}],"update_version":null,"incompatible":true},"file_name":"BetterF3-7.0.1-Forge-1.20.1.jar"},"mods\\entityculling-forge-1.6.2-mc1.20.jar":{"sha512":"00c03643642a811d72d48a6a370efbe220753b3836ea4c040ee56495cc1566e75ca1c5cc9f834f99733757dc56eaed3c90fb4b0092adfa992314f1cc816a5919","disabled":false,"metadata":{"type":"modrinth","project":{"id":"NNAgCjsB","slug":"entityculling","project_type":"mod","team":"hLPrl6Gq","title":"Entity Culling","description":"Using async path-tracing to hide Block-/Entities that are not visible","body":"# EntityCulling\n\nUsing async path-tracing to skip rendering Block/Entities that are not visible. [Website.](https://tr7zw.github.io/project/entityculling/)\n\nMinecraft skips rendering things that are behind you, so why is it rendering everything that you still can't see because of a wall in the way? This mod utilizes your other CPU cores/threads to do really quick path-tracing from your camera to all block/-entities to determine rather they are visible or not. During the rendering, the not visible ones will be skipped the same way entities behind you are.\n\n[![Shockbyte](https://tr7zw.dev/img/shockbyte_black.png)](https://shockbyte.com/partner/tr7zw)\n\n## Dependencies\n\n- none\n\n## Incompatible\n\n- none (With some mods you might need to add the blocks to the config whitelist to fix visual issues)\n\n## Tested with\n\n- Sodium\n- Iris\n- Optifine\n \n## Note to why it works even with Sodium/Optifine\n\nThis has been tested with other mods, Optifine(Optifabric), Iris, and Sodium, in all cases resulting in fps gains in places like Game Server lobbies.\n\nYou might wonder why it does increase the FPS with Sodium since Sodium has \"Use Entity Culling\" in its Advanced settings and enabled by default. The difference is that Sodium does a really quick pass based on the visible chunks, being way less aggressive and thereby still rendering entities that just happen to be in visible chunks, but not visible themselves.\n\n## FAQ\n\n### Does this have to be installed on the Server?\n\nNo, this is fully Client-side and can't be installed on servers.\n\n### Will this influence farms/mobs?\n\nNo. Since this mod just skips the rendering, mobs will still spawn/move/drop items.\n\n## Credits\n\nRoboTricker created the original server-side async raytracing occlusion culling implementation for Transport-Pipes.","published":"2022-05-25T10:09:09.784330Z","updated":"2023-06-08T12:24:31.708544Z","client_side":"required","server_side":"unsupported","downloads":1644261,"followers":2804,"categories":["optimization"],"additional_categories":[],"game_versions":["1.16","1.16.1","1.16.2","1.16.3","1.16.4","1.16.5","1.17","1.17.1","1.18","1.18.1","1.18.2","1.19","1.19.1","1.19.2","1.19.3","1.19.3-pre1","1.19.3-pre2","1.19.4","1.20","1.20.1","1.8.8","1.8.9"],"loaders":["fabric","forge","quilt"],"versions":["WiIRU3UP","AXYavMt5","Qek7k92S","2WBkUuat","2mzFyULh","mlP64Wt9","4GD4dwQK","LQ3vI7aU","WdlVJYKE","R0KPBo5r","1Vc3QD0W","b2cBCjB4","bRBO9ZzX","Wq0up4B4","bE2TQ25z","reIgRPky","N7HJbtfe","AdkBUIRs","WR6z6MYC","twdGLDHv","jFORrKV6","d3CbGntl","UvJN5Cy4","NB6TPjI8","374z4jcq","d20sUcYn"],"icon_url":"https://cdn.modrinth.com/data/NNAgCjsB/icon.png"},"version":{"id":"374z4jcq","project_id":"NNAgCjsB","author_id":"Qnt13hO8","featured":true,"name":"1.6.2-1.20 - Forge","version_number":"1.6.2-1.20","changelog":"## What's Changed\r\n* Update to 1.20\r\n* Fix Ukrainian localization by @BurrConnie in https://github.com/tr7zw/EntityCulling/pull/104\r\n* Italian Translation by @TheBossMagnus in https://github.com/tr7zw/EntityCulling/pull/108\r\n* gradle: Fix executable bit by @5HT2 in https://github.com/tr7zw/EntityCulling/pull/112\r\n\r\n## New Contributors\r\n* @BurrConnie made their first contribution in https://github.com/tr7zw/EntityCulling/pull/104\r\n* @TheBossMagnus made their first contribution in https://github.com/tr7zw/EntityCulling/pull/108\r\n* @5HT2 made their first contribution in https://github.com/tr7zw/EntityCulling/pull/112\r\n\r\n**Full Changelog**: https://github.com/tr7zw/EntityCulling/compare/1.6.2-1.19.4...1.6.2-1.20","changelog_url":null,"date_published":"2023-06-08T12:24:30.292495Z","downloads":43897,"version_type":"release","files":[{"hashes":{"sha1":"c958a821ba34e6550afd12eb95571585270ec038","sha512":"00c03643642a811d72d48a6a370efbe220753b3836ea4c040ee56495cc1566e75ca1c5cc9f834f99733757dc56eaed3c90fb4b0092adfa992314f1cc816a5919"},"url":"https://cdn.modrinth.com/data/NNAgCjsB/versions/374z4jcq/entityculling-forge-1.6.2-mc1.20.jar","filename":"entityculling-forge-1.6.2-mc1.20.jar","primary":true,"size":60489,"file_type":null}],"dependencies":[],"game_versions":["1.20","1.20.1"],"loaders":["forge"]},"members":[{"team_id":"hLPrl6Gq","user":{"id":"Qnt13hO8","username":"tr7zw","name":"tr7zw","avatar_url":"https://cdn.modrinth.com/user/Qnt13hO8/icon.png","bio":"https://tr7zw.dev/","created":"2022-05-04T13:41:52.033912Z","role":"developer"},"role":"Owner","ordering":0}],"update_version":null,"incompatible":true},"file_name":"entityculling-forge-1.6.2-mc1.20.jar"}},"modrinth_update_version":null} \ No newline at end of file