-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update mods
- Loading branch information
Showing
11 changed files
with
129 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Replace the blockstate neighbor table | ||
replaceNeighborLookup = false | ||
# Do not store the properties of a state explicitly and read themfrom the replace neighbor table instead. Requires replaceNeighborLookup to be enabled | ||
replacePropertyMap = false | ||
# Cache the predicate instances used in multipart models | ||
cacheMultipartPredicates = true | ||
# Avoid creation of new strings when creating ModelResourceLocations | ||
modelResourceLocations = true | ||
# Do not create a new MultipartBakedModel instance for each block state using the same multipartmodel. Requires cacheMultipartPredicates to be enabled | ||
multipartDeduplication = true | ||
# Deduplicate cached data for blockstates, most importantly collision and render shapes | ||
blockstateCacheDeduplication = true | ||
# Deduplicate vertex data of baked quads in the basic model implementations | ||
bakedQuadDeduplication = true | ||
# Use smaller data structures for "simple" models, especially models with few side-specific faces | ||
modelSides = true | ||
# Replace objects used to detect multi-threaded access to chunks by a much smaller field. This option is disabled by default due to very rare and very hard-to-reproduce crashes, use at your own risk! | ||
useSmallThreadingDetector = false | ||
# Use a slightly more compact, but also slightly slower representation for block states | ||
compactFastMap = false | ||
# Populate the neighbor table used by vanilla. Enabling this slightly increases memory usage, but can help with issues in the rare case where mods access it directly. | ||
populateNeighborTable = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# This is the configuration file for ModernFix. | ||
# In general, prefer using the config screen to editing this file. It can be accessed | ||
# via the standard mod menu on your respective mod loader. Changes will, however, | ||
# require restarting the game to take effect. | ||
# | ||
# The following options can be enabled or disabled if there is a compatibility issue. | ||
# Add a line with your option name and =true or =false at the bottom of the file to enable | ||
# or disable a rule. For example: | ||
# mixin.perf.dynamic_resources=true | ||
# Do not include the #. You may reset to defaults by deleting this file. | ||
# | ||
# Available options: | ||
# mixin.bugfix.chunk_deadlock=true # (default) | ||
# mixin.bugfix.concurrency=true # (default) | ||
# mixin.bugfix.ender_dragon_leak=true # (default) | ||
# mixin.bugfix.packet_leak=false # (default) | ||
# mixin.bugfix.paper_chunk_patches=true # (default) | ||
# mixin.bugfix.restore_old_dragon_movement=false # (default) | ||
# mixin.bugfix.world_leaks=true # (default) | ||
# mixin.bugfix.world_screen_skipped=true # (default) | ||
# mixin.devenv=false # (default) | ||
# mixin.feature.branding=true # (default) | ||
# mixin.feature.cause_lag_by_disabling_threads=false # (default) | ||
# mixin.feature.direct_stack_trace=false # (default) | ||
# mixin.feature.disable_unihex_font=false # (default) | ||
# mixin.feature.integrated_server_watchdog=true # (default) | ||
# mixin.feature.measure_time=true # (default) | ||
# mixin.feature.remove_chat_signing=false # (default) | ||
# mixin.feature.snapshot_easter_egg=true # (default) | ||
# mixin.feature.spam_thread_dump=false # (default) | ||
# mixin.feature.spark_profile_launch=false # (default) | ||
# mixin.feature.stalled_chunk_load_detection=false # (default) | ||
# mixin.feature.warn_missing_perf_mods=true # (default) | ||
# mixin.launch.class_search_cache=true # (default) | ||
# mixin.perf.cache_blockstate_cache_arrays=true # (default) | ||
# mixin.perf.cache_model_materials=true # (default) | ||
# mixin.perf.cache_profile_texture_url=true # (default) | ||
# mixin.perf.cache_strongholds=true # (default) | ||
# mixin.perf.clear_fabric_mapping_tables=false # (default) | ||
# mixin.perf.clear_mixin_classinfo=false # (default) | ||
# mixin.perf.compact_bit_storage=true # (default) | ||
# mixin.perf.dedicated_reload_executor=true # (default) | ||
# mixin.perf.deduplicate_climate_parameters=false # (default) | ||
# mixin.perf.deduplicate_location=false # (default) | ||
# mixin.perf.deduplicate_wall_shapes=true # (default) | ||
# mixin.perf.dynamic_entity_renderers=false # (default) | ||
# mixin.perf.dynamic_resources=false # (default) | ||
# mixin.perf.dynamic_sounds=true # (default) | ||
# mixin.perf.dynamic_structure_manager=true # (default) | ||
# mixin.perf.faster_command_suggestions=true # (default) | ||
# mixin.perf.faster_item_rendering=false # (default) | ||
# mixin.perf.faster_texture_stitching=true # (default) | ||
# mixin.perf.fix_loop_spin_waiting=true # (default) | ||
# mixin.perf.model_optimizations=true # (default) | ||
# mixin.perf.mojang_registry_size=true # (default) | ||
# mixin.perf.nbt_memory_usage=true # (default) | ||
# mixin.perf.reduce_blockstate_cache_rebuilds=true # (default) | ||
# mixin.perf.remove_biome_temperature_cache=true # (default) | ||
# mixin.perf.resourcepacks=true # (default) | ||
# mixin.perf.state_definition_construct=true # (default) | ||
# mixin.perf.thread_priorities=true # (default) | ||
# mixin.perf.ticking_chunk_alloc=true # (default) | ||
# mixin.perf.worldgen_allocation=false # (default) | ||
# mixin.safety=true # (default) | ||
# | ||
# User overrides go here. | ||
|
||
mixin.bugfix.paper_chunk_patches=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
name = "Cloth Config API" | ||
filename = "cloth-config-15.0.128-fabric.jar" | ||
filename = "cloth-config-15.0.130-fabric.jar" | ||
side = "both" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/gY9NB5Rj/cloth-config-15.0.128-fabric.jar" | ||
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/7jtvrmVP/cloth-config-15.0.130-fabric.jar" | ||
hash-format = "sha1" | ||
hash = "10334d4833fda919fe82e6f864caed9bc018764c" | ||
hash = "4b1283fad1e4f8c9bcdb2a7767a0a468d0ac4cc5" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "9s6osm5g" | ||
version = "gY9NB5Rj" | ||
version = "7jtvrmVP" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
name = "Fabric Language Kotlin" | ||
filename = "fabric-language-kotlin-1.12.0+kotlin.2.0.10.jar" | ||
filename = "fabric-language-kotlin-1.12.1+kotlin.2.0.20.jar" | ||
side = "both" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/kdDGGNEt/fabric-language-kotlin-1.12.0%2Bkotlin.2.0.10.jar" | ||
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/FayzGq0c/fabric-language-kotlin-1.12.1%2Bkotlin.2.0.20.jar" | ||
hash-format = "sha1" | ||
hash = "8b5c6d1caff90301ac9856959457dcfc793774c3" | ||
hash = "5a5c0288ed6ab8c260b987c84d8cdbfe6bc928a7" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "Ha28R6CL" | ||
version = "kdDGGNEt" | ||
version = "FayzGq0c" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
name = "Indium" | ||
filename = "indium-1.0.34+mc1.21.jar" | ||
filename = "indium-1.0.35+mc1.21.jar" | ||
side = "client" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/Orvt0mRa/versions/K4hsdO9H/indium-1.0.34%2Bmc1.21.jar" | ||
url = "https://cdn.modrinth.com/data/Orvt0mRa/versions/Z8VpxxGh/indium-1.0.35%2Bmc1.21.jar" | ||
hash-format = "sha1" | ||
hash = "cf4641206fde618f194dc0a1064b1294e385d679" | ||
hash = "1bf4b5db91f4e6d7a4f94fe2e96525d22df1cacb" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "Orvt0mRa" | ||
version = "K4hsdO9H" | ||
version = "Z8VpxxGh" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
name = "ModernFix" | ||
filename = "modernfix-fabric-5.19.0+mc1.21.jar" | ||
filename = "modernfix-fabric-5.19.2+mc1.21.1.jar" | ||
side = "both" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/nmDcB62a/versions/KCOwQkKi/modernfix-fabric-5.19.0%2Bmc1.21.jar" | ||
url = "https://cdn.modrinth.com/data/nmDcB62a/versions/wq4G8eI8/modernfix-fabric-5.19.2%2Bmc1.21.1.jar" | ||
hash-format = "sha1" | ||
hash = "d2d25377d2a675c0aedab73876eac3fc1f97403d" | ||
hash = "6b0b3272cca6f324c6143640ad678e3f61e68df1" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "nmDcB62a" | ||
version = "KCOwQkKi" | ||
version = "wq4G8eI8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
name = "Noisium" | ||
filename = "noisium-fabric-2.2.1+mc1.21.jar" | ||
filename = "noisium-fabric-2.3.0+mc1.21-1.21.1.jar" | ||
side = "server" | ||
|
||
[download] | ||
url = "https://cdn.modrinth.com/data/KuNKN7d2/versions/W8V2bkLB/noisium-fabric-2.2.1%2Bmc1.21.jar" | ||
url = "https://cdn.modrinth.com/data/KuNKN7d2/versions/4sGQgiu2/noisium-fabric-2.3.0%2Bmc1.21-1.21.1.jar" | ||
hash-format = "sha1" | ||
hash = "f06c1a48013bb4ff1183348d4d6ab3a31988edd3" | ||
hash = "642a672cfc60ff1e1262a39d7e160b1381c5120c" | ||
|
||
[update] | ||
[update.modrinth] | ||
mod-id = "KuNKN7d2" | ||
version = "W8V2bkLB" | ||
version = "4sGQgiu2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters