diff --git a/versions/fabric/1.20.4/.gitattributes b/versions/fabric/1.20.4/.gitattributes new file mode 100644 index 0000000..d790abd --- /dev/null +++ b/versions/fabric/1.20.4/.gitattributes @@ -0,0 +1,2 @@ +# Disable Git line ending conversion, to prevent packwiz index hashes changing when committing from Windows +* -text \ No newline at end of file diff --git a/versions/fabric/1.20.4/.gitignore b/versions/fabric/1.20.4/.gitignore new file mode 100644 index 0000000..6ae5b48 --- /dev/null +++ b/versions/fabric/1.20.4/.gitignore @@ -0,0 +1,5 @@ +# Exclude exported CurseForge zip files +/*.zip + +# Exclude exported Modrinth modpacks +/*.mrpack \ No newline at end of file diff --git a/versions/fabric/1.20.4/.packwizignore b/versions/fabric/1.20.4/.packwizignore new file mode 100644 index 0000000..e5c7cba --- /dev/null +++ b/versions/fabric/1.20.4/.packwizignore @@ -0,0 +1,5 @@ +# .packwizignore follows the same format as .gitignore, and can be used to exclude unwanted files from pack exports +# See https://git-scm.com/docs/gitignore + +# Exclude README +/README.md \ No newline at end of file diff --git a/versions/fabric/1.20.4/config/badoptimizations.txt b/versions/fabric/1.20.4/config/badoptimizations.txt new file mode 100644 index 0000000..b33da37 --- /dev/null +++ b/versions/fabric/1.20.4/config/badoptimizations.txt @@ -0,0 +1,79 @@ +# BadOptimizations configuration +# Here you can configure stuff, mostly enabling/disabling specific optimizations. + +# Whether we should cancel updating the lightmap if not needed. +enable_lightmap_caching: true +# How much the in-game time must change in ticks (1/20th of a second) +# for the lightmap to immediately update. +# Higher values will result in less frequent updates +# to block lighting, but better performance. +# Values below 2 will disable hte optimization. +lightmap_time_change_needed_for_update: 90 + +# Whether the sky's color should be cached unless you're on a biome border. +enable_sky_color_caching: true +# How much the in-game time must change in ticks for the sky color to +# be recalculated with our own calculation. Higher values will result in +# the sky updating less frequently, but slightly better performance. +# Values below 2 will all have the same effect. +skycolor_time_change_needed_for_update: 20 + +# Whether we should avoid calling debug renderers +# and their calculations if there are no debug entries to render +enable_debug_renderer_disable_if_not_needed: true + +# +# Micro optimizations +# + +# Whether String.format should be redirected to a faster +# StringBuilder when calculating the FPS string. +enable_fps_string_optimization: true +# Whether we should avoid calling the particle manager +# and its calculations if there are no particles. +enable_particle_manager_optimization: true +# Whether we should avoid calling the toast manager +# if there are no toasts +enable_toast_optimizations: true +# Whether the result of getSkyAngle should be cached +# for the entire frame during rendering +enable_sky_angle_caching_in_worldrenderer: true +# Whether entity renderers should be stored directly in EntityType +# instead of a HashMap. +# Disable to fix compatibility with Twilight Forest +enable_entity_renderer_caching: true +# Whether block entity renderers should be stored in BlockEntityType +# instead of a HashMap. +enable_block_entity_renderer_caching: true +# Whether entity flags should be cached instead of +# calling DataTracker. +# Also removes the unnecessary thread lock in DataTracker +# however this is also done by Lithium (they don't conflict, however). +enable_entity_flag_caching: true +# Whether we should avoid calling FOV calculations +# if the FOV effect scale is zero. +enable_remove_redundant_fov_calculations: true +# Don't tick the tutorial if the game is not in demo mode. +enable_remove_tutorial_if_not_demo: true + +# +# Other +# + +# Whether BadOptimizations should be added onto +# the left text of the F3 menu. +show_f3_text: false + +# Some config options will be force-disabled if certain mods are present +# due to incompatibilities (e.g. entity rendering caching +# is disabled w/ Twilight Forest). +# However, if you still want to use the optimizations, you can override it +# by setting this to true. Beware of crashes. And Herobrine. +ignore_mod_incompatibilities: false + +# Whether to log the entire config into console when booting up. +# If you plan on reporting an issue, please keep this on. +log_config: true + +# Do not change this +config_version: 2 diff --git a/versions/fabric/1.20.4/config/betterhurtcam.toml b/versions/fabric/1.20.4/config/betterhurtcam.toml new file mode 100644 index 0000000..33cd7fa --- /dev/null +++ b/versions/fabric/1.20.4/config/betterhurtcam.toml @@ -0,0 +1,4 @@ +enabled = true +multiplier = 0.7999999999999999 +heartBlink = true +type = "YAW_BASED" diff --git a/versions/fabric/1.20.4/config/bobby.conf b/versions/fabric/1.20.4/config/bobby.conf new file mode 100644 index 0000000..30c37b1 --- /dev/null +++ b/versions/fabric/1.20.4/config/bobby.conf @@ -0,0 +1,39 @@ +# Delete regions from the cache when they have not been loaded for X days. +# +# The cache for a given world is cleaned up whenever you disconnect from the server. +# Entire worlds are cleaned up when the game starts and you have not visited them for X days. +# +# Set to -1 to disabled. +# Set to 0 to clean up everything after every disconnect. +delete-unused-regions-after-days=-1 +# Enables support for servers with multiple identically-named worlds. +# +# When enabled, a new local cache is started on each world change. If there are enough chunks with similar content in two caches, they will automatically be merged. +# This does mean that you may need to walk around a little before Bobby loads in cached chunks if there is little identifying information in your world (e.g. flat worlds). +# +# You may need to delete your existing cache if it is comprised of multiple worlds to prevent Bobby from merging into it. +# Requires a `/bobby upgrade` after enabling with existing cache. +dynamic-multi-world=false +enabled=true +# Changes the maximum value configurable for Render Distance. +# +# Requires Sodium. +max-render-distance=64 +# Do not load block entities (e.g. chests) in fake chunks. +# These need updating every tick which can add up. +# +# Enabled by default because the render distance for block entities is usually smaller than the server-view distance anyway. +no-block-entities=true +# Reduces the light levels in fake chunks so you can tell the difference from real ones. +taint-fake-chunks=false +# Delays the unloading of chunks which are outside your view distance. +# Saves you from having to reload all chunks when leaving the area for a short moment (e.g. cut scenes). +# Does not work across dimensions. +unload-delay-secs=60 +# Overwrites the view-distance of the integrated server. +# This allows Bobby to be useful in Singleplayer. +# +# Disabled when at 0. +# Bobby is active in singleplayer only if this is enabled. +# Requires re-log to en-/disable. +view-distance-overwrite=0 diff --git a/versions/fabric/1.20.4/config/clean-debug.json b/versions/fabric/1.20.4/config/clean-debug.json new file mode 100644 index 0000000..267816d --- /dev/null +++ b/versions/fabric/1.20.4/config/clean-debug.json @@ -0,0 +1,17 @@ +{ + "hardwareMode": "REDUCED", + "hideActiveRenderer": true, + "hideTags": true, + "hideDebugHints": true, + "shyFluids": true, + "hideHelpShortcut": true, + "hideNoiseRouter": true, + "hideSodium": true, + "hideIris": true, + "hideLitematica": true, + "hideEntityCulling": true, + "hideViaFabric": true, + "hidePresenceFootsteps": true, + "hideDistantHorizons": true, + "hideModernFix": true +} \ No newline at end of file diff --git a/versions/fabric/1.20.4/config/debugify-descriptions.json b/versions/fabric/1.20.4/config/debugify-descriptions.json new file mode 100644 index 0000000..fcf2ba1 --- /dev/null +++ b/versions/fabric/1.20.4/config/debugify-descriptions.json @@ -0,0 +1 @@ +{"MC-105068":"Attacking a shield-blocking player always plays the player hurts sound","MC-93018":"Wild wolves show breeding hearts but do not breed","MC-127970":"Using Riptide on a trident with an item in your off-hand causes visual glitch with said item","MC-200418":"Cured baby zombie villagers stay as jockey variant","MC-199467":"Certain entity animations stop after they\u0027ve existed in world for too long","MC-159163":"Quickly pressing the sneak key causes the sneak animation to play twice","MC-121903":"Command block minecarts do not save execution cooldown to NBT","MC-119754":"Firework boosting on elytra continues in spectator mode","MC-129909":"Players in spectator mode continue to consume foods and liquids shortly after switching game modes","MC-206922":"Items dropped by entities that are killed by lightning instantly disappear","MC-121706":"Skeletons and illusioners aren\u0027t looking up / down at their target while strafing","MC-55347":"Title with long duration shows in other world","MC-80859":"Starting to drag item stacks over other compatible stacks makes the latter invisible until appearance change (stack size increases)","MC-93384":"Bubbles appear at the feet of drowning mobs","MC-88371":"Ender Dragon flies down in the void when the exit portal is destroyed","MC-108948":"Boats / boats with chest on top of slime blocks hover over block","MC-8187":"Two-by-two arrangements of jungle or spruce saplings cannot grow when there are adjacent blocks located north or west of the sapling formation","MC-122477":"Linux/GNU: Opening chat sometimes writes \u0027t\u0027","MC-89146":"Pistons forget update when being reloaded","MC-122627":"Tab suggestion box has missing padding on right side","MC-577":"Mouse buttons block all inventory controls that are not default","MC-135971":"Can\u0027t use CTRL+Q in crafting table","MC-143474":"Respawning causes your hotbar to reset to the first space","MC-237493":"Telemetry cannot be disabled","MC-79545":"The experience bar disappears when too many levels are given to the player","MC-30391":"Chickens, blazes and the wither emit particles when landing from a height, despite falling slowly","MC-90683":"\"Received unknown passenger\" - Entities with differing render distances as passengers outputs error","MC-72151":"Snow Golem\u0027s snowballs damage wolves instead of pushing them","MC-217716":"The green nausea overlay isn\u0027t removed when switching into spectator mode","MC-46766":"Mining a block in Survival, then changing to Spectator creates a breaking animation and sound","MC-100991":"Killing entities with a fishing rod doesn\u0027t count as a kill","MC-197260":"Armor Stand renders itself and armor dark if its head is in a solid block","MC-183776":"After switching game modes using F3+F4, you need to press F3 twice to toggle the debug screen","MC-224729":"Partially generated chunks are not saved in some situations","MC-4490":"Fishing line not attached to fishing rod in third person while crouching","MC-215530":"The freezing effect isn\u0027t immediately removed upon switching into spectator mode","MC-231743":"\"minecraft.used:minecraft.\u003cPOTTABLE_PLANT\u003e\" doesn\u0027t increase when placing plants into flower pots","MC-193343":"Soul Speed effect remains after switching to spectator mode","MC-215531":"The carved pumpkin overlay is rendered in spectator mode","MC-7569":"RCON output has newlines removed","MC-14923":"Players can be kicked for spamming in a singleplayer world with cheats disabled","MC-179072":"Creepers do not defuse when switching from Survival to Creative/Spectator","MC-232869":"Adult striders can spawn with saddles in peaceful mode","MC-12829":"Flying through climbable blocks in creative mode slows you down","MC-176559":"Breaking process resets when a pickaxe enchanted with Mending mends by XP / Mending slows down breaking blocks again","MC-227169":"The main hand is positioned incorrectly when holding a loaded crossbow in your offhand","MC-119417":"A spectator can occupy a bed if they enter it and then are switched to spectator mode","MC-31819":"Hunger saturation depletes on Peaceful","MC-132878":"Armor stands destroyed by explosions/lava/fire don\u0027t produce particles","MC-263865":"Fullscreen state isn\u0027t saved","MC-231097":"Holding the \"Use\" button continues to slow down the player even after the used item has been dropped","MC-111516":"Player flickers/turns invisible when flying at high speeds","MC-69216":"Switching to spectator mode while fishing keeps rod cast","MC-22882":"Ctrl + Q won\u0027t work on Mac","MC-124117":"Nbt Tags doesn\u0027t work?","MC-160095":"End Rods only break Cactus when moved by pistons","MC-116379":"Punching with a cast fishing rod in the off-hand detaches fishing line from rod","MC-223153":"Block of Raw Copper uses stone sounds instead of copper sounds","MC-59810":"Cannot break blocks while sprinting (Ctrl+Click \u003d right click on macOS)","MC-165381":"Block breaking can be delayed by dropping/throwing the tool while breaking a block","MC-155509":"Dying puffed pufferfish can still sting players","MC-183990":"Group AI of some mobs breaks when their target dies","MC-112730":"Beacon beam and structure block render twice per frame","MC-2025":"Mobs going out of fenced areas/suffocate in blocks when loading chunks"} \ No newline at end of file diff --git a/versions/fabric/1.20.4/config/dynamic_fps.json b/versions/fabric/1.20.4/config/dynamic_fps.json new file mode 100644 index 0000000..f37b66f --- /dev/null +++ b/versions/fabric/1.20.4/config/dynamic_fps.json @@ -0,0 +1,25 @@ +{ + "states": { + "hovered": { + "frame_rate_target": -1, + "volume_multipliers": {}, + "graphics_state": "default", + "show_toasts": true, + "run_garbage_collector": false + }, + "unfocused": { + "frame_rate_target": 2, + "volume_multipliers": {}, + "graphics_state": "default", + "show_toasts": true, + "run_garbage_collector": true + }, + "invisible": { + "frame_rate_target": 0, + "volume_multipliers": {}, + "graphics_state": "default", + "show_toasts": true, + "run_garbage_collector": true + } + } +} diff --git a/versions/fabric/1.20.4/config/enhanced_bes.properties b/versions/fabric/1.20.4/config/enhanced_bes.properties new file mode 100644 index 0000000..0dd402d --- /dev/null +++ b/versions/fabric/1.20.4/config/enhanced_bes.properties @@ -0,0 +1,4 @@ +sign_ao=true +shulker_box_ao=true +chest_ao=true +bed_ao=true diff --git a/versions/fabric/1.20.4/config/entityculling.json b/versions/fabric/1.20.4/config/entityculling.json new file mode 100644 index 0000000..050405b --- /dev/null +++ b/versions/fabric/1.20.4/config/entityculling.json @@ -0,0 +1,4 @@ +{ + "sleepDelay": 70, + "hitboxLimit": 65 +} diff --git a/versions/fabric/1.20.4/config/fabric/indigo-renderer.properties b/versions/fabric/1.20.4/config/fabric/indigo-renderer.properties new file mode 100644 index 0000000..1349977 --- /dev/null +++ b/versions/fabric/1.20.4/config/fabric/indigo-renderer.properties @@ -0,0 +1,9 @@ +#Indigo properties file +#Thu May 30 20:40:03 CDT 2024 +always-tesselate-blocks=auto +ambient-occlusion-mode=hybrid +debug-compare-lighting=auto +fix-exterior-vertex-lighting=auto +fix-luminous-block-ambient-occlusion=auto +fix-mean-light-calculation=auto +fix-smooth-lighting-offset=auto diff --git a/versions/fabric/1.20.4/config/fabric_loader_dependencies.json b/versions/fabric/1.20.4/config/fabric_loader_dependencies.json new file mode 100644 index 0000000..7c14d0d --- /dev/null +++ b/versions/fabric/1.20.4/config/fabric_loader_dependencies.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "overrides": { + "infinite-music": { + "-depends": { + "minecraft": "" + } + }, + "indium": { + "-depends": { + "sodium": "" + } + } + } +} \ No newline at end of file diff --git a/versions/fabric/1.20.4/config/fastquit.toml b/versions/fabric/1.20.4/config/fastquit.toml new file mode 100644 index 0000000..4eab285 --- /dev/null +++ b/versions/fabric/1.20.4/config/fastquit.toml @@ -0,0 +1,5 @@ +renderSavingScreen = false +showToasts = false +showSavingTime = "TRUE" +backgroundPriority = 5 +allowMultipleServers = true diff --git a/versions/fabric/1.20.4/config/ferritecore.mixin.properties b/versions/fabric/1.20.4/config/ferritecore.mixin.properties new file mode 100644 index 0000000..cd11b4d --- /dev/null +++ b/versions/fabric/1.20.4/config/ferritecore.mixin.properties @@ -0,0 +1 @@ +useSmallThreadingDetector = true \ No newline at end of file diff --git a/versions/fabric/1.20.4/config/fsb-interop.json b/versions/fabric/1.20.4/config/fsb-interop.json new file mode 100644 index 0000000..ab89556 --- /dev/null +++ b/versions/fabric/1.20.4/config/fsb-interop.json @@ -0,0 +1,8 @@ +{ + "mode": "NATIVE", + "interoperability": true, + "debug_mode": false, + "prefer_f_s_b_native": true, + "process_opti_fine": true, + "process_m_c_patcher": false +} \ No newline at end of file diff --git a/versions/fabric/1.20.4/config/indium-renderer.properties b/versions/fabric/1.20.4/config/indium-renderer.properties new file mode 100644 index 0000000..cb54d39 --- /dev/null +++ b/versions/fabric/1.20.4/config/indium-renderer.properties @@ -0,0 +1,4 @@ +#Indium properties file +#Thu May 30 20:40:04 CDT 2024 +always-tesselate-blocks=auto +ambient-occlusion-mode=auto diff --git a/versions/fabric/1.20.4/config/lithium.properties b/versions/fabric/1.20.4/config/lithium.properties new file mode 100644 index 0000000..3442269 --- /dev/null +++ b/versions/fabric/1.20.4/config/lithium.properties @@ -0,0 +1 @@ +mixin.experimental=true diff --git a/versions/fabric/1.20.4/config/midnightlib.json b/versions/fabric/1.20.4/config/midnightlib.json new file mode 100644 index 0000000..ab677dc --- /dev/null +++ b/versions/fabric/1.20.4/config/midnightlib.json @@ -0,0 +1,3 @@ +{ + "config_screen_list": "FALSE" +} \ No newline at end of file diff --git a/versions/fabric/1.20.4/config/modernfix-mixins.properties b/versions/fabric/1.20.4/config/modernfix-mixins.properties new file mode 100644 index 0000000..4626a3f --- /dev/null +++ b/versions/fabric/1.20.4/config/modernfix-mixins.properties @@ -0,0 +1,15 @@ +# This config file is taken from Simply Optimized 6.2.2, and the following +# patches that SO enables are removed for stability and compatibility: +# mixin.bugfix.packet_leak | experimental +# mixin.perf.clear_fabric_mapping_tables | may be incompatible with other mods +# mixin.perf.remove_spawn_chunks | breaks vanilla parity +# mixin.perf.clear_mixin_classinfo | may be incompatible with other mods +# +# Thanks HyperSoop for allowing me to modify the config file for Adrenaline :) +# +# For more information on the ModernFix patches and what they do, see the +# wiki on the Git repo: https://github.com/embeddedt/ModernFix/wiki + +mixin.perf.dynamic_entity_renderers=true +mixin.perf.dynamic_resources=true +mixin.perf.faster_item_rendering=true diff --git a/versions/fabric/1.20.4/config/modmenu.json b/versions/fabric/1.20.4/config/modmenu.json new file mode 100644 index 0000000..774b301 --- /dev/null +++ b/versions/fabric/1.20.4/config/modmenu.json @@ -0,0 +1,30 @@ +{ + "sorting": "ascending", + "count_libraries": true, + "compact_list": false, + "count_children": true, + "mods_button_style": "classic", + "game_menu_button_style": "replace_bugs", + "count_hidden_mods": true, + "mod_count_location": "title_screen", + "hide_mod_links": false, + "show_libraries": false, + "hide_mod_license": false, + "hide_badges": false, + "hide_mod_credits": false, + "easter_eggs": true, + "modify_title_screen": true, + "modify_game_menu": true, + "hide_config_buttons": false, + "random_java_colors": false, + "translate_names": true, + "translate_descriptions": true, + "config_mode": false, + "disable_drag_and_drop": false, + "hidden_mods": [], + "hidden_configs": [], + "disable_update_checker": [], + "update_checker": true, + "button_update_badge": true, + "quick_configure": true +} \ No newline at end of file diff --git a/versions/fabric/1.20.4/config/simplemenu.json5 b/versions/fabric/1.20.4/config/simplemenu.json5 new file mode 100644 index 0000000..79e6a25 --- /dev/null +++ b/versions/fabric/1.20.4/config/simplemenu.json5 @@ -0,0 +1,30 @@ +{ + // Whether a custom window title should be set. Uses the value set in 'customWindowTitle'. + "setCustomWindowTitle": true, + // The custom window title that's used when 'setCustomWindowTitle' is enabled. + "customWindowTitle": "Re-Console", + // If a custom window icon should be set. Two files are needed. Both in PNG format. One a 16 pixel square called 'icon_16x16.png', and one a 32 pixel square called 'icon_32x32.png'. Located in './config/simplemenu/icon'. + "setCustomWindowIcon": true, + // If a custom main menu logo should be rendered. This will replace the 'Minecraft' text. A 'logo.png' file is needed. Located in './config/simplemenu/logo'. By default the image dimensions are 1024x256. To remove it completely, use an empty .png file. + "replaceMainMenuLogo": false, + // If a custom main menu 'edition' logo should be rendered. This will replace the 'Java Edition' text. An 'edition.png' file is needed. Located in './config/simplemenu/logo'. By default the image dimensions are 512x64. To remove it completely, use an empty .png file. + "replaceMainMenuEditionLogo": false, + // If a custom background should be rendered. A 'background.png' file is needed. Located in './config/simplemenu/background/'. + "setCustomBackground": false, + // If the Minecraft Realms button should be hidden from the main menu. Enabled by default, since modded Minecraft is incompatible with it. + "hideMinecraftRealmsButton": true, + // Whether the Minecraft Realms button should be replaced by a serverhosting promo button. + "enableServerPromoButton": false, + // The default server promo button text. + "serverPromoButtonTextDefault": "Need a Server?", + // The server promo button text shown when hovering it. + "serverPromoButtonTextOnHover": "Use code PROMO for 25% off", + // The URL that's being navigated to when clicking the server promo button. + "serverPromoButtonClickURL": "https://localhost/exampleurl", + // Whether the splash text should be hidden on the main menu. + "hideSplashText": false, + // Whether experimental/beta mod loader text should be removed from the main menu. + "removeExperimentalModLoaderText": false, + // Whether the text in the bottom left should be removed from the main menu. + "removeTextBottomLeft": false +} \ No newline at end of file diff --git a/versions/fabric/1.20.4/config/simplemenu/icon/icon_16x16.png b/versions/fabric/1.20.4/config/simplemenu/icon/icon_16x16.png new file mode 100644 index 0000000..7dfcc30 Binary files /dev/null and b/versions/fabric/1.20.4/config/simplemenu/icon/icon_16x16.png differ diff --git a/versions/fabric/1.20.4/config/simplemenu/icon/icon_32x32.png b/versions/fabric/1.20.4/config/simplemenu/icon/icon_32x32.png new file mode 100644 index 0000000..dd3b94b Binary files /dev/null and b/versions/fabric/1.20.4/config/simplemenu/icon/icon_32x32.png differ diff --git a/versions/fabric/1.20.4/config/sodium-options.json b/versions/fabric/1.20.4/config/sodium-options.json new file mode 100644 index 0000000..573eab9 --- /dev/null +++ b/versions/fabric/1.20.4/config/sodium-options.json @@ -0,0 +1,5 @@ +{ + "advanced": { + "cpu_render_ahead_limit": 4 + } +} diff --git a/versions/fabric/1.20.4/config/threadtweak.json b/versions/fabric/1.20.4/config/threadtweak.json new file mode 100644 index 0000000..fecc05c --- /dev/null +++ b/versions/fabric/1.20.4/config/threadtweak.json @@ -0,0 +1,8 @@ +{ + "threadPriority": { + "game": 8, + "main": 3, + "io": 5, + "integratedServer": 8 + } +} diff --git a/versions/fabric/1.20.4/config/yosbr/options.txt b/versions/fabric/1.20.4/config/yosbr/options.txt new file mode 100644 index 0000000..767eced --- /dev/null +++ b/versions/fabric/1.20.4/config/yosbr/options.txt @@ -0,0 +1,13 @@ +version:3839 +biomeBlendRadius:1 +enableVsync:false +fullscreen:true +gamma:0.0 +maxFps:240 +renderDistance:18 +simulationDistance:5 +toggleCrouch:true +resourcePacks:["vanilla","fabric","programmer_art","file/re-console_resources.zip","file/PACP 1.8 Beta 3 Comparity Version.zip"] +notificationDisplayTime:1.2 +attackIndicator:0 +joinedFirstServer:true \ No newline at end of file diff --git a/versions/fabric/1.20.4/index.toml b/versions/fabric/1.20.4/index.toml new file mode 100644 index 0000000..cb8e4a8 --- /dev/null +++ b/versions/fabric/1.20.4/index.toml @@ -0,0 +1,421 @@ +hash-format = "sha256" + +[[files]] +file = "config/badoptimizations.txt" +hash = "837b6e03696e135142469b9292ce0cf12f96f649a68d4f873dc994e9fa197dad" + +[[files]] +file = "config/betterhurtcam.toml" +hash = "a5c0f37671450e5ff2ca534a0c03701c39ac046b70862167dcbd0185eed13284" + +[[files]] +file = "config/bobby.conf" +hash = "6ff4da9a5e3a1a7668630318e46fa0bd8917ab1006e1133a0aaa891d9c13a67a" + +[[files]] +file = "config/clean-debug.json" +hash = "d903b8cacbf7a1c484dd5eeb0e32d11010df19a55ffc67ebc5560506433a7836" + +[[files]] +file = "config/debugify-descriptions.json" +hash = "033e4ec7c62cc479521bee64856070e6c5670d3b793a83566588669f767558de" + +[[files]] +file = "config/dynamic_fps.json" +hash = "163f49d5c78bf76b1a112c792e936a5915994c472985585a9463134971abd607" + +[[files]] +file = "config/enhanced_bes.properties" +hash = "6ef9e4a1132e7aeab97f6829893124078b95be3c9a5b247754c2ccc9deb423ce" + +[[files]] +file = "config/entityculling.json" +hash = "3955e3822546d7193b0432b91ba89e233a7b4aaf88cbf2883d1931c77bbc9fdb" + +[[files]] +file = "config/fabric/indigo-renderer.properties" +hash = "eca8c4e36d578cbadd9a88b4d02910ceb6a0fbf39ea88bd5b16573a67ee7c110" + +[[files]] +file = "config/fabric_loader_dependencies.json" +hash = "5047d308c4874715cd513f2a6ba94174176ceae4af2eeb7c456d1efb4f8c0ca2" + +[[files]] +file = "config/fastquit.toml" +hash = "e3aff3656dbb53748dbe567e80bf125f30923974e111d910fce387f2a74de81a" + +[[files]] +file = "config/ferritecore.mixin.properties" +hash = "1fbbea658d8af2a751857e70cf2d5930a24490cc4c24f8db9b49630a818b895c" + +[[files]] +file = "config/fsb-interop.json" +hash = "fa7d682ae0cb1e4963abe9b6d265ed68d92e22079c479950dad3305e1e23b007" + +[[files]] +file = "config/indium-renderer.properties" +hash = "f7a6a95b25e052f4f37f8d6446bc69699ca96743271fc71da580b0f575d01853" + +[[files]] +file = "config/lithium.properties" +hash = "928fdb1e604e394de7389a4b7a7f230fe6863a468e1839bee22d80652ea0d31f" + +[[files]] +file = "config/midnightlib.json" +hash = "5937187f5c3ad5f1a75a65d7f384a78d15a1a6d96d0667ea61bd103279122920" + +[[files]] +file = "config/modernfix-mixins.properties" +hash = "22caf99f6531254b612c35bc12aff9c2b6d121b038b2e418a1a429049d16c9e0" + +[[files]] +file = "config/modmenu.json" +hash = "748cb550ed31f0d7f2a8faf26cd0c659826ae10cfabc4a89eee7d32eed98f157" + +[[files]] +file = "config/simplemenu.json5" +hash = "2d359fb9351b509da4669744942281f28123e5879fb470e5a066041c59afcbf3" + +[[files]] +file = "config/simplemenu/icon/icon_16x16.png" +hash = "4cebdb7ac3d71bd50e580fbff431adf2b2a0950f8eae3b9f938a9931b89f0da2" + +[[files]] +file = "config/simplemenu/icon/icon_32x32.png" +hash = "4b0638d4f69e0b79a7c1945f5d47c6e17591893901bf49fb1964a03b1bbd30ad" + +[[files]] +file = "config/sodium-options.json" +hash = "6555c8c1fc4d773df097895dfb76fe004377347581d5731f5408fb9d138585a2" + +[[files]] +file = "config/threadtweak.json" +hash = "545cbe317c5146bacb9e13c7c03a605f0b6bd6e1ddaf1a05f8be8537d6f8b0ce" + +[[files]] +file = "config/yosbr/options.txt" +hash = "75290b742a8fe4a2f3ddfff851863f3b0dddc117f3742c970ab885e5c533264f" + +[[files]] +file = "mods/architectury-api.pw.toml" +hash = "3b3eb136a09515edaa9d3b6fba49ac2d025c1dba4a5a0d9d7fdab1e17c6bddfb" +metafile = true + +[[files]] +file = "mods/ash-api.pw.toml" +hash = "ce1ca484ec7efff3457e485e632fa950095fd1c7baa60b96a5d3865136e55d16" +metafile = true + +[[files]] +file = "mods/bad-wither-no-cookie.pw.toml" +hash = "cbbdc4c5ac5871bd26a3b5c8a036e5e1b0e391e18061842195b49559e336c329" +metafile = true + +[[files]] +file = "mods/badoptimizations.pw.toml" +hash = "31da0d40daba6f88d50d18ae5565aee6996657bcc34138f75622dd8f582385f6" +metafile = true + +[[files]] +file = "mods/better-ping-display-fabric.pw.toml" +hash = "ec31177d5cf656efdff737432455211defb8ee188749e3f53f117f75f83d1b6a" +metafile = true + +[[files]] +file = "mods/betterhurtcam.pw.toml" +hash = "4056dbb7f42bc17c3a83d08f1a4a3a9951180b2bfee517f9973a7f5632ef4e84" +metafile = true + +[[files]] +file = "mods/bobby.pw.toml" +hash = "82b20a5c104de33dc01364ff2bf1354132327d085a3dc10954b5ea0ff3d53f51" +metafile = true + +[[files]] +file = "mods/chat-heads.pw.toml" +hash = "f4d50e2e0fae0612e93aa9128bb49258ba4b7a6c6a32ff39a0bc0cb04f2d7cbc" +metafile = true + +[[files]] +file = "mods/cicada.pw.toml" +hash = "194d90a17e46625efdbb720de99ffdb1319015d3618ec478a38927faf490f16c" +metafile = true + +[[files]] +file = "mods/clean-f3.pw.toml" +hash = "73ca360d1e06a82d5bf205d3898b420674bd5e85e3626f37f9ae7a10dc48beb1" +metafile = true + +[[files]] +file = "mods/clientsidenoteblocks.pw.toml" +hash = "587eac67f255a2f04fb5f348243fce7b7d317f7c7eb6d3c7082c2f74babecece" +metafile = true + +[[files]] +file = "mods/cloth-config.pw.toml" +hash = "f250d6778f5b8d03ca32913bea5ea677508e9bb6d8201cdebe005bbe9c3100ee" +metafile = true + +[[files]] +file = "mods/collective.pw.toml" +hash = "03dc43ab10a1ebeb539dd8fd4cff50ed14726c8af5e781cf62871f75b3a3e49f" +metafile = true + +[[files]] +file = "mods/combatedit.pw.toml" +hash = "5be69820b2c0f2f63be5ba6b13ea2ee5bfdaf7327344ea8e7893b8df61e062f9" +metafile = true + +[[files]] +file = "mods/cubes-without-borders.pw.toml" +hash = "1a65361cf2207ba6bad6eba3e66e407983452398c4ac5cbe5db0d8430b8a6496" +metafile = true + +[[files]] +file = "mods/cull-less-leaves.pw.toml" +hash = "39eb9db990032d949909f079ada415ffda18b372ec5d9b23ab95652d88474131" +metafile = true + +[[files]] +file = "mods/debugify.pw.toml" +hash = "b42f1dc7a2d11031a7b296055ac7e32637be00e7d52cd37254a8b500a5afcb7b" +metafile = true + +[[files]] +file = "mods/dynamic-fps.pw.toml" +hash = "ee965d6f2e0a9cdc31139b0d8a3367eb8db031065a03142534652573626e9787" +metafile = true + +[[files]] +file = "mods/e4mc.pw.toml" +hash = "e72107c4e4156546f3ad34e0c8c759438e0971b3d096ca2be00cfd81d1570d6d" +metafile = true + +[[files]] +file = "mods/emuno.pw.toml" +hash = "8f0c18360533351fff9237b803b1a91fb86cc9b00d56e61f116076e654c9f8e8" +metafile = true + +[[files]] +file = "mods/entity-model-features.pw.toml" +hash = "1c0633f52455c5c6db31b4d926acbbaa0890d771177b55e33eb245a7bc63b635" +metafile = true + +[[files]] +file = "mods/entityculling.pw.toml" +hash = "489c1b03fb49b1e1a62541465a305f56a6743078b3cec2d420e182c3b45f0015" +metafile = true + +[[files]] +file = "mods/entitytexturefeatures.pw.toml" +hash = "1c267253fb20ff2891b75a531cb6c080d39ee416a417a0fc8814abeaed13383b" +metafile = true + +[[files]] +file = "mods/fabric-api.pw.toml" +hash = "fe7dbe82cf758cc6a73e96f57229e6be3696588388da757fbd936ac8c08c224f" +metafile = true + +[[files]] +file = "mods/fabric-language-kotlin.pw.toml" +hash = "14e87ff6253d2bd02697e46b4a9b5060465d72b71663def5236f829e30bac6d6" +metafile = true + +[[files]] +file = "mods/fabricskyboxes-interop.pw.toml" +hash = "f80e4a46fab9a9c99ebf3193f2c73675f6f6659fcd740692e14501213f633c70" +metafile = true + +[[files]] +file = "mods/fabricskyboxes.pw.toml" +hash = "4d979c0f0902b82fc22fc60b741d3a9ce8331de9ffcc4f54658af92ff8ff8a81" +metafile = true + +[[files]] +file = "mods/fabrishot.pw.toml" +hash = "b91224d8b6110cbeca20c7905f2ae6032e8ccd992733829fbc6a79d2da957839" +metafile = true + +[[files]] +file = "mods/fastquit.pw.toml" +hash = "ff278c8a9a5e56d412fb2e7106790b0ac33b0a4a8699978f0ae4d5a2c70c63b3" +metafile = true + +[[files]] +file = "mods/ferrite-core.pw.toml" +hash = "4146027b92b4885fddec00435233c61c3728b5e09265982ab187021519a4fa89" +metafile = true + +[[files]] +file = "mods/forge-config-api-port.pw.toml" +hash = "d1e32ea50e119b059ffe57b2785625679cf04641dfa2d7189197f09eb63aa7f7" +metafile = true + +[[files]] +file = "mods/immediatelyfast.pw.toml" +hash = "547b1ccde38256b8090e6900147f2737513e423e1fc0bbfb412f8a1a8209b52c" +metafile = true + +[[files]] +file = "mods/indium.pw.toml" +hash = "e416b18eebf514dea2014cf5c7fd3ee8493934a0b4e937509f15172ad271fde2" +metafile = true + +[[files]] +file = "mods/infinite-music.pw.toml" +hash = "8153a3b55b0a83e81944603208be4fdabb03e3d086aebcaecb71a0bf5822e1d4" +metafile = true + +[[files]] +file = "mods/language-reload.pw.toml" +hash = "b9749a14f4cc5697124cdbd46c313384713a9c28f4b30a5baae6d43e8561e83c" +metafile = true + +[[files]] +file = "mods/legacy-mipmaps.pw.toml" +hash = "c8afacbd7cad2e5cbb7964f21d50cc6b0ab5cb4f4974029982773befb6a4b893" +metafile = true + +[[files]] +file = "mods/legacy4j.pw.toml" +hash = "4ff85c382d60276a4c4a471de8f70100d862f122fad939e4f20fd33feb227b37" +metafile = true + +[[files]] +file = "mods/lithium.pw.toml" +hash = "3dedde5213176d72e1c353877fa44315945e8f3da2ba05f5679d81e9f558bb1d" +metafile = true + +[[files]] +file = "mods/midnightlib.pw.toml" +hash = "bd6d19a7233f79f0dc0330f68e20a9e2cc2baeb6c7d0f0a54f97d95a7c2020f7" +metafile = true + +[[files]] +file = "mods/modelfix.pw.toml" +hash = "6ff047f3b0e73e22bf5ad0d6751f82cd6f6a4e164a911a37839eba667fa85502" +metafile = true + +[[files]] +file = "mods/moderner-beta.pw.toml" +hash = "d5785bee9d41f6bc1e0886af454310cf078eee555504265baa216f43bdd82c64" +metafile = true + +[[files]] +file = "mods/modernfix.pw.toml" +hash = "c0daa1b0438a80083fed9145abe9760e6d4b0f5d3f091ea12e893c32072c8899" +metafile = true + +[[files]] +file = "mods/modmenu.pw.toml" +hash = "f334786b4fa5a2cb0a6a952fa2a6ab74de3395c2be806045ea3a5905edd75363" +metafile = true + +[[files]] +file = "mods/no-chat-reports.pw.toml" +hash = "a6a57004f5990ae59be0b89eb2edc5f50e2233d0410bd5f8060d58401592e0ef" +metafile = true + +[[files]] +file = "mods/no-resource-pack-warnings.pw.toml" +hash = "c8df23a6f0bd41d2f562b460e94bb3df7df1932298bf7b5081e43dfd7c270fae" +metafile = true + +[[files]] +file = "mods/noisium.pw.toml" +hash = "e5bde0bc121e4e034094552cda7d9cb4a1e23b6f8468fb0c701fa3f790a7dd89" +metafile = true + +[[files]] +file = "mods/nvidium.pw.toml" +hash = "07dd8775324c01058896b4572e23a1ca1c355186cc501c61fc68e1151c5e177c" +metafile = true + +[[files]] +file = "mods/optigui.pw.toml" +hash = "b2db81b53e71fc73306a4a5bafb7a33662e2e3da6d77210db607466cd4c41d49" +metafile = true + +[[files]] +file = "mods/polytone.pw.toml" +hash = "883b162391bc26090229e32efd6ec737385f7b15be8068eb9a5b9e50b1575c98" +metafile = true + +[[files]] +file = "mods/simple-menu.pw.toml" +hash = "f3f087557d61be8f20dd8090fc90275a793c09eb650489abf4713f750f1285f3" +metafile = true + +[[files]] +file = "mods/sodium-shadowy-path-blocks.pw.toml" +hash = "71164245f9e06a916689d4683bd15dec40effbb1a748e353318c243bbee4924e" +metafile = true + +[[files]] +file = "mods/sodium.pw.toml" +hash = "5e73967368d47038c38dc52fa298b45603fbe6baf2608f171638ff767178ad9a" +metafile = true + +[[files]] +file = "mods/threadtweak.pw.toml" +hash = "44593cfab255a73ae00161802962950525bad36716eb00afda5f3e9bc6f4cba9" +metafile = true + +[[files]] +file = "mods/tooltipfix.pw.toml" +hash = "fe592547ec2aedf1de7add34f747f7845e103de228e2426328e9e60fe93298cc" +metafile = true + +[[files]] +file = "mods/transparent.pw.toml" +hash = "5528e99953ed94280442fc103f6cd917d7d2c838f065f77e812b5338e7bcf143" +metafile = true + +[[files]] +file = "mods/ukulib.pw.toml" +hash = "86ccc5953073d5f6ee7689ad3fc849e4d8220df723d3abb43c06e09eb3b9c263" +metafile = true + +[[files]] +file = "mods/yacl.pw.toml" +hash = "e3aab9d877766dfc899ef755c5d61e869fc85dc4ec95ab170057fd4e17407faa" +metafile = true + +[[files]] +file = "mods/yosbr.pw.toml" +hash = "6f6334f336a876088431df70e2bba6ac52ca2ddeb73a4880ce88d6954b09af00" +metafile = true + +[[files]] +file = "resourcepacks/fantasy-texture-pack.pw.toml" +hash = "48c4f191ca9cb49731d334988fd0af3cf178bdf001f2d17441d1155b91bded4a" +metafile = true + +[[files]] +file = "resourcepacks/festive.pw.toml" +hash = "c414e889898da2980ac787cd75097ceb0a5315201344fdbbe86f6963c9a02dc2" +metafile = true + +[[files]] +file = "resourcepacks/halloween-mash-up.pw.toml" +hash = "7ac444426b16ded163d520355138964a1000021a5327be5fc0f9b3c951688ca2" +metafile = true + +[[files]] +file = "resourcepacks/natural-texture-pack.pw.toml" +hash = "87c96f940b75457b86a4aab193256dc4169c0aab32e6bcf9df14a9d8e819c8ee" +metafile = true + +[[files]] +file = "resourcepacks/pacp.pw.toml" +hash = "e4c8e6ad3f82c92b1a23b2d894ff832f51320fc0b77bcf9810e71bc69b7bc9dd" +metafile = true + +[[files]] +file = "resourcepacks/plastic-texture-pack.pw.toml" +hash = "9698417e587bfd6a82ee00425494d569f51df6a03c0156b7efe36d27200152eb" +metafile = true + +[[files]] +file = "resourcepacks/re-console_resources.zip" +hash = "7f747be7a2fdc8e46d190fb8440eacdcd2f379aa4c66a3b1450f2cf06661e6c0" diff --git a/versions/fabric/1.20.4/mods/architectury-api.pw.toml b/versions/fabric/1.20.4/mods/architectury-api.pw.toml new file mode 100644 index 0000000..c5180a0 --- /dev/null +++ b/versions/fabric/1.20.4/mods/architectury-api.pw.toml @@ -0,0 +1,13 @@ +name = "Architectury API" +filename = "architectury-11.1.17-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/kVjQWX0l/architectury-11.1.17-fabric.jar" +hash-format = "sha1" +hash = "578b95d1c3631e614739fa4ac1ca773836950540" + +[update] +[update.modrinth] +mod-id = "lhGA9TYQ" +version = "kVjQWX0l" diff --git a/versions/fabric/1.20.4/mods/ash-api.pw.toml b/versions/fabric/1.20.4/mods/ash-api.pw.toml new file mode 100644 index 0000000..cba5867 --- /dev/null +++ b/versions/fabric/1.20.4/mods/ash-api.pw.toml @@ -0,0 +1,13 @@ +name = "Ash API" +filename = "ash_api-fabric-20.4.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Q8xUICr6/versions/E1xsNpoF/ash_api-fabric-20.4.0.jar" +hash-format = "sha1" +hash = "885e83908724fe8b4d155d61df925a10b4264e70" + +[update] +[update.modrinth] +mod-id = "Q8xUICr6" +version = "E1xsNpoF" diff --git a/versions/fabric/1.20.4/mods/bad-wither-no-cookie.pw.toml b/versions/fabric/1.20.4/mods/bad-wither-no-cookie.pw.toml new file mode 100644 index 0000000..0356ae4 --- /dev/null +++ b/versions/fabric/1.20.4/mods/bad-wither-no-cookie.pw.toml @@ -0,0 +1,13 @@ +name = "Bad Wither No Cookie - Reloaded" +filename = "bwncr-fabric-1.20.4-3.19.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/lL2MtE37/versions/by9f7jcv/bwncr-fabric-1.20.4-3.19.0.jar" +hash-format = "sha1" +hash = "050683e20d19b617011bc565708066fcb663bedd" + +[update] +[update.modrinth] +mod-id = "lL2MtE37" +version = "by9f7jcv" diff --git a/versions/fabric/1.20.4/mods/badoptimizations.pw.toml b/versions/fabric/1.20.4/mods/badoptimizations.pw.toml new file mode 100644 index 0000000..7bb1f85 --- /dev/null +++ b/versions/fabric/1.20.4/mods/badoptimizations.pw.toml @@ -0,0 +1,13 @@ +name = "BadOptimizations" +filename = "BadOptimizations-2.1.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/g96Z4WVZ/versions/zZYSuJ5b/BadOptimizations-2.1.1.jar" +hash-format = "sha1" +hash = "62921e6eb2a33ba95b449d549e52cc763fa6acdb" + +[update] +[update.modrinth] +mod-id = "g96Z4WVZ" +version = "zZYSuJ5b" diff --git a/versions/fabric/1.20.4/mods/better-ping-display-fabric.pw.toml b/versions/fabric/1.20.4/mods/better-ping-display-fabric.pw.toml new file mode 100644 index 0000000..1fa873c --- /dev/null +++ b/versions/fabric/1.20.4/mods/better-ping-display-fabric.pw.toml @@ -0,0 +1,13 @@ +name = "Better Ping Display [Fabric]" +filename = "BetterPingDisplay-Fabric-1.20.4-1.1.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/MS1ZMyR7/versions/cSYrag8g/BetterPingDisplay-Fabric-1.20.4-1.1.1.jar" +hash-format = "sha1" +hash = "aecc3c2dd0c9709da23be5eb10698ef5e35ce036" + +[update] +[update.modrinth] +mod-id = "MS1ZMyR7" +version = "cSYrag8g" diff --git a/versions/fabric/1.20.4/mods/betterhurtcam.pw.toml b/versions/fabric/1.20.4/mods/betterhurtcam.pw.toml new file mode 100644 index 0000000..e39a9f9 --- /dev/null +++ b/versions/fabric/1.20.4/mods/betterhurtcam.pw.toml @@ -0,0 +1,13 @@ +name = "BetterHurtCam" +filename = "betterhurtcam-1.7.0+mc1.20.3.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/o4y0N2hu/versions/hvOcfdjE/betterhurtcam-1.7.0%2Bmc1.20.3.jar" +hash-format = "sha1" +hash = "45542b693ede2400bbd60566e69cd551dcd53dd0" + +[update] +[update.modrinth] +mod-id = "o4y0N2hu" +version = "hvOcfdjE" diff --git a/versions/fabric/1.20.4/mods/bobby.pw.toml b/versions/fabric/1.20.4/mods/bobby.pw.toml new file mode 100644 index 0000000..5d171c8 --- /dev/null +++ b/versions/fabric/1.20.4/mods/bobby.pw.toml @@ -0,0 +1,13 @@ +name = "Bobby" +filename = "bobby-5.1.0+mc1.20.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/M08ruV16/versions/jGGumR4a/bobby-5.1.0%2Bmc1.20.4.jar" +hash-format = "sha1" +hash = "3c4437a3199629377faeda77e50b01577c4da027" + +[update] +[update.modrinth] +mod-id = "M08ruV16" +version = "jGGumR4a" diff --git a/versions/fabric/1.20.4/mods/chat-heads.pw.toml b/versions/fabric/1.20.4/mods/chat-heads.pw.toml new file mode 100644 index 0000000..81af9f7 --- /dev/null +++ b/versions/fabric/1.20.4/mods/chat-heads.pw.toml @@ -0,0 +1,13 @@ +name = "Chat Heads" +filename = "chat_heads-0.12.2-fabric-1.20.3.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/Wb5oqrBJ/versions/4KgMjBc7/chat_heads-0.12.2-fabric-1.20.3.jar" +hash-format = "sha1" +hash = "0e050f5be5790b0c36f953929fbc4cf20541c32e" + +[update] +[update.modrinth] +mod-id = "Wb5oqrBJ" +version = "4KgMjBc7" diff --git a/versions/fabric/1.20.4/mods/cicada.pw.toml b/versions/fabric/1.20.4/mods/cicada.pw.toml new file mode 100644 index 0000000..cf66c21 --- /dev/null +++ b/versions/fabric/1.20.4/mods/cicada.pw.toml @@ -0,0 +1,13 @@ +name = "CICADA" +filename = "cicada-lib-0.7.2+1.20.2-1.20.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/IwCkru1D/versions/bDA9VZEp/cicada-lib-0.7.2%2B1.20.2-1.20.4.jar" +hash-format = "sha1" +hash = "d24e82034c910cc3d8614542787eeb02c9a72e2b" + +[update] +[update.modrinth] +mod-id = "IwCkru1D" +version = "bDA9VZEp" diff --git a/versions/fabric/1.20.4/mods/clean-f3.pw.toml b/versions/fabric/1.20.4/mods/clean-f3.pw.toml new file mode 100644 index 0000000..7a46eb5 --- /dev/null +++ b/versions/fabric/1.20.4/mods/clean-f3.pw.toml @@ -0,0 +1,13 @@ +name = "Clean F3" +filename = "CleanF3-mc1.20.x-0.4.5.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/5lvjfaRs/versions/8fZChfSt/CleanF3-mc1.20.x-0.4.5.jar" +hash-format = "sha1" +hash = "f25cac200c9c5990dcbaecd518de42927aff5ccb" + +[update] +[update.modrinth] +mod-id = "5lvjfaRs" +version = "8fZChfSt" diff --git a/versions/fabric/1.20.4/mods/clientsidenoteblocks.pw.toml b/versions/fabric/1.20.4/mods/clientsidenoteblocks.pw.toml new file mode 100644 index 0000000..a0c413b --- /dev/null +++ b/versions/fabric/1.20.4/mods/clientsidenoteblocks.pw.toml @@ -0,0 +1,13 @@ +name = " Client Side Noteblocks" +filename = "clientsidenoteblocks-2.7+1.20.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/flmhXQgb/versions/C5sCt96K/clientsidenoteblocks-2.7%2B1.20.jar" +hash-format = "sha1" +hash = "c3355bdfb7ee79d3392ed68c6ace334c7f929cd6" + +[update] +[update.modrinth] +mod-id = "flmhXQgb" +version = "C5sCt96K" diff --git a/versions/fabric/1.20.4/mods/cloth-config.pw.toml b/versions/fabric/1.20.4/mods/cloth-config.pw.toml new file mode 100644 index 0000000..c78d980 --- /dev/null +++ b/versions/fabric/1.20.4/mods/cloth-config.pw.toml @@ -0,0 +1,13 @@ +name = "Cloth Config API" +filename = "cloth-config-13.0.121-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9s6osm5g/versions/eBZiZ9NS/cloth-config-13.0.121-fabric.jar" +hash-format = "sha1" +hash = "e20f396a937a09b686aa986c802643b9adbb311e" + +[update] +[update.modrinth] +mod-id = "9s6osm5g" +version = "eBZiZ9NS" diff --git a/versions/fabric/1.20.4/mods/collective.pw.toml b/versions/fabric/1.20.4/mods/collective.pw.toml new file mode 100644 index 0000000..6250aa8 --- /dev/null +++ b/versions/fabric/1.20.4/mods/collective.pw.toml @@ -0,0 +1,13 @@ +name = "Collective" +filename = "collective-1.20.4-7.61.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/e0M1UDsY/versions/jVuY2dwJ/collective-1.20.4-7.61.jar" +hash-format = "sha1" +hash = "385fb7c6ab96821780ae98d66947b960bb404171" + +[update] +[update.modrinth] +mod-id = "e0M1UDsY" +version = "jVuY2dwJ" diff --git a/versions/fabric/1.20.4/mods/combatedit.pw.toml b/versions/fabric/1.20.4/mods/combatedit.pw.toml new file mode 100644 index 0000000..d75004a --- /dev/null +++ b/versions/fabric/1.20.4/mods/combatedit.pw.toml @@ -0,0 +1,13 @@ +name = "CombatEdit" +filename = "combatedit-1.6.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/lPGbDmfW/versions/mKEDUJHt/combatedit-1.6.3.jar" +hash-format = "sha1" +hash = "f976ddcb4ddeb47c8958988a070ae488f4992c2e" + +[update] +[update.modrinth] +mod-id = "lPGbDmfW" +version = "mKEDUJHt" diff --git a/versions/fabric/1.20.4/mods/cubes-without-borders.pw.toml b/versions/fabric/1.20.4/mods/cubes-without-borders.pw.toml new file mode 100644 index 0000000..41a5bf4 --- /dev/null +++ b/versions/fabric/1.20.4/mods/cubes-without-borders.pw.toml @@ -0,0 +1,13 @@ +name = "Cubes Without Borders" +filename = "cubes-without-borders-1.1.0+1.20.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/ETlrkaYF/versions/IQtaUFAv/cubes-without-borders-1.1.0%2B1.20.jar" +hash-format = "sha1" +hash = "e54a2c4b4817efb93a2ce7cb78bf8a2d1136b6cd" + +[update] +[update.modrinth] +mod-id = "ETlrkaYF" +version = "IQtaUFAv" diff --git a/versions/fabric/1.20.4/mods/cull-less-leaves.pw.toml b/versions/fabric/1.20.4/mods/cull-less-leaves.pw.toml new file mode 100644 index 0000000..fc15184 --- /dev/null +++ b/versions/fabric/1.20.4/mods/cull-less-leaves.pw.toml @@ -0,0 +1,13 @@ +name = "Cull Less Leaves" +filename = "CullLessLeaves-1.3.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/iG6ZHsUV/versions/TFvkv8XK/CullLessLeaves-1.3.0.jar" +hash-format = "sha1" +hash = "83380456dab54b8ac790b84a0f4f39a1404e6bc5" + +[update] +[update.modrinth] +mod-id = "iG6ZHsUV" +version = "TFvkv8XK" diff --git a/versions/fabric/1.20.4/mods/debugify.pw.toml b/versions/fabric/1.20.4/mods/debugify.pw.toml new file mode 100644 index 0000000..1389c06 --- /dev/null +++ b/versions/fabric/1.20.4/mods/debugify.pw.toml @@ -0,0 +1,13 @@ +name = "Debugify" +filename = "Debugify-1.20.4+1.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/QwxR6Gcd/versions/aQYNRsGo/Debugify-1.20.4%2B1.1.jar" +hash-format = "sha1" +hash = "248cd69236eed33faca6a08c4ba535c7249a0528" + +[update] +[update.modrinth] +mod-id = "QwxR6Gcd" +version = "aQYNRsGo" diff --git a/versions/fabric/1.20.4/mods/dynamic-fps.pw.toml b/versions/fabric/1.20.4/mods/dynamic-fps.pw.toml new file mode 100644 index 0000000..dc50547 --- /dev/null +++ b/versions/fabric/1.20.4/mods/dynamic-fps.pw.toml @@ -0,0 +1,13 @@ +name = "Dynamic FPS" +filename = "dynamic-fps-3.4.3+minecraft-1.20.0-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/LQ3K71Q1/versions/48hFxWw7/dynamic-fps-3.4.3%2Bminecraft-1.20.0-fabric.jar" +hash-format = "sha1" +hash = "30b60a63c1dc1688f16ac3a8ef97d76b71397d97" + +[update] +[update.modrinth] +mod-id = "LQ3K71Q1" +version = "48hFxWw7" diff --git a/versions/fabric/1.20.4/mods/e4mc.pw.toml b/versions/fabric/1.20.4/mods/e4mc.pw.toml new file mode 100644 index 0000000..bf8ea52 --- /dev/null +++ b/versions/fabric/1.20.4/mods/e4mc.pw.toml @@ -0,0 +1,13 @@ +name = "e4mc" +filename = "e4mc_minecraft-5.0.0-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qANg5Jrr/versions/bvr50NJe/e4mc_minecraft-5.0.0-fabric.jar" +hash-format = "sha1" +hash = "41f45402c2af136a8654688f23931d6ecde18f3c" + +[update] +[update.modrinth] +mod-id = "qANg5Jrr" +version = "bvr50NJe" diff --git a/versions/fabric/1.20.4/mods/emuno.pw.toml b/versions/fabric/1.20.4/mods/emuno.pw.toml new file mode 100644 index 0000000..f04646c --- /dev/null +++ b/versions/fabric/1.20.4/mods/emuno.pw.toml @@ -0,0 +1,13 @@ +name = "EmuNO" +filename = "emuno-1.1.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/RLrPqrNI/versions/Rt34JLkK/emuno-1.1.1.jar" +hash-format = "sha1" +hash = "851deb11c20f2a7a43ae19919bed4f436483a033" + +[update] +[update.modrinth] +mod-id = "RLrPqrNI" +version = "Rt34JLkK" diff --git a/versions/fabric/1.20.4/mods/entity-model-features.pw.toml b/versions/fabric/1.20.4/mods/entity-model-features.pw.toml new file mode 100644 index 0000000..8cb4c0e --- /dev/null +++ b/versions/fabric/1.20.4/mods/entity-model-features.pw.toml @@ -0,0 +1,13 @@ +name = "[EMF] Entity Model Features" +filename = "entity_model_features_fabric_1.20.4-2.0.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/4I1XuqiY/versions/FTmtYNdf/entity_model_features_fabric_1.20.4-2.0.2.jar" +hash-format = "sha1" +hash = "a89cc56a905536aec3fb1ee73681b04c6976da63" + +[update] +[update.modrinth] +mod-id = "4I1XuqiY" +version = "FTmtYNdf" diff --git a/versions/fabric/1.20.4/mods/entityculling.pw.toml b/versions/fabric/1.20.4/mods/entityculling.pw.toml new file mode 100644 index 0000000..2fde3ca --- /dev/null +++ b/versions/fabric/1.20.4/mods/entityculling.pw.toml @@ -0,0 +1,13 @@ +name = "Entity Culling" +filename = "entityculling-fabric-1.6.5-mc1.20.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/hyejM5za/entityculling-fabric-1.6.5-mc1.20.4.jar" +hash-format = "sha1" +hash = "3cf9da857136df6574c7dbad57c427eb0d2751af" + +[update] +[update.modrinth] +mod-id = "NNAgCjsB" +version = "hyejM5za" diff --git a/versions/fabric/1.20.4/mods/entitytexturefeatures.pw.toml b/versions/fabric/1.20.4/mods/entitytexturefeatures.pw.toml new file mode 100644 index 0000000..1ce1643 --- /dev/null +++ b/versions/fabric/1.20.4/mods/entitytexturefeatures.pw.toml @@ -0,0 +1,13 @@ +name = "[ETF] Entity Texture Features" +filename = "entity_texture_features_fabric_1.20.4-6.0.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/BVzZfTc1/versions/5a6694zO/entity_texture_features_fabric_1.20.4-6.0.1.jar" +hash-format = "sha1" +hash = "3d4a9462cc2d76bcde4042a83f708efe20b5d567" + +[update] +[update.modrinth] +mod-id = "BVzZfTc1" +version = "5a6694zO" diff --git a/versions/fabric/1.20.4/mods/fabric-api.pw.toml b/versions/fabric/1.20.4/mods/fabric-api.pw.toml new file mode 100644 index 0000000..432a3a0 --- /dev/null +++ b/versions/fabric/1.20.4/mods/fabric-api.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric API" +filename = "fabric-api-0.97.1+1.20.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/tAwdMmKY/fabric-api-0.97.1%2B1.20.4.jar" +hash-format = "sha1" +hash = "37e7e83a2cea7b8717f798e30c5a288d840b4244" + +[update] +[update.modrinth] +mod-id = "P7dR8mSH" +version = "tAwdMmKY" diff --git a/versions/fabric/1.20.4/mods/fabric-language-kotlin.pw.toml b/versions/fabric/1.20.4/mods/fabric-language-kotlin.pw.toml new file mode 100644 index 0000000..6f719ee --- /dev/null +++ b/versions/fabric/1.20.4/mods/fabric-language-kotlin.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric Language Kotlin" +filename = "fabric-language-kotlin-1.11.0+kotlin.2.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/afsFajDC/fabric-language-kotlin-1.11.0%2Bkotlin.2.0.0.jar" +hash-format = "sha1" +hash = "4f5b3f0d773c4cc9e79d2f5ede3a637e78737f6d" + +[update] +[update.modrinth] +mod-id = "Ha28R6CL" +version = "afsFajDC" diff --git a/versions/fabric/1.20.4/mods/fabricskyboxes-interop.pw.toml b/versions/fabric/1.20.4/mods/fabricskyboxes-interop.pw.toml new file mode 100644 index 0000000..da7d97f --- /dev/null +++ b/versions/fabric/1.20.4/mods/fabricskyboxes-interop.pw.toml @@ -0,0 +1,13 @@ +name = "FabricSkyBoxes Interop" +filename = "fsb-interop-1.3.6+mc1.20.2-build.52.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/HpdHOPOp/versions/Y9X3wWP7/fsb-interop-1.3.6%2Bmc1.20.2-build.52.jar" +hash-format = "sha1" +hash = "f7c17f6c6bc49f5078e9631019f544b4dd696420" + +[update] +[update.modrinth] +mod-id = "HpdHOPOp" +version = "Y9X3wWP7" diff --git a/versions/fabric/1.20.4/mods/fabricskyboxes.pw.toml b/versions/fabric/1.20.4/mods/fabricskyboxes.pw.toml new file mode 100644 index 0000000..c71b541 --- /dev/null +++ b/versions/fabric/1.20.4/mods/fabricskyboxes.pw.toml @@ -0,0 +1,13 @@ +name = "FabricSkyboxes" +filename = "fabricskyboxes-0.7.3+mc1.20.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/YBz7DOs8/versions/XGzaAlX8/fabricskyboxes-0.7.3%2Bmc1.20.2.jar" +hash-format = "sha1" +hash = "6ce1e8f99a901fd2e4e5f84d529e60f425b172ca" + +[update] +[update.modrinth] +mod-id = "YBz7DOs8" +version = "XGzaAlX8" diff --git a/versions/fabric/1.20.4/mods/fabrishot.pw.toml b/versions/fabric/1.20.4/mods/fabrishot.pw.toml new file mode 100644 index 0000000..ed9346c --- /dev/null +++ b/versions/fabric/1.20.4/mods/fabrishot.pw.toml @@ -0,0 +1,13 @@ +name = "Fabrishot" +filename = "fabrishot-1.12.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/3qsfQtE9/versions/crC7YOpw/fabrishot-1.12.1.jar" +hash-format = "sha1" +hash = "c348c0966a2169a67f6a40f80a85c699104a8642" + +[update] +[update.modrinth] +mod-id = "3qsfQtE9" +version = "crC7YOpw" diff --git a/versions/fabric/1.20.4/mods/fastquit.pw.toml b/versions/fabric/1.20.4/mods/fastquit.pw.toml new file mode 100644 index 0000000..e7811bf --- /dev/null +++ b/versions/fabric/1.20.4/mods/fastquit.pw.toml @@ -0,0 +1,13 @@ +name = "FastQuit" +filename = "fastquit-3.0.0+1.20.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/x1hIzbuY/versions/vOAKK0JB/fastquit-3.0.0%2B1.20.4.jar" +hash-format = "sha1" +hash = "c1340863cc8d61219785c16163156dc748a70763" + +[update] +[update.modrinth] +mod-id = "x1hIzbuY" +version = "vOAKK0JB" diff --git a/versions/fabric/1.20.4/mods/ferrite-core.pw.toml b/versions/fabric/1.20.4/mods/ferrite-core.pw.toml new file mode 100644 index 0000000..8aa2013 --- /dev/null +++ b/versions/fabric/1.20.4/mods/ferrite-core.pw.toml @@ -0,0 +1,13 @@ +name = "FerriteCore" +filename = "ferritecore-6.0.3-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/uXXizFIs/versions/pguEMpy9/ferritecore-6.0.3-fabric.jar" +hash-format = "sha1" +hash = "f2bbb773f4213d36201b76820f206e2a6f213c0c" + +[update] +[update.modrinth] +mod-id = "uXXizFIs" +version = "pguEMpy9" diff --git a/versions/fabric/1.20.4/mods/forge-config-api-port.pw.toml b/versions/fabric/1.20.4/mods/forge-config-api-port.pw.toml new file mode 100644 index 0000000..42f667c --- /dev/null +++ b/versions/fabric/1.20.4/mods/forge-config-api-port.pw.toml @@ -0,0 +1,13 @@ +name = "Forge Config API Port" +filename = "ForgeConfigAPIPort-v20.4.3-1.20.4-Fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ohNO6lps/versions/xbVGsTLe/ForgeConfigAPIPort-v20.4.3-1.20.4-Fabric.jar" +hash-format = "sha1" +hash = "d868c7cc72c0d3dc933baa4ef99eb63662a70c90" + +[update] +[update.modrinth] +mod-id = "ohNO6lps" +version = "xbVGsTLe" diff --git a/versions/fabric/1.20.4/mods/immediatelyfast.pw.toml b/versions/fabric/1.20.4/mods/immediatelyfast.pw.toml new file mode 100644 index 0000000..7890d1d --- /dev/null +++ b/versions/fabric/1.20.4/mods/immediatelyfast.pw.toml @@ -0,0 +1,13 @@ +name = "ImmediatelyFast" +filename = "ImmediatelyFast-Fabric-1.2.17+1.20.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/5ZwdcRci/versions/115Ubn3O/ImmediatelyFast-Fabric-1.2.17%2B1.20.4.jar" +hash-format = "sha1" +hash = "7c21b91ac4bcd1c7c5c079fdbfb89002a31a24bd" + +[update] +[update.modrinth] +mod-id = "5ZwdcRci" +version = "115Ubn3O" diff --git a/versions/fabric/1.20.4/mods/indium.pw.toml b/versions/fabric/1.20.4/mods/indium.pw.toml new file mode 100644 index 0000000..dfdd708 --- /dev/null +++ b/versions/fabric/1.20.4/mods/indium.pw.toml @@ -0,0 +1,13 @@ +name = "Indium" +filename = "indium-1.0.30+mc1.20.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/Orvt0mRa/versions/Aouse6P7/indium-1.0.30%2Bmc1.20.4.jar" +hash-format = "sha1" +hash = "b24233f29c0ce4802c61ea8998e01e6e4580ae60" + +[update] +[update.modrinth] +mod-id = "Orvt0mRa" +version = "Aouse6P7" diff --git a/versions/fabric/1.20.4/mods/infinite-music.pw.toml b/versions/fabric/1.20.4/mods/infinite-music.pw.toml new file mode 100644 index 0000000..775791f --- /dev/null +++ b/versions/fabric/1.20.4/mods/infinite-music.pw.toml @@ -0,0 +1,13 @@ +name = "Music Delay Remover (Infinite Music)" +filename = "infinite-music-0.4.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/OJLdOa8k/versions/lpr2rxYz/infinite-music-0.4.0.jar" +hash-format = "sha1" +hash = "d402ad198f575b4673aa0d242d6d6ca7c63aeb2e" + +[update] +[update.modrinth] +mod-id = "OJLdOa8k" +version = "lpr2rxYz" diff --git a/versions/fabric/1.20.4/mods/language-reload.pw.toml b/versions/fabric/1.20.4/mods/language-reload.pw.toml new file mode 100644 index 0000000..18d3cc4 --- /dev/null +++ b/versions/fabric/1.20.4/mods/language-reload.pw.toml @@ -0,0 +1,13 @@ +name = "Language Reload" +filename = "language-reload-1.6.1+1.20.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/uLbm7CG6/versions/x824YAov/language-reload-1.6.1%2B1.20.4.jar" +hash-format = "sha1" +hash = "8e443ef4503bb172bd3f1a6fc9fba7219c22c826" + +[update] +[update.modrinth] +mod-id = "uLbm7CG6" +version = "x824YAov" diff --git a/versions/fabric/1.20.4/mods/legacy-mipmaps.pw.toml b/versions/fabric/1.20.4/mods/legacy-mipmaps.pw.toml new file mode 100644 index 0000000..19bac7a --- /dev/null +++ b/versions/fabric/1.20.4/mods/legacy-mipmaps.pw.toml @@ -0,0 +1,13 @@ +name = "Legacy Mipmaps" +filename = "legacy-mipmaps-1.1.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/27fXQT3n/versions/gbVcSzu8/legacy-mipmaps-1.1.0.jar" +hash-format = "sha1" +hash = "cafc8ccb131fd80d8a06ecb01452e1c65ec7146c" + +[update] +[update.modrinth] +mod-id = "27fXQT3n" +version = "gbVcSzu8" diff --git a/versions/fabric/1.20.4/mods/legacy4j.pw.toml b/versions/fabric/1.20.4/mods/legacy4j.pw.toml new file mode 100644 index 0000000..d7965fd --- /dev/null +++ b/versions/fabric/1.20.4/mods/legacy4j.pw.toml @@ -0,0 +1,13 @@ +name = "Legacy4J" +filename = "Legacy4J-1.20.4-1.6.7-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gHvKJofA/versions/uGjQureR/Legacy4J-1.20.4-1.6.7-fabric.jar" +hash-format = "sha1" +hash = "ad48f37507a81a341f96bd04d29ca158af35bff0" + +[update] +[update.modrinth] +mod-id = "gHvKJofA" +version = "uGjQureR" diff --git a/versions/fabric/1.20.4/mods/lithium.pw.toml b/versions/fabric/1.20.4/mods/lithium.pw.toml new file mode 100644 index 0000000..117fad8 --- /dev/null +++ b/versions/fabric/1.20.4/mods/lithium.pw.toml @@ -0,0 +1,13 @@ +name = "Lithium" +filename = "lithium-fabric-mc1.20.4-0.12.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/nMhjKWVE/lithium-fabric-mc1.20.4-0.12.1.jar" +hash-format = "sha1" +hash = "4a0744beb2246d93cb475d21a5a53faa556956e0" + +[update] +[update.modrinth] +mod-id = "gvQqBUqZ" +version = "nMhjKWVE" diff --git a/versions/fabric/1.20.4/mods/midnightlib.pw.toml b/versions/fabric/1.20.4/mods/midnightlib.pw.toml new file mode 100644 index 0000000..2cda97e --- /dev/null +++ b/versions/fabric/1.20.4/mods/midnightlib.pw.toml @@ -0,0 +1,13 @@ +name = "MidnightLib" +filename = "midnightlib-fabric-1.5.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/codAaoxh/versions/EQNuBJf5/midnightlib-fabric-1.5.3.jar" +hash-format = "sha1" +hash = "46eab4d677a14f59643856e9446e078a928af1b6" + +[update] +[update.modrinth] +mod-id = "codAaoxh" +version = "EQNuBJf5" diff --git a/versions/fabric/1.20.4/mods/modelfix.pw.toml b/versions/fabric/1.20.4/mods/modelfix.pw.toml new file mode 100644 index 0000000..0711524 --- /dev/null +++ b/versions/fabric/1.20.4/mods/modelfix.pw.toml @@ -0,0 +1,13 @@ +name = "Model Gap Fix" +filename = "modelfix-1.14-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/QdG47OkI/versions/r6uVoUxU/modelfix-1.14-fabric.jar" +hash-format = "sha1" +hash = "7c6a38565820d9c1941eb9d1aadaae75cb11ed8b" + +[update] +[update.modrinth] +mod-id = "QdG47OkI" +version = "r6uVoUxU" diff --git a/versions/fabric/1.20.4/mods/moderner-beta.pw.toml b/versions/fabric/1.20.4/mods/moderner-beta.pw.toml new file mode 100644 index 0000000..7bb04cf --- /dev/null +++ b/versions/fabric/1.20.4/mods/moderner-beta.pw.toml @@ -0,0 +1,13 @@ +name = "Moderner Beta" +filename = "moderner-beta-fabric-6.5+er1.3.1+1.20.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/xkrdwmh2/versions/YwjEhIT0/moderner-beta-fabric-6.5%2Ber1.3.1%2B1.20.4.jar" +hash-format = "sha1" +hash = "14aa85eb0b001aae395cef19530dc845b9097c75" + +[update] +[update.modrinth] +mod-id = "xkrdwmh2" +version = "YwjEhIT0" diff --git a/versions/fabric/1.20.4/mods/modernfix.pw.toml b/versions/fabric/1.20.4/mods/modernfix.pw.toml new file mode 100644 index 0000000..5cced59 --- /dev/null +++ b/versions/fabric/1.20.4/mods/modernfix.pw.toml @@ -0,0 +1,13 @@ +name = "ModernFix" +filename = "modernfix-fabric-5.17.0+mc1.20.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/nmDcB62a/versions/CV2Vtn5m/modernfix-fabric-5.17.0%2Bmc1.20.4.jar" +hash-format = "sha1" +hash = "cf5f1f0db74b0385c2738c6fbf8347e7e68100d6" + +[update] +[update.modrinth] +mod-id = "nmDcB62a" +version = "CV2Vtn5m" diff --git a/versions/fabric/1.20.4/mods/modmenu.pw.toml b/versions/fabric/1.20.4/mods/modmenu.pw.toml new file mode 100644 index 0000000..26e127f --- /dev/null +++ b/versions/fabric/1.20.4/mods/modmenu.pw.toml @@ -0,0 +1,13 @@ +name = "Mod Menu" +filename = "modmenu-9.2.0-beta.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/ybV7vGT5/modmenu-9.2.0-beta.2.jar" +hash-format = "sha1" +hash = "ae50f27e17e1c6b9da1293c391729f4bd5e63f65" + +[update] +[update.modrinth] +mod-id = "mOgUt4GM" +version = "ybV7vGT5" diff --git a/versions/fabric/1.20.4/mods/no-chat-reports.pw.toml b/versions/fabric/1.20.4/mods/no-chat-reports.pw.toml new file mode 100644 index 0000000..a47b819 --- /dev/null +++ b/versions/fabric/1.20.4/mods/no-chat-reports.pw.toml @@ -0,0 +1,13 @@ +name = "No Chat Reports" +filename = "NoChatReports-FABRIC-1.20.4-v2.6.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qQyHxfxd/versions/Pjto4zdj/NoChatReports-FABRIC-1.20.4-v2.6.1.jar" +hash-format = "sha1" +hash = "f9eb4355b82719c2a40607878dfd61ded138f69e" + +[update] +[update.modrinth] +mod-id = "qQyHxfxd" +version = "Pjto4zdj" diff --git a/versions/fabric/1.20.4/mods/no-resource-pack-warnings.pw.toml b/versions/fabric/1.20.4/mods/no-resource-pack-warnings.pw.toml new file mode 100644 index 0000000..98267ca --- /dev/null +++ b/versions/fabric/1.20.4/mods/no-resource-pack-warnings.pw.toml @@ -0,0 +1,13 @@ +name = "No Resource Pack Warnings" +filename = "no-resource-pack-warnings-1.3.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/6xKUDQcB/versions/Cs4frYPf/no-resource-pack-warnings-1.3.0.jar" +hash-format = "sha1" +hash = "cf429f2de37fc3cd91980ef05bbf75396a3ffddb" + +[update] +[update.modrinth] +mod-id = "6xKUDQcB" +version = "Cs4frYPf" diff --git a/versions/fabric/1.20.4/mods/noisium.pw.toml b/versions/fabric/1.20.4/mods/noisium.pw.toml new file mode 100644 index 0000000..824cc5b --- /dev/null +++ b/versions/fabric/1.20.4/mods/noisium.pw.toml @@ -0,0 +1,13 @@ +name = "Noisium" +filename = "noisium-fabric-2.0.3+mc1.20.2-1.20.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/KuNKN7d2/versions/Eie3f6ki/noisium-fabric-2.0.3%2Bmc1.20.2-1.20.4.jar" +hash-format = "sha1" +hash = "17d17b58adea358d867e3c4bf3de364ae7392338" + +[update] +[update.modrinth] +mod-id = "KuNKN7d2" +version = "Eie3f6ki" diff --git a/versions/fabric/1.20.4/mods/nvidium.pw.toml b/versions/fabric/1.20.4/mods/nvidium.pw.toml new file mode 100644 index 0000000..d8173b9 --- /dev/null +++ b/versions/fabric/1.20.4/mods/nvidium.pw.toml @@ -0,0 +1,13 @@ +name = "Nvidium" +filename = "nvidium-0.2.6-beta.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/SfMw2IZN/versions/J2fuM58R/nvidium-0.2.6-beta.jar" +hash-format = "sha1" +hash = "ce0c8504cfc397b53227119230e3ae5fdf851d42" + +[update] +[update.modrinth] +mod-id = "SfMw2IZN" +version = "J2fuM58R" diff --git a/versions/fabric/1.20.4/mods/optigui.pw.toml b/versions/fabric/1.20.4/mods/optigui.pw.toml new file mode 100644 index 0000000..4e5c480 --- /dev/null +++ b/versions/fabric/1.20.4/mods/optigui.pw.toml @@ -0,0 +1,13 @@ +name = "OptiGUI" +filename = "optigui-2.3.0-beta.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/JuksLGBQ/versions/pUVuXS69/optigui-2.3.0-beta.2.jar" +hash-format = "sha1" +hash = "7da1eeccdb999f2aaa2353e690a83ef5fbce6eaa" + +[update] +[update.modrinth] +mod-id = "JuksLGBQ" +version = "pUVuXS69" diff --git a/versions/fabric/1.20.4/mods/polytone.pw.toml b/versions/fabric/1.20.4/mods/polytone.pw.toml new file mode 100644 index 0000000..9ae86eb --- /dev/null +++ b/versions/fabric/1.20.4/mods/polytone.pw.toml @@ -0,0 +1,13 @@ +name = "Polytone" +filename = "polytone-1.20.4-1.18.10-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/3qAYkBMB/versions/J39ptUd8/polytone-1.20.4-1.18.10-fabric.jar" +hash-format = "sha1" +hash = "221b6a55e2bea8bbd48c55653b7ac698d8da9e4c" + +[update] +[update.modrinth] +mod-id = "3qAYkBMB" +version = "J39ptUd8" diff --git a/versions/fabric/1.20.4/mods/simple-menu.pw.toml b/versions/fabric/1.20.4/mods/simple-menu.pw.toml new file mode 100644 index 0000000..fd9347b --- /dev/null +++ b/versions/fabric/1.20.4/mods/simple-menu.pw.toml @@ -0,0 +1,13 @@ +name = "Simple Menu" +filename = "simplemenu-1.20.4-1.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/6pdhya1q/versions/pqUwjpqD/simplemenu-1.20.4-1.1.jar" +hash-format = "sha1" +hash = "e4a07535fd02a9000aacd33b7937dbc76ef55fb8" + +[update] +[update.modrinth] +mod-id = "6pdhya1q" +version = "pqUwjpqD" diff --git a/versions/fabric/1.20.4/mods/sodium-shadowy-path-blocks.pw.toml b/versions/fabric/1.20.4/mods/sodium-shadowy-path-blocks.pw.toml new file mode 100644 index 0000000..6dfa966 --- /dev/null +++ b/versions/fabric/1.20.4/mods/sodium-shadowy-path-blocks.pw.toml @@ -0,0 +1,13 @@ +name = "Sodium Shadowy Path Blocks" +filename = "sodium-shadowy-path-blocks-3.3.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/EIa1eiMm/versions/hnQBKLCn/sodium-shadowy-path-blocks-3.3.0.jar" +hash-format = "sha1" +hash = "96e0844be3843e3973ffe5eabf17a67affe66e61" + +[update] +[update.modrinth] +mod-id = "EIa1eiMm" +version = "hnQBKLCn" diff --git a/versions/fabric/1.20.4/mods/sodium.pw.toml b/versions/fabric/1.20.4/mods/sodium.pw.toml new file mode 100644 index 0000000..2c457d3 --- /dev/null +++ b/versions/fabric/1.20.4/mods/sodium.pw.toml @@ -0,0 +1,13 @@ +name = "Sodium" +filename = "sodium-fabric-0.5.8+mc1.20.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/AANobbMI/versions/4GyXKCLd/sodium-fabric-0.5.8%2Bmc1.20.4.jar" +hash-format = "sha1" +hash = "4c38d7b01660a27a98406767c613b3f28b6c9dfe" + +[update] +[update.modrinth] +mod-id = "AANobbMI" +version = "4GyXKCLd" diff --git a/versions/fabric/1.20.4/mods/threadtweak.pw.toml b/versions/fabric/1.20.4/mods/threadtweak.pw.toml new file mode 100644 index 0000000..1911059 --- /dev/null +++ b/versions/fabric/1.20.4/mods/threadtweak.pw.toml @@ -0,0 +1,13 @@ +name = "ThreadTweak" +filename = "threadtweak-fabric-1.20.4-0.1.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/vSEH1ERy/versions/pc1QuN32/threadtweak-fabric-1.20.4-0.1.2.jar" +hash-format = "sha1" +hash = "2a1b1b57d241b6e34f04276b54a3682e1769a419" + +[update] +[update.modrinth] +mod-id = "vSEH1ERy" +version = "pc1QuN32" diff --git a/versions/fabric/1.20.4/mods/tooltipfix.pw.toml b/versions/fabric/1.20.4/mods/tooltipfix.pw.toml new file mode 100644 index 0000000..d22eb93 --- /dev/null +++ b/versions/fabric/1.20.4/mods/tooltipfix.pw.toml @@ -0,0 +1,13 @@ +name = "ToolTipFix" +filename = "tooltipfix-1.1.1-1.20.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/2RKFTmiB/versions/B2L4LeMV/tooltipfix-1.1.1-1.20.jar" +hash-format = "sha1" +hash = "de704792c691e3d19316c87c21c9ad2bee6c66c3" + +[update] +[update.modrinth] +mod-id = "2RKFTmiB" +version = "B2L4LeMV" diff --git a/versions/fabric/1.20.4/mods/transparent.pw.toml b/versions/fabric/1.20.4/mods/transparent.pw.toml new file mode 100644 index 0000000..9a041cc --- /dev/null +++ b/versions/fabric/1.20.4/mods/transparent.pw.toml @@ -0,0 +1,13 @@ +name = "Transparent" +filename = "transparent-fabric-20.4.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/zp4jb9oQ/versions/1K4rbxoP/transparent-fabric-20.4.1.jar" +hash-format = "sha1" +hash = "850aadeb4fff6277d35214fa7296f8530833f587" + +[update] +[update.modrinth] +mod-id = "zp4jb9oQ" +version = "1K4rbxoP" diff --git a/versions/fabric/1.20.4/mods/ukulib.pw.toml b/versions/fabric/1.20.4/mods/ukulib.pw.toml new file mode 100644 index 0000000..f5db5cd --- /dev/null +++ b/versions/fabric/1.20.4/mods/ukulib.pw.toml @@ -0,0 +1,13 @@ +name = "ukulib" +filename = "ukulib-1.1.2+1.20.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/Y8uFrUil/versions/1pdmPwYS/ukulib-1.1.2%2B1.20.4.jar" +hash-format = "sha1" +hash = "ff92bd7ce0367d25240bba3b8db0cab5e865ba46" + +[update] +[update.modrinth] +mod-id = "Y8uFrUil" +version = "1pdmPwYS" diff --git a/versions/fabric/1.20.4/mods/yacl.pw.toml b/versions/fabric/1.20.4/mods/yacl.pw.toml new file mode 100644 index 0000000..767c7b2 --- /dev/null +++ b/versions/fabric/1.20.4/mods/yacl.pw.toml @@ -0,0 +1,13 @@ +name = "YetAnotherConfigLib" +filename = "YetAnotherConfigLib-3.4.4+1.20.4-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/G2PcCpZl/YetAnotherConfigLib-3.4.4%2B1.20.4-fabric.jar" +hash-format = "sha1" +hash = "d2da93ea3ac054f03234c99fd3277d0eda85b29c" + +[update] +[update.modrinth] +mod-id = "1eAoo2KR" +version = "G2PcCpZl" diff --git a/versions/fabric/1.20.4/mods/yosbr.pw.toml b/versions/fabric/1.20.4/mods/yosbr.pw.toml new file mode 100644 index 0000000..679fe0d --- /dev/null +++ b/versions/fabric/1.20.4/mods/yosbr.pw.toml @@ -0,0 +1,13 @@ +name = "Your Options Shall Be Respected (YOSBR)" +filename = "yosbr-0.1.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/WwbubTsV/versions/KMOzdYko/yosbr-0.1.2.jar" +hash-format = "sha1" +hash = "f0340e9c0bc95d67f3f3e9c1cd79b61054af11f9" + +[update] +[update.modrinth] +mod-id = "WwbubTsV" +version = "KMOzdYko" diff --git a/versions/fabric/1.20.4/pack.toml b/versions/fabric/1.20.4/pack.toml new file mode 100644 index 0000000..923abe2 --- /dev/null +++ b/versions/fabric/1.20.4/pack.toml @@ -0,0 +1,13 @@ +name = "Re-Console" +author = "ViolaFlower" +version = "0.5.3+mc1.20.4" +pack-format = "packwiz:1.1.0" + +[index] +file = "index.toml" +hash-format = "sha256" +hash = "e77e642457410f4c5b4ee3cd1ef82dbfbd19950a01a7ffa5025d3470d86fc155" + +[versions] +fabric = "0.15.11" +minecraft = "1.20.4" diff --git a/versions/fabric/1.20.4/resourcepacks/fantasy-texture-pack.pw.toml b/versions/fabric/1.20.4/resourcepacks/fantasy-texture-pack.pw.toml new file mode 100644 index 0000000..764cb8b --- /dev/null +++ b/versions/fabric/1.20.4/resourcepacks/fantasy-texture-pack.pw.toml @@ -0,0 +1,13 @@ +name = "Fantasy Texture Pack" +filename = "FantasyTexturePack.zip" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/kFbEIMmd/versions/G6LlKRfc/FantasyTexturePack.zip" +hash-format = "sha1" +hash = "eb08006bebab92af8e3ec938b88889f45c6f6c45" + +[update] +[update.modrinth] +mod-id = "kFbEIMmd" +version = "G6LlKRfc" diff --git a/versions/fabric/1.20.4/resourcepacks/festive.pw.toml b/versions/fabric/1.20.4/resourcepacks/festive.pw.toml new file mode 100644 index 0000000..bc496b5 --- /dev/null +++ b/versions/fabric/1.20.4/resourcepacks/festive.pw.toml @@ -0,0 +1,13 @@ +name = "Festive Mash-up" +filename = "Festive.zip" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/pE8Ji9UH/versions/QbNwYqNw/Festive.zip" +hash-format = "sha1" +hash = "393a00097cbd11e7fc9f6d3daadc2c763590c51e" + +[update] +[update.modrinth] +mod-id = "pE8Ji9UH" +version = "QbNwYqNw" diff --git a/versions/fabric/1.20.4/resourcepacks/halloween-mash-up.pw.toml b/versions/fabric/1.20.4/resourcepacks/halloween-mash-up.pw.toml new file mode 100644 index 0000000..a3fc26e --- /dev/null +++ b/versions/fabric/1.20.4/resourcepacks/halloween-mash-up.pw.toml @@ -0,0 +1,13 @@ +name = "Halloween Mash-up" +filename = "Halloween.zip" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/mXZavX3c/versions/dGqVuTAi/Halloween.zip" +hash-format = "sha1" +hash = "a520987e45433321a4556bb8f03b6c6999caad1b" + +[update] +[update.modrinth] +mod-id = "mXZavX3c" +version = "dGqVuTAi" diff --git a/versions/fabric/1.20.4/resourcepacks/natural-texture-pack.pw.toml b/versions/fabric/1.20.4/resourcepacks/natural-texture-pack.pw.toml new file mode 100644 index 0000000..7315ae2 --- /dev/null +++ b/versions/fabric/1.20.4/resourcepacks/natural-texture-pack.pw.toml @@ -0,0 +1,13 @@ +name = "Natural Texture Pack" +filename = "Natural Texture Pack.zip" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/wl6YG9AY/versions/V3lUQwg8/Natural%20Texture%20Pack.zip" +hash-format = "sha1" +hash = "04cbc5f631f9ef100db00a8cf528fb7be0b467f4" + +[update] +[update.modrinth] +mod-id = "wl6YG9AY" +version = "V3lUQwg8" diff --git a/versions/fabric/1.20.4/resourcepacks/pacp.pw.toml b/versions/fabric/1.20.4/resourcepacks/pacp.pw.toml new file mode 100644 index 0000000..1105612 --- /dev/null +++ b/versions/fabric/1.20.4/resourcepacks/pacp.pw.toml @@ -0,0 +1,13 @@ +name = "Programmer Art Continuation Project" +filename = "PACP 1.8 Beta 3 Comparity Version.zip" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/gx2HeuWD/versions/eeO5iL33/PACP%201.8%20Beta%203%20Comparity%20Version.zip" +hash-format = "sha1" +hash = "fce564c35c802c51dc21b217d81d4843aa93ecc8" + +[update] +[update.modrinth] +mod-id = "gx2HeuWD" +version = "eeO5iL33" diff --git a/versions/fabric/1.20.4/resourcepacks/plastic-texture-pack.pw.toml b/versions/fabric/1.20.4/resourcepacks/plastic-texture-pack.pw.toml new file mode 100644 index 0000000..25cd43f --- /dev/null +++ b/versions/fabric/1.20.4/resourcepacks/plastic-texture-pack.pw.toml @@ -0,0 +1,13 @@ +name = "Plastic Texture Pack" +filename = "Plastic Texture Pack.zip" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/meEXwbr9/versions/rHmvLgtj/Plastic%20Texture%20Pack.zip" +hash-format = "sha1" +hash = "819caacfcd9107c2c0c51d79f0e6931515a2706f" + +[update] +[update.modrinth] +mod-id = "meEXwbr9" +version = "rHmvLgtj" diff --git a/versions/fabric/1.20.4/resourcepacks/re-console_resources.zip b/versions/fabric/1.20.4/resourcepacks/re-console_resources.zip new file mode 100644 index 0000000..61694b9 Binary files /dev/null and b/versions/fabric/1.20.4/resourcepacks/re-console_resources.zip differ diff --git a/versions/fabric/1.20.6/config/moreculling.toml b/versions/fabric/1.20.6/config/moreculling.toml deleted file mode 100644 index 941494e..0000000 --- a/versions/fabric/1.20.6/config/moreculling.toml +++ /dev/null @@ -1,4 +0,0 @@ -version = 1 -itemFrameLODRange = 64 -itemFrame3FaceCullingRange = 0.0 -includeMangroveRoots = true diff --git a/versions/fabric/1.20.6/config/servercore/config.yml b/versions/fabric/1.20.6/config/servercore/config.yml deleted file mode 100644 index 7b0cb66..0000000 --- a/versions/fabric/1.20.6/config/servercore/config.yml +++ /dev/null @@ -1,291 +0,0 @@ -# The main configuration file for ServerCore. -# Most of these settings can be reloaded without restarting using /servercore reload. - -# Most miscellaneous feature toggles. -features: - # Prevents lagspikes caused by players moving into unloaded chunks. - prevent-moving-into-unloaded-chunks: false - # The amount of seconds between auto-saves when /save-on is active. - autosave-interval-seconds: 300 - # The fraction that decides the chance of experience orbs being able to merge with each other. (1 = 100%, 40 = 2.5%) - # Note that just like in vanilla, experience orbs will still need to be of the same size to actually merge. - xp-merge-fraction: 40 - # The radius in blocks that experience orbs will merge at. - xp-merge-radius: 0.5 - # The radius in blocks that items will merge at. - item-merge-radius: 0.5 - lobotomize-villagers: - # Makes villagers tick less often if they are stuck in a 1x1 space. - enabled: true - # Decides the interval in between villager ticks when lobotomized. - tick-interval: 20 - - -# Automatically modifies dynamic settings based on the server performance. -dynamic: - # Enables dynamic performance checks. - enabled: true - # The average MSPT to target. - target-mspt: 35 - # The settings that will be decreased when the server is overloaded, in the specified order. - # Removing a setting from the list will disable it. - # ► max = The maximum value the server will increase the setting to. - # ► min = The minimum value the server will decrease the setting to. - # ► increment = The amount the setting will be increased or decreased by. - # ► interval = The amount of seconds between each check to increase or decrease. - dynamic-settings: - - setting: 'CHUNK_TICK_DISTANCE' - max: 10 - min: 2 - increment: 1 - interval: 15 - - - setting: 'MOBCAP_PERCENTAGE' - max: 100 - min: 30 - increment: 10 - interval: 15 - - - setting: 'SIMULATION_DISTANCE' - max: 10 - min: 2 - increment: 1 - interval: 15 - - - setting: 'VIEW_DISTANCE' - max: 10 - min: 2 - increment: 1 - interval: 150 - - -# A special mobcap that only affects the breeding of animals and villagers. -breeding-cap: - # Enables breeding caps. - enabled: false - # The breeding cap for villagers. - # ► limit = The limit of mobs of the same type within range. Setting this to negative will disable the breeding cap. - # ► range = The range it will check for entities of the same type. - villagers: - limit: 32 - range: 64 - - # The breeding cap for animals. - # Note that this cap only checks for animals of the same type. - # If the limit is 32 you can still breed 32 cows and 32 pigs next to each other. - animals: - limit: 32 - range: 64 - - -# Gives more control over mob spawning. -mob-spawning: - # Mobcap settings for zombie reinforcements. - # ► enforce-mobcaps = Whether to enforce mobcaps for this type of mobspawning. - # ► additional-capacity = Additional capacity for this specific mobcap. Decides how much it can spawn over the regular mobcap. - # It is recommended to allow them to spawn a bit over the regular mobcap as they would otherwise never get a chance to spawn. - zombie-reinforcements: - enforce-mobcap: false - additional-capacity: 32 - - # Mobcap settings for zombified piglin spawning from nether portal random ticks. - nether-portal-randomticks: - enforce-mobcap: false - additional-capacity: 32 - - # Mobcap settings for mobs spawned from monster spawners. - monster-spawners: - enforce-mobcap: false - additional-capacity: 32 - - # Mobcap settings for silverfish spawned from the infested potion effect. - infested: - enforce-mobcap: false - additional-capacity: 32 - - # A list of mob categories with their respective mobcap and spawn interval. - # ► category = The vanilla spawn category. - # ► mobcap = The maximum amount of entities in the same category that can spawn near a player. - # ► spawn-interval = The interval between spawn attempts in ticks. Higher values mean less frequent spawn attempts. - categories: - - category: 'MONSTER' - mobcap: 70 - spawn-interval: 1 - - - category: 'CREATURE' - mobcap: 10 - spawn-interval: 400 - - - category: 'AMBIENT' - mobcap: 15 - spawn-interval: 1 - - - category: 'AXOLOTLS' - mobcap: 5 - spawn-interval: 1 - - - category: 'UNDERGROUND_WATER_CREATURE' - mobcap: 5 - spawn-interval: 1 - - - category: 'WATER_CREATURE' - mobcap: 5 - spawn-interval: 1 - - - category: 'WATER_AMBIENT' - mobcap: 20 - spawn-interval: 1 - - -# Settings for commands and their formatting. -commands: - # Enables the /servercore status command. - status-enabled: true - # Enables the /mobcaps command. - mobcaps-enabled: true - colors: - # The colors used in command feedback. You can use hex codes or minecraft legacy color names. - # The primary color is the most used color in command feedback. - primary: 'dark_aqua' - # The secondary color is used for highlighting important information, like values. - secondary: 'green' - # The tertiary color is mostly used for text in titles. - tertiary: 'aqua' - - -# Activation range can drastically reduce the amount of lag caused by ticking entities. -# It does this by cleverly skipping certain entity ticks based on the distance to players and other factors, like immunity checks. -# Immunity checks determine whether an entity should be ticked even when it's outside the activation range, like for example when it is falling or takes damage. -# Note: while this is a very powerful feature, it can still slow down mobfarms and break very specific technical contraptions. -activation-range: - # Enables activation range. - enabled: true - # Briefly ticks entities newly added to the world for 10 seconds (includes both spawning and loading). - # This gives them a chance to properly immunize when they are spawned if they should be. Can be helpful for mobfarms. - tick-new-entities: true - # Enables vertical range checks. By default, activation ranges only work horizontally. - # This can greatly improve performance on taller worlds, but might break a few very specific ai-based mobfarms. - use-vertical-range: false - # Skips 1/4th of entity ticks whilst not immune. - # This affects entities that are within the activation range, but not immune (for example by falling or being in water). - skip-non-immune: false - # Allows villagers to tick regardless of the activation range when panicking. - villager-tick-panic: true - # The time in seconds that a villager needs to be inactive for before obtaining work immunity (if it has work tasks). - villager-work-immunity-after: 20 - # The amount of ticks an inactive villager will wake up for when it has work immunity. - villager-work-immunity-for: 20 - # A list of entity types that should be excluded from activation range checks. - excluded-entity-types: - - 'minecraft:ghast' - - 'minecraft:hopper_minecart' - - 'minecraft:warden' - # The activation type that will get assigned to any entity that doesn't have a custom activation type. - # ► activation-range = The range an entity is required to be in from a player to be activated. - # ► tick-interval = The interval between 'active' ticks whilst the entity is inactive. Negative values will disable these active ticks. - # ► wakeup-interval = The interval between inactive entity wakeups in seconds. - # ► extra-height-up = Allows entities to be ticked when far above the player when vertical range is in use. - # ► extra-height-down = Allows entities to be ticked when far below the player when vertical range is in use. - default-activation-type: - activation-range: 16 - tick-interval: 20 - wakeup-interval: -1 - extra-height-up: false - extra-height-down: false - - # A list of custom activation types. - # ► name = The name of the activation type. - # ► entity-matcher = A list of conditions to filter entities. Only one of these conditions needs to be met for an entity to match. - # ► If an entity matches multiple activation types, the one highest in the list will be used. The conditions accept the following formats: - # - Entity type matching | Uses the entity type's identifier. | 'minecraft:zombie' matches zombies, but for example not husks or drowned. - # - Typeof class matching | Uses the 'typeof:' prefix. | 'typeof:monster' matches all monsters. - # ► Available typeof classes: mob, monster, raider, neutral, ambient, animal, water_animal, flying_animal, flying_monster, villager. - custom-activation-types: - - name: 'raider' - activation-range: 48 - tick-interval: 20 - wakeup-interval: 20 - extra-height-up: true - extra-height-down: false - entity-matcher: - - 'typeof:raider' - - - name: 'water' - activation-range: 16 - tick-interval: 20 - wakeup-interval: 60 - extra-height-up: false - extra-height-down: false - entity-matcher: - - 'typeof:water_animal' - - - name: 'villager' - activation-range: 16 - tick-interval: 20 - wakeup-interval: 30 - extra-height-up: false - extra-height-down: false - entity-matcher: - - 'typeof:villager' - - - name: 'zombie' - activation-range: 16 - tick-interval: 20 - wakeup-interval: 20 - extra-height-up: true - extra-height-down: false - entity-matcher: - - 'minecraft:zombie' - - 'minecraft:husk' - - - name: 'monster-below' - activation-range: 32 - tick-interval: 20 - wakeup-interval: 20 - extra-height-up: true - extra-height-down: true - entity-matcher: - - 'minecraft:creeper' - - 'minecraft:slime' - - 'minecraft:magma_cube' - - 'minecraft:hoglin' - - - name: 'flying-monster' - activation-range: 48 - tick-interval: 20 - wakeup-interval: 20 - extra-height-up: true - extra-height-down: false - entity-matcher: - - 'minecraft:ghast' - - 'minecraft:phantom' - - - name: 'monster' - activation-range: 32 - tick-interval: 20 - wakeup-interval: 20 - extra-height-up: true - extra-height-down: false - entity-matcher: - - 'typeof:monster' - - - name: 'animal' - activation-range: 16 - tick-interval: 20 - wakeup-interval: 60 - extra-height-up: false - extra-height-down: false - entity-matcher: - - 'typeof:animal' - - 'typeof:ambient' - - - name: 'creature' - activation-range: 24 - tick-interval: 20 - wakeup-interval: 30 - extra-height-up: false - extra-height-down: false - entity-matcher: - - 'typeof:mob' - - diff --git a/versions/fabric/1.20.6/config/servercore/optimizations.yml b/versions/fabric/1.20.6/config/servercore/optimizations.yml deleted file mode 100644 index 6823c38..0000000 --- a/versions/fabric/1.20.6/config/servercore/optimizations.yml +++ /dev/null @@ -1,16 +0,0 @@ -# Allows you to toggle specific optimizations that don't have full vanilla parity. -# These settings will only take effect after server restarts. - -# Prevents many different lagspikes caused by loading chunks synchronously. -# This for example causes maps to only update loaded chunks, which depending on the viewdistance can be a smaller radius than vanilla. -reduce-sync-loads: true -# Can significantly reduce the time spent on chunk iteration by caching ticking chunks every second. -# This is especially useful for servers with a high playercount and / or viewdistance. -# Note: The list of ticking chunks is only updated every second, rather than every tick (but that is very unlikely to matter). -cache-ticking-chunks: true -# Can significantly reduce time spent on mobspawning, but isn't as accurate as vanilla on biome borders. -# This may cause mobs from another biome to spawn a few blocks across a biome border (this does not affect structure spawning!). -fast-biome-lookups: true -# Fluid random ticks, like lava spreading fire, are run twice each game tick. -# Enabling this will cancel the 'duplicate' second fluid tick, but this may cause slight behavior changes. -cancel-duplicate-fluid-ticks: true diff --git a/versions/fabric/1.20.6/config/sodium-fingerprint.json b/versions/fabric/1.20.6/config/sodium-fingerprint.json deleted file mode 100644 index 2854252..0000000 --- a/versions/fabric/1.20.6/config/sodium-fingerprint.json +++ /dev/null @@ -1 +0,0 @@ -{"v":1,"s":"92d10e7af92b81bc15437c99142157d5c0bd4b20012ebfc99806a52d5a03de3714a5bf3105ff5303045a11b5c8b766aa402db5d477ef565558287f9977ae9278","u":"c7afb98ac72097647046615ffbc2a93837786c404843d0cc00b0dcf36496d8e45d9668cc749ee895a27c1a7adf0647b9c29bc1aef5d51da597e8feca3d767134","p":"1b84c7771c259701542914aca7e341bb938fe66c44ed42f85cbf0c224c74153585dac3c5568450ca1f285ea7613bccdfb90ec759e821cf84ce764cc3569da938","t":1715465921} \ No newline at end of file diff --git a/versions/fabric/1.20.6/index.toml b/versions/fabric/1.20.6/index.toml index c090ede..1ca6ee9 100644 --- a/versions/fabric/1.20.6/index.toml +++ b/versions/fabric/1.20.6/index.toml @@ -72,18 +72,6 @@ hash = "22caf99f6531254b612c35bc12aff9c2b6d121b038b2e418a1a429049d16c9e0" file = "config/modmenu.json" hash = "748cb550ed31f0d7f2a8faf26cd0c659826ae10cfabc4a89eee7d32eed98f157" -[[files]] -file = "config/moreculling.toml" -hash = "a2470fbc25f1a7df9833c57ca6588a356da86d9ab46881e5ce0e505239943fed" - -[[files]] -file = "config/servercore/config.yml" -hash = "66ebc31e17ae2501f4a29768fa05daf6222642588c1b37f50fdc5d74f7319d0c" - -[[files]] -file = "config/servercore/optimizations.yml" -hash = "fbb29b9bf5d8f90f58568cfae7f85220d84465d78d6a4dcbfbe3c15ffd172f8d" - [[files]] file = "config/simplemenu.json5" hash = "2d359fb9351b509da4669744942281f28123e5879fb470e5a066041c59afcbf3" @@ -96,10 +84,6 @@ hash = "4cebdb7ac3d71bd50e580fbff431adf2b2a0950f8eae3b9f938a9931b89f0da2" file = "config/simplemenu/icon/icon_32x32.png" hash = "4b0638d4f69e0b79a7c1945f5d47c6e17591893901bf49fb1964a03b1bbd30ad" -[[files]] -file = "config/sodium-fingerprint.json" -hash = "1b5b87768079fd651c6635f7d810dc810f1c140b3a858a58a42180075cb7a1d8" - [[files]] file = "config/sodium-options.json" hash = "6555c8c1fc4d773df097895dfb76fe004377347581d5731f5408fb9d138585a2" @@ -187,6 +171,11 @@ file = "mods/cubes-without-borders.pw.toml" hash = "1a65361cf2207ba6bad6eba3e66e407983452398c4ac5cbe5db0d8430b8a6496" metafile = true +[[files]] +file = "mods/cull-less-leaves.pw.toml" +hash = "39eb9db990032d949909f079ada415ffda18b372ec5d9b23ab95652d88474131" +metafile = true + [[files]] file = "mods/debugify.pw.toml" hash = "4e596f70957b214851ee57422d421ec59037425f5b209fc5813d44918d91c1b9" @@ -314,7 +303,7 @@ metafile = true [[files]] file = "mods/modernfix.pw.toml" -hash = "d3716e8b83ff2044733b4e58ea266cb3f2957f472d08d015abe6a54e425202e4" +hash = "ce0282aa9a31909cba4c187bbf1ea0df1c0cd6077d21f89130116f6051a8d6ca" metafile = true [[files]] @@ -322,11 +311,6 @@ file = "mods/modmenu.pw.toml" hash = "6c8c93e74e46a0cac65179d027e9aac4eaebc44847604b0ff86644f3030116e8" metafile = true -[[files]] -file = "mods/moreculling.pw.toml" -hash = "9d76e9b5d107004c51e91c33404a9e22f03770420e3cf6a49bc1393b6f9fe3c3" -metafile = true - [[files]] file = "mods/no-chat-reports.pw.toml" hash = "b6c8fe81a75bc2c3292ef642e62985c2d9e270ad26f7aa044ff33b906425e8a8" @@ -354,7 +338,7 @@ metafile = true [[files]] file = "mods/polytone.pw.toml" -hash = "4338c91799d4b6518a7ebb8cfd9e582ca7c78642e003304d5af6b29ca6e69997" +hash = "3f3184800ed92459d603cdd929b724d43e6c9705c7fee4743e1717de02de7dce" metafile = true [[files]] diff --git a/versions/fabric/1.20.6/mods/cull-less-leaves.pw.toml b/versions/fabric/1.20.6/mods/cull-less-leaves.pw.toml new file mode 100644 index 0000000..fc15184 --- /dev/null +++ b/versions/fabric/1.20.6/mods/cull-less-leaves.pw.toml @@ -0,0 +1,13 @@ +name = "Cull Less Leaves" +filename = "CullLessLeaves-1.3.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/iG6ZHsUV/versions/TFvkv8XK/CullLessLeaves-1.3.0.jar" +hash-format = "sha1" +hash = "83380456dab54b8ac790b84a0f4f39a1404e6bc5" + +[update] +[update.modrinth] +mod-id = "iG6ZHsUV" +version = "TFvkv8XK" diff --git a/versions/fabric/1.20.6/mods/modernfix.pw.toml b/versions/fabric/1.20.6/mods/modernfix.pw.toml index d93f6f4..cc61522 100644 --- a/versions/fabric/1.20.6/mods/modernfix.pw.toml +++ b/versions/fabric/1.20.6/mods/modernfix.pw.toml @@ -1,13 +1,13 @@ name = "ModernFix" -filename = "modernfix-fabric-5.17.3+mc1.20.6.jar" +filename = "modernfix-fabric-5.18.0+mc1.20.6.jar" side = "both" [download] -url = "https://cdn.modrinth.com/data/nmDcB62a/versions/xlt4bcjj/modernfix-fabric-5.17.3%2Bmc1.20.6.jar" +url = "https://cdn.modrinth.com/data/nmDcB62a/versions/dUdr6D7I/modernfix-fabric-5.18.0%2Bmc1.20.6.jar" hash-format = "sha1" -hash = "732ce085def794bb6f9278427e44bd5006915962" +hash = "2f94ce0ae67c0f4bfa5c764c6828f06852859ae2" [update] [update.modrinth] mod-id = "nmDcB62a" -version = "xlt4bcjj" +version = "dUdr6D7I" diff --git a/versions/fabric/1.20.6/mods/moreculling.pw.toml b/versions/fabric/1.20.6/mods/moreculling.pw.toml deleted file mode 100644 index 23a92e6..0000000 --- a/versions/fabric/1.20.6/mods/moreculling.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "More Culling" -filename = "moreculling-1.20.5-0.25.0.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/51shyZVL/versions/yduz8IZo/moreculling-1.20.5-0.25.0.jar" -hash-format = "sha1" -hash = "33740e68b2245f686e1e1f2e32f19b614526a559" - -[update] -[update.modrinth] -mod-id = "51shyZVL" -version = "yduz8IZo" diff --git a/versions/fabric/1.20.6/mods/polytone.pw.toml b/versions/fabric/1.20.6/mods/polytone.pw.toml index 3fbd3b5..3a5c5db 100644 --- a/versions/fabric/1.20.6/mods/polytone.pw.toml +++ b/versions/fabric/1.20.6/mods/polytone.pw.toml @@ -1,13 +1,13 @@ name = "Polytone" -filename = "polytone-1.20.6-1.19.0-fabric.jar" +filename = "polytone-1.20.6-1.19.1-fabric.jar" side = "client" [download] -url = "https://cdn.modrinth.com/data/3qAYkBMB/versions/hpWCMdNM/polytone-1.20.6-1.19.0-fabric.jar" +url = "https://cdn.modrinth.com/data/3qAYkBMB/versions/9kokA8Wm/polytone-1.20.6-1.19.1-fabric.jar" hash-format = "sha1" -hash = "e28a3820fe5bda85789f8c2699f826c12ffdf08f" +hash = "2dd240796280a410c78a95fc346ef169438f3a45" [update] [update.modrinth] mod-id = "3qAYkBMB" -version = "hpWCMdNM" +version = "9kokA8Wm" diff --git a/versions/fabric/1.20.6/pack.toml b/versions/fabric/1.20.6/pack.toml index 8f0e257..c4c6f63 100644 --- a/versions/fabric/1.20.6/pack.toml +++ b/versions/fabric/1.20.6/pack.toml @@ -1,12 +1,12 @@ name = "Re-Console" author = "ViolaFlower" -version = "0.5.2" +version = "0.5.3+mc1.20.6" pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "1870596c1fe304c263d84d225d312aa4ab26aca4c650276eb1e9ac2a2bcca6e0" +hash = "4792dea7666128d885dacae96b77b0fc674a4e532f729e5cabd767ed08d52350" [versions] fabric = "0.15.11"