From 4aa40cd0266c0b56fd9f11af90e13565f1a4f9bc Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 11 May 2025 22:07:34 -0500 Subject: [PATCH] [PSA] optimizations added (VERY LONG FIRST LOAD) [PSA] If you are having load time issues when testing, temporarily disable palladium, and all the trims, also disable tool trims. - added lazy loading mod which does caching to decrease boot times - added lazy cache folder to gitignore to ensure fresh boots on newly cloned repositories - Added Staaaaaaaaaaaaaaaaaack which allows stacks to be combined into much larger stacks can prevent server crashes - added not enough recipe book & dependency octo lib this removes the recipe book from the game which greatly improves performance - Added render scale - allowing users to change render resolution independently of GUI scale (can only be done in mod config menu) - added fast boot, smooth boot, and blinkload which decrease boot times - added immersive UI makes the UI more wismical - added immersive optimization, optimizes entity ticking - added entity culling - added mods optimizer (this does not optimize in the traditional sense, instead removes client side only mods from servers incase they are included by mistake) - added exordium which decreases the FPS of GUI elements - added alternate current which optimizes redstone ticking - added attribute fix which uncaps attributes (vanilla mechanic that mods overlook when they overload these values) - added palladium & dependancy ToadLib, increases boot times but de-duplicates objects in memory which can result in massive performance gains - added structure_layout_optimizer & dependency resourceful config, this mod decreases the time it takes to generate structures via octree magic. - added a fork of lithium known as radium, radium is a modern, general-purpose optimization mod for Minecraft which works to improve a number of systems (game physics, mob AI, block ticking, etc) with the goal of not changing any vanilla mechanics. - added enlightend block entities which massively increases the rendering preformace of some block entities. - added GPU tape to decrease boot times - disabled ultimine_addition for now until dependency can be resolved --- .gitignore | 1 + 1.20.1-FearFactoryTest/instance.cfg | 8 +- .../.blinkload/atlas_textures_cache.json | 0 .../mod_and_enabled_resource_pack_list_hash | 1 + .../minecraft/config/attributefix.json | 697 ++++++++++++++++++ .../minecraft/config/entityculling.json | 62 ++ .../minecraft/config/exordium.json | 61 ++ .../config/immersive_optimization.json | 31 + .../minecraft/config/immersiveui.yaml | 34 + .../minecraft/config/lazyyyyy.general.json | 5 + .../minecraft/config/lazyyyyy.mixins.json | 13 + .../minecraft/config/lithium.properties | 7 + .../config/mods_optimizer/config.toml | 9 + .../config/mods_optimizer/mods-database.json | 339 +++++++++ .../mods_optimizer/mods-database.json.sha256 | 1 + .../minecraft/config/nerb.yaml | 6 + .../minecraft/config/palladium_config.txt | 15 + .../minecraft/config/renderscale.json5 | 4 + .../config/resourceful-config-web.json | 12 + .../minecraft/config/smoothboot.json | 14 + .../config/sodiumdynamiclights-client.toml | 2 +- .../config/staaaaaaaaaaaack-client.toml | 16 + .../config/staaaaaaaaaaaack-common.toml | 23 + .../config/structure_layout_optimizer.jsonc | 15 + .../minecraft/config/toadlib_config.txt | 2 + .../mods/AttributeFix-Forge-1.20.1-21.0.4.jar | 3 + .../minecraft/mods/EBE-1.20-1.20.1-0.9.1B.jar | 3 + .../mods/GPUTape-1.18x-1.21x-1.0.5.1.jar | 3 + .../mods/ImmersiveUI-FABRIC-0.3.0.jar | 3 + ... Enough Recipe Book-FORGE-0.4.1+1.20.1.jar | 3 + .../mods/OctoLib-FORGE-0.5.0.1+1.20.1.jar | 3 + .../mods/Palladium-1.20-1.20.1-1.1.6.1.jar | 3 + .../mods/RenderScale-forge-1.20.1-1.0.jar | 3 + .../mods/ToadLib-1.3.1-1.20-1.20.1.jar | 3 + .../mods/alternate_current-mc1.20-1.7.0.jar | 3 + .../blinkload-forge-1.2.1+mc1.20-1.20.1.jar | 3 + .../entityculling-forge-1.7.4-mc1.20.1.jar | 3 + .../mods/exordium-forge-1.2.1-mc1.20.1.jar | 3 + .../minecraft/mods/fastboot-1.20.x-1.2.jar | 3 + ...ive_optimization-forge-1.20.1-0.0.4(1).jar | 3 + .../mods/lazyyyyy-lexforge-core-0.14.11.jar | 3 + .../mods_optimizer-forge-1.20.1-4.1.0.jar | 3 + .../radium-mc1.20.1-0.12.4+git.26c9d8e.jar | 3 + .../resourcefulconfig-forge-1.20.1-2.1.3.jar | 3 + .../smoothboot(reloaded)-mc1.20.1-0.0.4.jar | 3 + .../staaaaaaaaaaaack-forge-1.20.1-1.5-71.jar | 3 + ...tructure_layout_optimizer-forge-1.0.10.jar | 3 + ...dition-forge-1.20.1-v1.4.0-release (1).jar | 3 - 1.20.1-FearFactoryTest/minecraft/options.txt | 61 +- .../Hysteria-Shaders-Universal-v1.2.1.zip.txt | 2 +- 50 files changed, 1471 insertions(+), 39 deletions(-) create mode 100644 1.20.1-FearFactoryTest/minecraft/.blinkload/atlas_textures_cache.json create mode 100644 1.20.1-FearFactoryTest/minecraft/.blinkload/mod_and_enabled_resource_pack_list_hash create mode 100644 1.20.1-FearFactoryTest/minecraft/config/attributefix.json create mode 100644 1.20.1-FearFactoryTest/minecraft/config/entityculling.json create mode 100644 1.20.1-FearFactoryTest/minecraft/config/exordium.json create mode 100644 1.20.1-FearFactoryTest/minecraft/config/immersive_optimization.json create mode 100644 1.20.1-FearFactoryTest/minecraft/config/immersiveui.yaml create mode 100644 1.20.1-FearFactoryTest/minecraft/config/lazyyyyy.general.json create mode 100644 1.20.1-FearFactoryTest/minecraft/config/lazyyyyy.mixins.json create mode 100644 1.20.1-FearFactoryTest/minecraft/config/lithium.properties create mode 100644 1.20.1-FearFactoryTest/minecraft/config/mods_optimizer/config.toml create mode 100644 1.20.1-FearFactoryTest/minecraft/config/mods_optimizer/mods-database.json create mode 100644 1.20.1-FearFactoryTest/minecraft/config/mods_optimizer/mods-database.json.sha256 create mode 100644 1.20.1-FearFactoryTest/minecraft/config/nerb.yaml create mode 100644 1.20.1-FearFactoryTest/minecraft/config/palladium_config.txt create mode 100644 1.20.1-FearFactoryTest/minecraft/config/renderscale.json5 create mode 100644 1.20.1-FearFactoryTest/minecraft/config/resourceful-config-web.json create mode 100644 1.20.1-FearFactoryTest/minecraft/config/smoothboot.json create mode 100644 1.20.1-FearFactoryTest/minecraft/config/staaaaaaaaaaaack-client.toml create mode 100644 1.20.1-FearFactoryTest/minecraft/config/staaaaaaaaaaaack-common.toml create mode 100644 1.20.1-FearFactoryTest/minecraft/config/structure_layout_optimizer.jsonc create mode 100644 1.20.1-FearFactoryTest/minecraft/config/toadlib_config.txt create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/AttributeFix-Forge-1.20.1-21.0.4.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/EBE-1.20-1.20.1-0.9.1B.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/GPUTape-1.18x-1.21x-1.0.5.1.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/ImmersiveUI-FABRIC-0.3.0.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/Not Enough Recipe Book-FORGE-0.4.1+1.20.1.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/OctoLib-FORGE-0.5.0.1+1.20.1.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/Palladium-1.20-1.20.1-1.1.6.1.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/RenderScale-forge-1.20.1-1.0.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/ToadLib-1.3.1-1.20-1.20.1.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/alternate_current-mc1.20-1.7.0.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/blinkload-forge-1.2.1+mc1.20-1.20.1.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/entityculling-forge-1.7.4-mc1.20.1.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/exordium-forge-1.2.1-mc1.20.1.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/fastboot-1.20.x-1.2.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/immersive_optimization-forge-1.20.1-0.0.4(1).jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/lazyyyyy-lexforge-core-0.14.11.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/mods_optimizer-forge-1.20.1-4.1.0.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/radium-mc1.20.1-0.12.4+git.26c9d8e.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/resourcefulconfig-forge-1.20.1-2.1.3.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/smoothboot(reloaded)-mc1.20.1-0.0.4.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/staaaaaaaaaaaack-forge-1.20.1-1.5-71.jar create mode 100644 1.20.1-FearFactoryTest/minecraft/mods/structure_layout_optimizer-forge-1.0.10.jar delete mode 100644 1.20.1-FearFactoryTest/minecraft/mods/ultimine_addition-forge-1.20.1-v1.4.0-release (1).jar diff --git a/.gitignore b/.gitignore index 6aa6018..51d5ab7 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ 1.20.1-FearFactoryTest/minecraft/config/create_central_kitchen-common.toml 1.20.1-FearFactoryTest/minecraft/config/fabric/indigo-renderer.properties +/1.20.1-FearFactoryTest/minecraft/.lazyyyyy diff --git a/1.20.1-FearFactoryTest/instance.cfg b/1.20.1-FearFactoryTest/instance.cfg index 6f36afd..4ea4d18 100644 --- a/1.20.1-FearFactoryTest/instance.cfg +++ b/1.20.1-FearFactoryTest/instance.cfg @@ -67,14 +67,14 @@ UseNativeOpenAL=false UseZink=false WrapperCommand= iconKey=default -lastLaunchTime=1747002963907 -lastTimePlayed=930 +lastLaunchTime=1747019107318 +lastTimePlayed=518 linkedInstances=[] name=1.20.1 FearFactory notes= -totalTimePlayed=16292 +totalTimePlayed=28214 [UI] -mods_Page\Columns=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\v\x80\a\0\0\0\x4\0\0\0\n\0\0\0\x64\0\0\0\b\0\0\0\x64\0\0\0\a\0\0\0\x64\0\0\0\t\0\0\0\x64\0\0\x3\xe9\0\0\0\v\x1\x1\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\v\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\x1\x91\0\0\0\x1\0\0\0\x1\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64\0\0\0\0) +mods_Page\Columns=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\x1\0\0\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\v\x80\a\0\0\0\x4\0\0\0\a\0\0\0\x64\0\0\0\b\0\0\0\x64\0\0\0\n\0\0\0\x64\0\0\0\t\0\0\0\x64\0\0\x3\x39\0\0\0\v\x1\x1\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\v\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\xe1\0\0\0\x1\0\0\0\x1\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64\0\0\0\0) resourcepacks_Page\Columns=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x2X\0\0\0\x6\x1\x1\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x6\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\x1\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64\0\0\0\0) shaderpacks_Page\Columns=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1\x90\0\0\0\x4\x1\x1\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x4\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\x1\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64\0\0\0\0) diff --git a/1.20.1-FearFactoryTest/minecraft/.blinkload/atlas_textures_cache.json b/1.20.1-FearFactoryTest/minecraft/.blinkload/atlas_textures_cache.json new file mode 100644 index 0000000..e69de29 diff --git a/1.20.1-FearFactoryTest/minecraft/.blinkload/mod_and_enabled_resource_pack_list_hash b/1.20.1-FearFactoryTest/minecraft/.blinkload/mod_and_enabled_resource_pack_list_hash new file mode 100644 index 0000000..9cbd6dd --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/.blinkload/mod_and_enabled_resource_pack_list_hash @@ -0,0 +1 @@ +85a14bc56af423a8584809c7e63b9e0f \ No newline at end of file diff --git a/1.20.1-FearFactoryTest/minecraft/config/attributefix.json b/1.20.1-FearFactoryTest/minecraft/config/attributefix.json new file mode 100644 index 0000000..8e74075 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/attributefix.json @@ -0,0 +1,697 @@ +{ + "attributes": { + "obscure_api:penetration": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "forge:step_height_addition": { + "enabled": false, + "min": { + "default": -512, + "value": -512 + }, + "max": { + "default": 512, + "value": 512 + } + }, + "attributeslib:ghost_health": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "minecraft:generic.follow_range": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, + "attributeslib:prot_shred": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "obscure_api:dodge": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "attributeslib:overheal": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10, + "value": 10 + } + }, + "attributeslib:armor_shred": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2, + "value": 2 + } + }, + "attributeslib:healing_received": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "forge:entity_gravity": { + "enabled": false, + "min": { + "default": -8, + "value": -8 + }, + "max": { + "default": 8, + "value": 8 + } + }, + "obscure_api:resilience": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "attributeslib:armor_pierce": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "obscure_api:regeneration": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100000, + "value": 100000 + } + }, + "attributeslib:cold_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "attributeslib:experience_gained": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "minecraft:generic.luck": { + "enabled": true, + "min": { + "default": -1024, + "value": -1024 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "hexcasting:grid_zoom": { + "enabled": false, + "min": { + "default": 0.5, + "value": 0.5 + }, + "max": { + "default": 4, + "value": 4 + } + }, + "forge:entity_reach": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "obscure_api:magic_resistance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "ars_nouveau:ars_nouveau.perk.saturation": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10000, + "value": 10000 + } + }, + "obscure_api:magic_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100000, + "value": 100000 + } + }, + "obscure_api:healing_power": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "os:infected_evo_k": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 20, + "value": 20 + } + }, + "attributeslib:dodge_chance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "os:kidnapper_damage_count": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "hexcasting:scry_sight": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "minecraft:zombie.spawn_reinforcements": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "attributeslib:fire_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1000, + "value": 1000 + } + }, + "minecraft:generic.attack_knockback": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 5, + "value": 1000000 + } + }, + "attributeslib:crit_chance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10, + "value": 10 + } + }, + "forge:swim_speed": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "ars_nouveau:ars_nouveau.perk.wixie": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "minecraft:generic.armor_toughness": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 1000000 + } + }, + "ars_nouveau:ars_elemental.perk.summon_power": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10000, + "value": 10000 + } + }, + "obscure_api:accuracy": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "attributeslib:crit_damage": { + "enabled": false, + "min": { + "default": 1, + "value": 1 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "forge:nametag_distance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 64, + "value": 64 + } + }, + "forge:block_reach": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "obscure_api:parry": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "minecraft:generic.attack_speed": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "ars_nouveau:ars_nouveau.perk.mana_regen": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2000, + "value": 2000 + } + }, + "minecraft:generic.attack_damage": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 1000000 + } + }, + "attributeslib:draw_speed": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 4, + "value": 4 + } + }, + "ars_nouveau:ars_nouveau.perk.feather": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "minecraft:generic.armor": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 200, + "value": 1000000 + } + }, + "obscure_api:critical_hit": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "attributeslib:prot_pierce": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 34, + "value": 34 + } + }, + "minecraft:generic.flying_speed": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "attributeslib:current_hp_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "attributeslib:mining_speed": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10, + "value": 10 + } + }, + "minecraft:generic.movement_speed": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "caelus:fall_flying": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "ars_nouveau:ars_nouveau.perk.max_mana": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10000, + "value": 10000 + } + }, + "botania:pixie_spawn_chance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "obscure_api:critical_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 100, + "value": 100 + } + }, + "minecraft:generic.max_health": { + "enabled": true, + "min": { + "default": 1, + "value": 1 + }, + "max": { + "default": 1024, + "value": 1000000 + } + }, + "attributeslib:arrow_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10, + "value": 10 + } + }, + "minecraft:horse.jump_strength": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2, + "value": 2 + } + }, + "attributeslib:arrow_velocity": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10, + "value": 10 + } + }, + "ars_nouveau:ars_nouveau.perk.spell_damage": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10000, + "value": 10000 + } + }, + "ars_nouveau:ars_nouveau.perk.warding": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "minecraft:generic.knockback_resistance": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "attributeslib:life_steal": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 10, + "value": 10 + } + } + } +} \ No newline at end of file diff --git a/1.20.1-FearFactoryTest/minecraft/config/entityculling.json b/1.20.1-FearFactoryTest/minecraft/config/entityculling.json new file mode 100644 index 0000000..4ed2e3b --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/entityculling.json @@ -0,0 +1,62 @@ +{ + "configVersion": 7, + "renderNametagsThroughWalls": true, + "blockEntityWhitelist": [ + "create:rope_pulley", + "botania:flame_ring", + "minecraft:beacon", + "create:hose_pulley", + "betterend:eternal_pedestal", + "botania:magic_missile", + "botania:falling_star" + ], + "entityWhitelist": [ + "botania:mana_burst", + "drg_flares:drg_flares" + ], + "tracingDistance": 128, + "debugMode": false, + "sleepDelay": 10, + "hitboxLimit": 50, + "skipMarkerArmorStands": true, + "tickCulling": true, + "tickCullingWhitelist": [ + "alexscaves:gum_worm", + "minecraft:jungle_boat", + "minecraft:spruce_boat", + "mts:builder_rendering", + "drg_flares:drg_flares", + "minecraft:mangrove_boat", + "mts:builder_existing", + "minecraft:acacia_boat", + "minecraft:birch_chest_boat", + "create:contraption", + "drg_flares:drg_flare", + "minecraft:birch_boat", + "minecraft:boat", + "mts:builder_seat", + "minecraft:cherry_boat", + "minecraft:spruce_chest_boat", + "alexscaves:gum_worm_segment", + "minecraft:dark_oak_boat", + "minecraft:oak_chest_boat", + "avm_staff:campfire_flame", + "minecraft:dark_oak_chest_boat", + "create:gantry_contraption", + "minecraft:oak_boat", + "minecraft:pale_oak_boat", + "minecraft:acacia_chest_boat", + "minecraft:cherry_chest_boat", + "create:stationary_contraption", + "minecraft:bamboo_raft", + "minecraft:firework_rocket", + "minecraft:jungle_chest_boat", + "create:carriage_contraption", + "minecraft:pale_oak_chest_boat", + "minecraft:bamboo_chest_raft", + "minecraft:mangrove_chest_boat" + ], + "disableF3": false, + "skipEntityCulling": false, + "skipBlockEntityCulling": false +} \ No newline at end of file diff --git a/1.20.1-FearFactoryTest/minecraft/config/exordium.json b/1.20.1-FearFactoryTest/minecraft/config/exordium.json new file mode 100644 index 0000000..eb131f3 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/exordium.json @@ -0,0 +1,61 @@ +{ + "configVersion": 3, + "enableSignBuffering": true, + "targetFPSNameTags": 60, + "enableNametagScreenBuffering": false, + "pollRate": 60, + "chatSettings": { + "enabled": true, + "maxFps": 20, + "forceBlend": false, + "forceUpdates": false + }, + "debugScreenSettings": { + "enabled": true, + "maxFps": 10, + "forceBlend": false, + "forceUpdates": false + }, + "hotbarSettings": { + "enabled": true, + "maxFps": 20, + "forceBlend": false, + "forceUpdates": false + }, + "experienceSettings": { + "enabled": true, + "maxFps": 5, + "forceBlend": false, + "forceUpdates": false + }, + "healthSettings": { + "enabled": true, + "maxFps": 20, + "forceBlend": false, + "forceUpdates": false + }, + "scoreboardSettings": { + "enabled": true, + "maxFps": 5, + "forceBlend": false, + "forceUpdates": false + }, + "tablistSettings": { + "enabled": true, + "maxFps": 20, + "forceBlend": false, + "forceUpdates": false + }, + "vignetteSettings": { + "enabled": true, + "maxFps": 5, + "forceBlend": false, + "forceUpdates": false + }, + "crosshairSettings": { + "enabled": false, + "maxFps": 20, + "forceBlend": false, + "forceUpdates": false + } +} \ No newline at end of file diff --git a/1.20.1-FearFactoryTest/minecraft/config/immersive_optimization.json b/1.20.1-FearFactoryTest/minecraft/config/immersive_optimization.json new file mode 100644 index 0000000..a204485 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/immersive_optimization.json @@ -0,0 +1,31 @@ +{ + "_documentation": "https://github.com/Luke100000/ImmersiveOptimization/wiki", + "enableEntities": true, + "enableBlockEntities": true, + "enableDistanceCulling": true, + "enableTrackingCulling": true, + "enableViewportCulling": true, + "minDistance": 6, + "blocksPerLevel": 64, + "blocksPerLevelDistanceCulled": 10, + "blocksPerLevelTrackingCulled": 10, + "blocksPerLevelViewportCulled": 20, + "maxLevel": 20, + "blocksPerLevelBlockEntities": 32, + "entityTickBudget": 30.0, + "stressedThreshold": 45, + "dimensions": { + "minecraft:overworld": true, + "minecraft:the_nether": true, + "minecraft:the_end": true + }, + "entities": { + "fromanotherworld:starship": false, + "minecraft:player": false, + "minecraft:arrow": false, + "create": false, + "minecraft:ender_dragon": false + }, + "version": 2, + "name": "immersive_optimization" +} \ No newline at end of file diff --git a/1.20.1-FearFactoryTest/minecraft/config/immersiveui.yaml b/1.20.1-FearFactoryTest/minecraft/config/immersiveui.yaml new file mode 100644 index 0000000..10411b8 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/immersiveui.yaml @@ -0,0 +1,34 @@ +# Enables wobbly items in advancement toasts. +enableAdvancementToastItems: true +# Enables curse formatting. +enableCurseFormatting: true +# Enables particles in the enchant(ing/ment) table. +enableEnchantParticles: true +# Enables floating item rotation. +enableFloatingItemRotation: true +# Enables the hotbar selector animation. +enableHotbarSelectorAnimation: true +# Enables hovering of matching items. +enableMatchingItemHovering: true +# Enables particles for rare items. +enableRarityParticles: true +# Enables screen shake. +enableScreenShake: true +# Enables vanilla slot highlighting +enableVanillaSlotHighlighting: true +# Affects the easing speed, that is applied to the rotation of the floating item. +floatingItemEasingSpeed: 0.75 +# Affects the rotation amplitude of the floating item. +floatingItemRotationAmplitude: 1.0 +# Affects the speed of the hotbar selector. +hotbarSelectorSpeed: 3.0 +# Affects the size of the hovered item. +hoveredItemScale: 1.4 +# Affects the hover amplitude of items, that match to the item that is carried in the cursor. +matchingItemHoverAmplitude: 0.8 +# Moves the hotbar selector above the items. You might want to disable this, if you use resource packs that change the default selector texture. +renderHotbarSelectorAboveItems: false +# Screen shake amplitude. +shakeAmplitude: 1.25 +# Screen shake timer in ticks. +shakeTimer: 8 diff --git a/1.20.1-FearFactoryTest/minecraft/config/lazyyyyy.general.json b/1.20.1-FearFactoryTest/minecraft/config/lazyyyyy.general.json new file mode 100644 index 0000000..3045928 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/lazyyyyy.general.json @@ -0,0 +1,5 @@ +{ + "debug": { + "packCache": false + } +} \ No newline at end of file diff --git a/1.20.1-FearFactoryTest/minecraft/config/lazyyyyy.mixins.json b/1.20.1-FearFactoryTest/minecraft/config/lazyyyyy.mixins.json new file mode 100644 index 0000000..0a6dac6 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/lazyyyyy.mixins.json @@ -0,0 +1,13 @@ +{ + "debug": false, + "async_model_baking": false, + "axiom.async_check_commercial": true, + "entity_sound_features.async_sound_events": true, + "lazy_entity_renderers": true, + "moremcmeta.avoid_duplicate_sprites": true, + "toomanyplayers.async_networking": true, + "yacl.lazy_animated_image": true, + "kiwi.faster_annotation": true, + "pack_resources_cache": true, + "avoid_redundant_list_resources": true +} \ No newline at end of file diff --git a/1.20.1-FearFactoryTest/minecraft/config/lithium.properties b/1.20.1-FearFactoryTest/minecraft/config/lithium.properties new file mode 100644 index 0000000..d276f40 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/lithium.properties @@ -0,0 +1,7 @@ +# This is the configuration file for Radium. +# This file exists for debugging purposes and should not be configured otherwise. +# +# You can find information on editing this file and all the available options here: +# https://github.com/jellysquid3/lithium-fabric/wiki/Configuration-File +# +# By default, this file will be empty except for this notice. diff --git a/1.20.1-FearFactoryTest/minecraft/config/mods_optimizer/config.toml b/1.20.1-FearFactoryTest/minecraft/config/mods_optimizer/config.toml new file mode 100644 index 0000000..a7fb144 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/mods_optimizer/config.toml @@ -0,0 +1,9 @@ +# This file was auto-generated by Mods Optimizer +# Last update: 2025-05-11T21:17:00.927245227 + +[Database] +allowRemoteDatabase = "true" + +[Debug] +debugForceSide = "default" +debugEnabled = "false" diff --git a/1.20.1-FearFactoryTest/minecraft/config/mods_optimizer/mods-database.json b/1.20.1-FearFactoryTest/minecraft/config/mods_optimizer/mods-database.json new file mode 100644 index 0000000..80c374a --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/mods_optimizer/mods-database.json @@ -0,0 +1,339 @@ +{ + "lastUpdated": "2025-05-11T19:00:00Z", + "server": [ + "adaptive_performance_tweaks_core", + "adaptive_performance_tweaks_gamerules", + "adaptive_performance_tweaks_items", + "adaptive_performance_tweaks_player", + "adaptive_performance_tweaks_spawn", + "adaptive_performance_tweaks", + "alternate-current", + "chunk-sending-forge-fabric", + "deathbackup", + "discordsrv", + "e4mc", + "leaky", + "publicguiannouncement", + "quick-leaf-decay", + "server_side_mod_id", + "simplebackups", + "smoothchunk", + "villagerdeathmessages" + ], + "client": [ + "3dskinlayers", + "advanced-tooltips", + "advancements_tracker", + "advancementscreenshot", + "ambientsounds", + "amecs", + "animatica", + "athena-ctm", + "atum", + "audio-extension-for-fancymenu", + "auth-me", + "auto-third-person", + "auudio", + "beautifiedchatclient", + "bedrockwaters", + "better-animations-collection", + "better-beds", + "better-end-sky", + "better-mount-hud", + "better-ping-display-fabric", + "better-third-person", + "better_clouds", + "better_clouds", + "better_loading_screen", + "betteradvancements", + "betteranimalmodels", + "betterbiomeblend", + "bettercommandblockui", + "betterf3", + "betterfpsdist", + "bettergrass", + "betterhurtcam", + "bettermodsbutton", + "bettersigns", + "betterstats", + "bettertaskbar", + "betterthirdperson", + "bettertitlescreen", + "blur-fabric", + "blur", + "boat-item-view", + "bobby", + "boosted-brightness", + "borderless-mining", + "brb", + "camera-utils", + "capes", + "catalogue", + "cave-dust", + "cem", + "cfwinfo", + "charmonium", + "chat-heads", + "chatting", + "cherished-worlds", + "chest-tracker", + "chunkanimator", + "chunks-fade-in", + "cit-resewn", + "citresewn", + "clear-skies", + "cleardespawn", + "clearwater", + "client-crafting", + "client-tweaks", + "client_side_mod_id", + "clienttweaks", + "colormatic", + "connectedness", + "continuity", + "controlify", + "controlling", + "cosmetica", + "craftify", + "craftpresence", + "ctrl-q", + "cull-leaves", + "cull-less-leaves", + "cullleaves", + "customskinloader", + "dailydad", + "dark-loading-screen", + "dashloader", + "dcwa", + "default-options", + "detail-armor-bar", + "ding", + "distinguished-potions", + "drawerfps", + "drippy-loading-screen", + "drippyloadingscreen", + "dripsounds-fabric", + "durabilitytooltip", + "dynamic-fps", + "dynamiccrosshair", + "dynamicsurroundings_remasteredfabric", + "ears", + "eating-animation", + "eatinganimation", + "ebe", + "effective", + "elytra-flight-hud", + "elytrautilities", + "emiffect", + "emitrades", + "emoji-type", + "enchantment-descriptions", + "enhanced-attack-indicator", + "entity-model-features", + "entity_texture_features", + "entityculling", + "entitytexturefeatures", + "equipment-compare", + "essential", + "euphoria_patcher", + "evergreenhud", + "exordium", + "explosive-enhancement", + "extendedclouds", + "extrasounds", + "extremeSoundMuffler", + "fabricskyboxes-interop", + "fabricskyboxes", + "fabrishot", + "fadeless", + "fallingleaves", + "fancymenu", + "farsight_view", + "farsight", + "fastanim", + "fastquit", + "feytweaks", + "first-person-model", + "firstperson", + "fix-gpu-memory-leak", + "flickerfix", + "fm_audio_extension", + "fog", + "forcecloseworldloadingscreen", + "forgetmechunk", + "fps", + "fpsdisplay", + "fpsreducer", + "freecam", + "fusion-connected-textures", + "gamemenumodoption", + "gamemenuremovegfarb", + "gamma-utils", + "guiclock", + "guicompass", + "guifollowers", + "held-item-info", + "hiddenrecipebook", + "highlight", + "highlighter", + "hold-that-chunk", + "hytils", + "i18nupdatemod", + "iknowwhatimdoing", + "immediatelyfast", + "in-game-account-switcher", + "indium", + "inventory-profiles-next", + "invmove_compat", + "invmove", + "iris", + "item-highlighter", + "item-model-fix", + "itemborders", + "itemphysiclite", + "itemsdontbreak", + "itemzoom", + "justzoom", + "lambdabettergrass", + "lambdynamiclights", + "language-reload", + "leave-my-bars-alone", + "legendary-tooltips", + "legendarytooltips", + "letsleepingdogslie", + "libipn", + "light-overlay", + "litematica-printer", + "load-my-resources", + "loadmyresources", + "logical-zoom", + "low-fire", + "macos-input-fixes", + "main-menu-credits", + "make_bubbles_pop", + "mcwifipnp", + "mcwifipnp", + "medievalmusic", + "merchant-markers", + "midnightlib", + "minimap", + "mixmetica", + "modernworldcreation", + "modmenu", + "modnametooltip", + "morechathistory", + "moreculling", + "moreoverlays", + "mouse-tweaks", + "mousetweaks", + "myserveriscompatible", + "namepain", + "neat", + "nebs", + "no-resource-pack-warnings", + "no-telemetry", + "no-telemetry", + "no_fog", + "not-enough-animations", + "notenoughanimations", + "notes", + "noxesium", + "nvidium", + "ob_tooltips", + "oculus", + "ok-zoomer", + "optigui", + "paperdoll", + "particle_core", + "particlesenhanced", + "physicsmod", + "pickupnotifier", + "playerhealthindicators", + "presence-footsteps", + "puzzle", + "raised", + "reauth", + "rebind-narrator", + "reeses-sodium-options", + "reforgium", + "replanter", + "replaymod", + "resourcify", + "reward-claim", + "roughly-searchable", + "rrls", + "rubidium-extra", + "rubidium", + "ryoamiclights", + "screenscale", + "screenshot-to-clipboard", + "searchables", + "shutupexperimentalsettings", + "skyguide", + "smithingtemplateviewer", + "smooth-swapping", + "smoothboot", + "sodium-extra", + "sodium-shadowy-path-blocks", + "sodium", + "sodiumdynamiclights", + "sodiumextra", + "sodiumextras", + "sodiumleafculling", + "sodiumoptionsapi", + "sspb", + "status-effect-bars", + "stendhal", + "stylisheffects", + "textbook", + "textrues-rubidium-options", + "textrues_embeddium_options", + "tipthescales", + "title-fixer", + "toastcontrol", + "tool-stats", + "tooltipfix", + "tooltipscroller", + "torohealth", + "totemcounter", + "transparent", + "travelers-titles", + "uiinputundo", + "ukulib", + "visuality", + "voxelmap-updated", + "vulkanmod", + "wakes", + "wavey-capes", + "waveycapes", + "whats-that-slot", + "worldtime", + "wynntils", + "yungsmenutweaks", + "zmedievalmusic", + "zoomify", + "zume" + ], + "both": [ + "ageingspawners", + "appleskin", + "attributefix", + "betterburning", + "betterstrongholds", + "default_side_mod_id", + "distanthorizons", + "easy_mob_farm", + "easy_npc", + "emojiful", + "humancompanions", + "invtweaks", + "kobolds", + "lootr", + "mysql-jdbc", + "mysql_jdbc", + "paraglider", + "spyglass_improvements", + "starterkit", + "tumbleweed" + ] +} diff --git a/1.20.1-FearFactoryTest/minecraft/config/mods_optimizer/mods-database.json.sha256 b/1.20.1-FearFactoryTest/minecraft/config/mods_optimizer/mods-database.json.sha256 new file mode 100644 index 0000000..cec4d7f --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/mods_optimizer/mods-database.json.sha256 @@ -0,0 +1 @@ +7a96e531c276b08d16914e78d266162bba095b53a370ed67a4836eb9efdb24f5 \ No newline at end of file diff --git a/1.20.1-FearFactoryTest/minecraft/config/nerb.yaml b/1.20.1-FearFactoryTest/minecraft/config/nerb.yaml new file mode 100644 index 0000000..2ead480 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/nerb.yaml @@ -0,0 +1,6 @@ +# Recipe Book mode: +# DISABLED: Removes the recipe book button with its default functionality from your inventory. +# ENABLED: Retains the recipe book button in your inventory, but its default functionality remains disabled. +# DISCOVERED: Automatically unlocks all existing recipes in your recipe book. Does not apply any optimizations. +# TOGGLE: Keeps the recipe book button in your inventory, but instead of toggling the recipe book, it toggles the visibility of the JEI/REI/EMI UI. Its default functionality remains disabled. +buttonMode: TOGGLE diff --git a/1.20.1-FearFactoryTest/minecraft/config/palladium_config.txt b/1.20.1-FearFactoryTest/minecraft/config/palladium_config.txt new file mode 100644 index 0000000..e02c498 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/palladium_config.txt @@ -0,0 +1,15 @@ +shaderUniformCaching:true +enableShaderAttributeCaching:true +enableMipmapCaching:true +resourceKeyDedup:true +rl_dedup:"all" +quadsDedup:true +lightweightWolfAndCatAttackAi:true +lightweightWolfAndRabbitFleeAi:true +composterFix:true +disableDataFixers:true +fastBitSets:true +fastPos:true +biomeFix:true +chunkOptimizations:true +nbtOptimizations:true diff --git a/1.20.1-FearFactoryTest/minecraft/config/renderscale.json5 b/1.20.1-FearFactoryTest/minecraft/config/renderscale.json5 new file mode 100644 index 0000000..7ad2cbc --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/renderscale.json5 @@ -0,0 +1,4 @@ +{ + "scale": 1.0, + "nearest": false +} \ No newline at end of file diff --git a/1.20.1-FearFactoryTest/minecraft/config/resourceful-config-web.json b/1.20.1-FearFactoryTest/minecraft/config/resourceful-config-web.json new file mode 100644 index 0000000..23ffcc0 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/resourceful-config-web.json @@ -0,0 +1,12 @@ +{ + "enabled": false, + "port": 7903, + "validator": { + "uuids": [], + "if": { + "password": "24e03d1a-8ad0-4fc1-a1ea-0e6df4a9c0a8", + "type": "password" + }, + "type": "if" + } +} \ No newline at end of file diff --git a/1.20.1-FearFactoryTest/minecraft/config/smoothboot.json b/1.20.1-FearFactoryTest/minecraft/config/smoothboot.json new file mode 100644 index 0000000..ca9e8be --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/smoothboot.json @@ -0,0 +1,14 @@ +{ + "threadCount": { + "bootstrap": 1, + "main": 11 + }, + "threadPriority": { + "game": 5, + "bootstrap": 1, + "main": 1, + "io": 1, + "integratedServer": 5, + "modLoading": 1 + } +} \ No newline at end of file diff --git a/1.20.1-FearFactoryTest/minecraft/config/sodiumdynamiclights-client.toml b/1.20.1-FearFactoryTest/minecraft/config/sodiumdynamiclights-client.toml index 64be378..c7582bd 100644 --- a/1.20.1-FearFactoryTest/minecraft/config/sodiumdynamiclights-client.toml +++ b/1.20.1-FearFactoryTest/minecraft/config/sodiumdynamiclights-client.toml @@ -2,7 +2,7 @@ [sodiumdynamiclights] #Lighting mode #Allowed Values: OFF, SLOW, FAST, REALTIME - mode = "REALTIME" + mode = "OFF" #Enable entities light source. entities = false #Enable first-person player light source. diff --git a/1.20.1-FearFactoryTest/minecraft/config/staaaaaaaaaaaack-client.toml b/1.20.1-FearFactoryTest/minecraft/config/staaaaaaaaaaaack-client.toml new file mode 100644 index 0000000..f34cdf0 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/staaaaaaaaaaaack-client.toml @@ -0,0 +1,16 @@ + +["Item count overlay"] + #The maximum distance between you and the drops to display its count. + #Default: 8 + #Range: 0 ~ 128 + minItemCountRenderDistance = 8 + #Default: 0.8 + #Range: 0.1 ~ 2.0 + overlaySizeMultiplier = 0.8 + #Show item count overlay even if the item count is lower than default maximum stack size. + #Default: false + alwaysShowItemCount = false + #Default: STACK_COUNT + #Allowed Values: ITEM_COUNT, STACK_COUNT + overlayDisplayMode = "STACK_COUNT" + diff --git a/1.20.1-FearFactoryTest/minecraft/config/staaaaaaaaaaaack-common.toml b/1.20.1-FearFactoryTest/minecraft/config/staaaaaaaaaaaack-common.toml new file mode 100644 index 0000000..1c7312b --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/staaaaaaaaaaaack-common.toml @@ -0,0 +1,23 @@ + +["Item merge settings"] + #The maximum horizontal block distance over which dropped items attempt to merge with each other. + #Default: 1.25, Minecraft default: 0.5 + #Range: 0.5 ~ 10.0 + maxMergeDistanceHorizontal = 1.25 + #The maximum vertical block distance over which dropped items attempt to merge with each other. + #Default: 0.0, Minecraft default: 0.0 + #Range: 0.0 ~ 10.0 + maxMergeDistanceVertical = 0.0 + #The maximum number of extra items that an item entity can hold. + #Default: 2147483647 + #Range: > 1 + maxSize = 2147483647 + #Enable for merging non-stackable item. + #Should be used with caution while playing with other mods. + #Default: false + enableForUnstackableItem = false + #The list of items that should not exceed their original max stack size. + #You can achieve the same feature by using the item tag "#staaaaaaaaaaaack:blacklist" as well. + #e.g., ["minecraft:diamond_block", "minecraft:coal"] + itemBlackList = [] + diff --git a/1.20.1-FearFactoryTest/minecraft/config/structure_layout_optimizer.jsonc b/1.20.1-FearFactoryTest/minecraft/config/structure_layout_optimizer.jsonc new file mode 100644 index 0000000..d44d542 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/structure_layout_optimizer.jsonc @@ -0,0 +1,15 @@ +{ + /* + * Whether to use an alternative strategy to make structure layouts generate slightly even faster than + * the default optimization this mod has for template pool weights. This alternative strategy works by + * changing the list of pieces that structures collect from the template pool to not have duplicate entries. + * + * This will not break the structure generation, but it will make the structure layout different than + * if this config was off (breaking vanilla seed parity). The cost of speed may be worth it in large + * modpacks where many structure mods are using very high weight values in their template pools. + * + * Pros: Get a bit more performance from high weight Template Pool Structures. + * Cons: Loses parity with vanilla seeds on the layout of the structure. (Structure layout is not broken, just different) + */ + "deduplicateShuffledTemplatePoolElementList": false +} \ No newline at end of file diff --git a/1.20.1-FearFactoryTest/minecraft/config/toadlib_config.txt b/1.20.1-FearFactoryTest/minecraft/config/toadlib_config.txt new file mode 100644 index 0000000..dd9aa4a --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/config/toadlib_config.txt @@ -0,0 +1,2 @@ +showCfgButton:true +tooltipLineLength:280 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/AttributeFix-Forge-1.20.1-21.0.4.jar b/1.20.1-FearFactoryTest/minecraft/mods/AttributeFix-Forge-1.20.1-21.0.4.jar new file mode 100644 index 0000000..103a42a --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/AttributeFix-Forge-1.20.1-21.0.4.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d8cc8928ce480288d5b504663bb13104df56ac72ce5bf36f2743ec27c701112 +size 19471 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/EBE-1.20-1.20.1-0.9.1B.jar b/1.20.1-FearFactoryTest/minecraft/mods/EBE-1.20-1.20.1-0.9.1B.jar new file mode 100644 index 0000000..e0077e6 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/EBE-1.20-1.20.1-0.9.1B.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47017b5a27eef8d3ab3f94e7dbb31f51cda71a052e6b9160966b7e7376920e7b +size 287043 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/GPUTape-1.18x-1.21x-1.0.5.1.jar b/1.20.1-FearFactoryTest/minecraft/mods/GPUTape-1.18x-1.21x-1.0.5.1.jar new file mode 100644 index 0000000..2e666e0 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/GPUTape-1.18x-1.21x-1.0.5.1.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73b92c4f1d4bf3a99320ae9f936698974cbee44caf278d3a349f172ec85dcb17 +size 20295 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/ImmersiveUI-FABRIC-0.3.0.jar b/1.20.1-FearFactoryTest/minecraft/mods/ImmersiveUI-FABRIC-0.3.0.jar new file mode 100644 index 0000000..13bf06a --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/ImmersiveUI-FABRIC-0.3.0.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9079b5c5101c3c835c88d78cefe8fbb92ca1af1db2eee3051ef3c5fb5182f880 +size 215188 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/Not Enough Recipe Book-FORGE-0.4.1+1.20.1.jar b/1.20.1-FearFactoryTest/minecraft/mods/Not Enough Recipe Book-FORGE-0.4.1+1.20.1.jar new file mode 100644 index 0000000..bfb332a --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/Not Enough Recipe Book-FORGE-0.4.1+1.20.1.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f05afb56310b21e91d2f1d1200a9c0d98a34a9689b9b6288a6507c0498b299d +size 21667 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/OctoLib-FORGE-0.5.0.1+1.20.1.jar b/1.20.1-FearFactoryTest/minecraft/mods/OctoLib-FORGE-0.5.0.1+1.20.1.jar new file mode 100644 index 0000000..0c40776 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/OctoLib-FORGE-0.5.0.1+1.20.1.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bb146c691f2c5054752f006a61aab6335ecb1cd9718a9643733de5367971047 +size 424035 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/Palladium-1.20-1.20.1-1.1.6.1.jar b/1.20.1-FearFactoryTest/minecraft/mods/Palladium-1.20-1.20.1-1.1.6.1.jar new file mode 100644 index 0000000..6b3eb7a --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/Palladium-1.20-1.20.1-1.1.6.1.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76bec06dc88e1c3196e66c8d95bee6e26e603443873629e4773a922187de5b9f +size 98806 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/RenderScale-forge-1.20.1-1.0.jar b/1.20.1-FearFactoryTest/minecraft/mods/RenderScale-forge-1.20.1-1.0.jar new file mode 100644 index 0000000..6b0955b --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/RenderScale-forge-1.20.1-1.0.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:890412f530f23ccd23dbb2e6d1154a02547c119e3f9a061bcb0f0c9489fb803f +size 82692 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/ToadLib-1.3.1-1.20-1.20.1.jar b/1.20.1-FearFactoryTest/minecraft/mods/ToadLib-1.3.1-1.20-1.20.1.jar new file mode 100644 index 0000000..8576d62 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/ToadLib-1.3.1-1.20-1.20.1.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27cea8d52d9b99087b4f2d1df5ca9af6e1e6f18749d6d27fd78ba30ba8322d2e +size 489856 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/alternate_current-mc1.20-1.7.0.jar b/1.20.1-FearFactoryTest/minecraft/mods/alternate_current-mc1.20-1.7.0.jar new file mode 100644 index 0000000..7826619 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/alternate_current-mc1.20-1.7.0.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dfa5365ef170323612d6ada820b7cac12e05135f00f16d0f627488426f59565 +size 36703 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/blinkload-forge-1.2.1+mc1.20-1.20.1.jar b/1.20.1-FearFactoryTest/minecraft/mods/blinkload-forge-1.2.1+mc1.20-1.20.1.jar new file mode 100644 index 0000000..ed1d9a6 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/blinkload-forge-1.2.1+mc1.20-1.20.1.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5e97be6bb8cce6ad4681a11e0e73fed6d723ea78c09f9535e031a6b6181defe +size 245339 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/entityculling-forge-1.7.4-mc1.20.1.jar b/1.20.1-FearFactoryTest/minecraft/mods/entityculling-forge-1.7.4-mc1.20.1.jar new file mode 100644 index 0000000..00da0e1 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/entityculling-forge-1.7.4-mc1.20.1.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ccae2ab627bf863bfa5557403ad238fa4eb5986674d4bf8602d6ad231716068 +size 75290 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/exordium-forge-1.2.1-mc1.20.1.jar b/1.20.1-FearFactoryTest/minecraft/mods/exordium-forge-1.2.1-mc1.20.1.jar new file mode 100644 index 0000000..ee50731 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/exordium-forge-1.2.1-mc1.20.1.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a535621bd4719ea6b30cab970e8f492266569fb56024ffc334da181aece22f +size 331126 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/fastboot-1.20.x-1.2.jar b/1.20.1-FearFactoryTest/minecraft/mods/fastboot-1.20.x-1.2.jar new file mode 100644 index 0000000..14c3d7c --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/fastboot-1.20.x-1.2.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66c44b0648a3e3d4115c37593208b85668a97ce012355bad3d33f3cd8142a11f +size 24477 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/immersive_optimization-forge-1.20.1-0.0.4(1).jar b/1.20.1-FearFactoryTest/minecraft/mods/immersive_optimization-forge-1.20.1-0.0.4(1).jar new file mode 100644 index 0000000..6e86d9a --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/immersive_optimization-forge-1.20.1-0.0.4(1).jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a10e82fa279c6b649b11f59e415e3e4df173ea44ec29f1c87bf9ceccdb43a3d6 +size 43276 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/lazyyyyy-lexforge-core-0.14.11.jar b/1.20.1-FearFactoryTest/minecraft/mods/lazyyyyy-lexforge-core-0.14.11.jar new file mode 100644 index 0000000..e1a1d1e --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/lazyyyyy-lexforge-core-0.14.11.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6e576388f5c55271388c03ca16bb54f916e8ef13b7ab642d92624b8935773bb +size 2805068 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/mods_optimizer-forge-1.20.1-4.1.0.jar b/1.20.1-FearFactoryTest/minecraft/mods/mods_optimizer-forge-1.20.1-4.1.0.jar new file mode 100644 index 0000000..0714f18 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/mods_optimizer-forge-1.20.1-4.1.0.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:597b49b8cc7c0eb7aa16b683bad41568f0830e9eb3964469a718cc2b598a48ec +size 204504 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/radium-mc1.20.1-0.12.4+git.26c9d8e.jar b/1.20.1-FearFactoryTest/minecraft/mods/radium-mc1.20.1-0.12.4+git.26c9d8e.jar new file mode 100644 index 0000000..1f605f6 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/radium-mc1.20.1-0.12.4+git.26c9d8e.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42584e2672d6b5329959ec2b0f342395b19389fed0ee4d86ea71072f42f77a0 +size 713454 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/resourcefulconfig-forge-1.20.1-2.1.3.jar b/1.20.1-FearFactoryTest/minecraft/mods/resourcefulconfig-forge-1.20.1-2.1.3.jar new file mode 100644 index 0000000..2c9cfc6 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/resourcefulconfig-forge-1.20.1-2.1.3.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c404b9e5cf8595427a72d4ca6ee5730289168762b463f169be3ae5dfe3727ded +size 136923 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/smoothboot(reloaded)-mc1.20.1-0.0.4.jar b/1.20.1-FearFactoryTest/minecraft/mods/smoothboot(reloaded)-mc1.20.1-0.0.4.jar new file mode 100644 index 0000000..232dab3 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/smoothboot(reloaded)-mc1.20.1-0.0.4.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a0d2682493ffa7b140a7b81f0d1e70c7536c97969397cf9e718e31391b5b9d5 +size 41044 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/staaaaaaaaaaaack-forge-1.20.1-1.5-71.jar b/1.20.1-FearFactoryTest/minecraft/mods/staaaaaaaaaaaack-forge-1.20.1-1.5-71.jar new file mode 100644 index 0000000..05288c3 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/staaaaaaaaaaaack-forge-1.20.1-1.5-71.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b4be0d5c4ea2d9914036e4f14befc59abb29caa67d1f667ab8d2b3dd2b3db75 +size 38494 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/structure_layout_optimizer-forge-1.0.10.jar b/1.20.1-FearFactoryTest/minecraft/mods/structure_layout_optimizer-forge-1.0.10.jar new file mode 100644 index 0000000..5cc10c4 --- /dev/null +++ b/1.20.1-FearFactoryTest/minecraft/mods/structure_layout_optimizer-forge-1.0.10.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:695c65f3daecf3913c79232f68bb7fa354fb447bf1dab3c57ef5199dbf4ea689 +size 246374 diff --git a/1.20.1-FearFactoryTest/minecraft/mods/ultimine_addition-forge-1.20.1-v1.4.0-release (1).jar b/1.20.1-FearFactoryTest/minecraft/mods/ultimine_addition-forge-1.20.1-v1.4.0-release (1).jar deleted file mode 100644 index 32476f7..0000000 --- a/1.20.1-FearFactoryTest/minecraft/mods/ultimine_addition-forge-1.20.1-v1.4.0-release (1).jar +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ff5984cc4aa7b566b19fdb72008613ac55bcabbc284cf946697b6d55a2681fb8 -size 683591 diff --git a/1.20.1-FearFactoryTest/minecraft/options.txt b/1.20.1-FearFactoryTest/minecraft/options.txt index 30e6e0a..ca94397 100644 --- a/1.20.1-FearFactoryTest/minecraft/options.txt +++ b/1.20.1-FearFactoryTest/minecraft/options.txt @@ -183,11 +183,11 @@ key_keybind.sophisticatedbackpacks.open_backpack:key.mouse.4 key_keybind.sophisticatedbackpacks.inventory_interaction:key.keyboard.c key_keybind.sophisticatedbackpacks.tool_swap:key.keyboard.unknown key_keybind.sophisticatedbackpacks.sort:key.mouse.middle -key_keybind.sophisticatedbackpacks.toggle_upgrade_1:key.keyboard.z:ALT -key_keybind.sophisticatedbackpacks.toggle_upgrade_2:key.keyboard.x:ALT -key_keybind.sophisticatedbackpacks.toggle_upgrade_3:key.keyboard.unknown -key_keybind.sophisticatedbackpacks.toggle_upgrade_4:key.keyboard.unknown key_keybind.sophisticatedbackpacks.toggle_upgrade_5:key.keyboard.unknown +key_keybind.sophisticatedbackpacks.toggle_upgrade_4:key.keyboard.unknown +key_keybind.sophisticatedbackpacks.toggle_upgrade_3:key.keyboard.unknown +key_keybind.sophisticatedbackpacks.toggle_upgrade_2:key.keyboard.x:ALT +key_keybind.sophisticatedbackpacks.toggle_upgrade_1:key.keyboard.z:ALT key_key.cataclysm.ability:key.keyboard.x key_key.cataclysm.helmet_ability:key.keyboard.c key_key.cataclysm.chestplate_ability:key.keyboard.y @@ -201,37 +201,37 @@ key_key.ftbultimine:key.keyboard.grave.accent key_key.ftbteams.open_gui:key.keyboard.unknown key_chunkloaders.keys.open_screen:key.keyboard.c key_key.biomancy.item_default:key.keyboard.v -key_key.jei.cheatOneItem2:key.mouse.right -key_key.jei.closeRecipeGui:key.keyboard.escape key_key.jei.toggleOverlay:key.keyboard.o:CONTROL -key_key.jei.toggleBookmarkOverlay:key.keyboard.unknown -key_key.jei.toggleEditMode:key.keyboard.unknown -key_key.jei.toggleHideIngredient:key.mouse.left:CONTROL -key_key.jei.nextSearch:key.keyboard.down -key_key.jei.copy.recipe.id:key.keyboard.unknown -key_key.jei.showRecipe2:key.mouse.left -key_key.jei.showUses2:key.mouse.right -key_key.jei.toggleWildcardHideIngredient:key.mouse.right:CONTROL -key_key.jei.bookmark:key.keyboard.a -key_key.jei.clearSearchBar:key.mouse.right -key_key.jei.previousRecipePage:key.keyboard.page.up key_key.jei.toggleCheatMode:key.keyboard.unknown -key_key.jei.previousPage:key.keyboard.unknown -key_key.jei.nextPage:key.keyboard.unknown key_key.jei.cheatItemStack2:key.mouse.middle -key_key.jei.toggleCheatModeConfigButton:key.mouse.left:CONTROL -key_key.jei.nextCategory:key.keyboard.page.down:SHIFT -key_key.jei.focusSearch:key.keyboard.f:CONTROL -key_key.jei.previousCategory:key.keyboard.page.up:SHIFT -key_key.jei.showUses:key.keyboard.u -key_key.jei.transferRecipeBookmark:key.mouse.left:SHIFT -key_key.jei.maxTransferRecipeBookmark:key.mouse.left:CONTROL -key_key.jei.cheatItemStack:key.mouse.left:SHIFT -key_key.jei.showRecipe:key.keyboard.r -key_key.jei.cheatOneItem:key.mouse.left -key_key.jei.previousSearch:key.keyboard.up +key_key.jei.showRecipe2:key.mouse.left key_key.jei.nextRecipePage:key.keyboard.page.down +key_key.jei.cheatOneItem2:key.mouse.right +key_key.jei.cheatOneItem:key.mouse.left +key_key.jei.toggleWildcardHideIngredient:key.mouse.right:CONTROL +key_key.jei.nextPage:key.keyboard.unknown +key_key.jei.clearSearchBar:key.mouse.right +key_key.jei.toggleEditMode:key.keyboard.unknown key_key.jei.recipeBack:key.keyboard.backspace +key_key.jei.transferRecipeBookmark:key.mouse.left:SHIFT +key_key.jei.previousSearch:key.keyboard.up +key_key.jei.nextCategory:key.keyboard.page.down:SHIFT +key_key.jei.copy.recipe.id:key.keyboard.unknown +key_key.jei.showRecipe:key.keyboard.r +key_key.jei.toggleCheatModeConfigButton:key.mouse.left:CONTROL +key_key.jei.closeRecipeGui:key.keyboard.escape +key_key.jei.nextSearch:key.keyboard.down +key_key.jei.previousCategory:key.keyboard.page.up:SHIFT +key_key.jei.focusSearch:key.keyboard.f:CONTROL +key_key.jei.showUses2:key.mouse.right +key_key.jei.previousRecipePage:key.keyboard.page.up +key_key.jei.previousPage:key.keyboard.unknown +key_key.jei.showUses:key.keyboard.u +key_key.jei.toggleBookmarkOverlay:key.keyboard.unknown +key_key.jei.maxTransferRecipeBookmark:key.mouse.left:CONTROL +key_key.jei.bookmark:key.keyboard.a +key_key.jei.toggleHideIngredient:key.mouse.left:CONTROL +key_key.jei.cheatItemStack:key.mouse.left:SHIFT key_key.ars_nouveau.open_book:key.keyboard.c key_key.ars_nouveau.selection_hud:key.keyboard.v key_key.ars_nouveau.next_slot:key.keyboard.x @@ -299,6 +299,7 @@ key_supplementaries.keybind.quiver:key.keyboard.v key_key.ars_elemental.open_pouch:key.keyboard.j key_key.player_spirit.left_arrow:key.keyboard.left key_key.player_spirit.right_arrow:key.keyboard.right +key_key.entityculling.toggle:key.keyboard.unknown soundCategory_master:1.0 soundCategory_music:0.0 soundCategory_record:1.0 diff --git a/1.20.1-FearFactoryTest/minecraft/shaderpacks/Hysteria-Shaders-Universal-v1.2.1.zip.txt b/1.20.1-FearFactoryTest/minecraft/shaderpacks/Hysteria-Shaders-Universal-v1.2.1.zip.txt index a2fc98f..06868c7 100644 --- a/1.20.1-FearFactoryTest/minecraft/shaderpacks/Hysteria-Shaders-Universal-v1.2.1.zip.txt +++ b/1.20.1-FearFactoryTest/minecraft/shaderpacks/Hysteria-Shaders-Universal-v1.2.1.zip.txt @@ -1,4 +1,4 @@ -#Sun May 11 18:31:42 CDT 2025 +#Sun May 11 22:05:48 CDT 2025 shadowDistance=160.0 COLORED_LIGHTS=true TAAU=true