commit 22b43cb9b2a6ab2999e10c36d7493e1048e0ff81 Author: anonoe <8bdd1ef7-1633-4e26-83a0-8dda8605bcd0@aleeas.com> Date: Tue Jan 6 23:13:05 2026 +0100 . diff --git a/config/FabricProxy-Lite.toml b/config/FabricProxy-Lite.toml new file mode 100644 index 0000000..a4b62d4 --- /dev/null +++ b/config/FabricProxy-Lite.toml @@ -0,0 +1,4 @@ +hackOnlineMode = true +hackEarlySend = false +hackMessageChain = false +secret = "PUT SOMETHING HERE" diff --git a/config/NoChatReports/NCR-Client.json b/config/NoChatReports/NCR-Client.json new file mode 100644 index 0000000..02a4f5f --- /dev/null +++ b/config/NoChatReports/NCR-Client.json @@ -0,0 +1,5 @@ +{ + "showNCRButton": false, + "showReloadButton": false, + "verifiedIconEnabled": false +} \ No newline at end of file diff --git a/config/NoChatReports/NCR-Common.json b/config/NoChatReports/NCR-Common.json new file mode 100644 index 0000000..f79a76a --- /dev/null +++ b/config/NoChatReports/NCR-Common.json @@ -0,0 +1,7 @@ +{ + "demandOnClientMessage": "You do not have No Chat Reports, and this server is configured to require it on client!", + "demandOnClient": false, + "convertToGameMessage": true, + "addQueryData": true, + "enableDebugLog": false +} \ No newline at end of file diff --git a/config/NoChatReports/README.md b/config/NoChatReports/README.md new file mode 100644 index 0000000..33141b5 --- /dev/null +++ b/config/NoChatReports/README.md @@ -0,0 +1,3 @@ +# No Chat Reports +You can find updated documentation of configuration files on the wiki: +https://github.com/Aizistral-Studios/No-Chat-Reports/wiki/Configuration-Files diff --git a/config/audioplayer/audioplayer-server.properties b/config/audioplayer/audioplayer-server.properties new file mode 100644 index 0000000..bd17e3f --- /dev/null +++ b/config/audioplayer/audioplayer-server.properties @@ -0,0 +1,45 @@ +# The URL of the Filebin service that the mod should use +filebin_url=https://filebin.net/ +# The maximum allowed size of an uploaded file in bytes +max_upload_size=20000000 +# The cooldown of goat horns with custom audio in ticks +goat_horn_cooldown=140 +# The range of music discs with custom audio in blocks +music_disc_range=65.0 +# The range of note blocks with custom audio in blocks +note_block_range=16.0 +# The range of goat horns with custom audio in blocks +goat_horn_range=256.0 +# The maximum allowed range of a music disc with custom audio in blocks +max_music_disc_range=256.0 +# The maximum allowed range of a note block with custom audio in blocks +max_note_block_range=256.0 +# The maximum allowed range of a goat horn with custom audio in blocks +max_goat_horn_range=512.0 +# Whether users should be able to upload .wav files +# Note that .wav files are not compressed and can be very large +# Playing .wav files may result in more RAM usage +allow_wav_upload=true +# Whether users should be able to upload .mp3 files +# Note that .mp3 files require Simple Voice Chats mp3 decoder +# Playing .mp3 files can be slightly more CPU intensive +allow_mp3_upload=true +# The maximum allowed duration of a custom music disc in seconds +max_music_disc_duration=600 +# The maximum allowed duration of a note block with custom audio in seconds +max_note_block_duration=300 +# The maximum allowed duration of a custom goat horn in seconds +max_goat_horn_duration=20 +# The maximum amount of audio files that are cached in memory +# Setting this to 0 will disable the cache +# A higher value will result in less disk reads, but more RAM usage +cache_size=16 +# Static audio does not have directionality or falloff (volume does not decrease with distance) +# The /audioplayer setstatic [enabled] command can be used when this is set to true +# If this config option is disabled, static audio is completely disabled and will play as if the option wouldn't be set +allow_static_audio=true +# If the mod should run a webserver for uploads +# You can configure the webserver in the webserver.properties config +# The webserver.properties will only be generated if this option is set to true +# NOTE: This option is experimental and subject to change +run_web_server=false diff --git a/config/c2me.toml b/config/c2me.toml new file mode 100644 index 0000000..e0c289f --- /dev/null +++ b/config/c2me.toml @@ -0,0 +1,144 @@ +version = 3 +# (Default: +# max( +# 1, +# min( +# if( is_windows, +# (cpus / 1.6 - 2), +# (cpus / 1.2 - 2) +# ), +# if( is_j9vm, +# ( ( mem_gb - (if(is_client, 0.6, 0.2)) ) / 0.5 ), +# ( ( mem_gb - (if(is_client, 1.2, 0.6)) ) / 1.2 ) +# ) +# ) - if(is_client, 2, 0) +# ) +# ) +# The expression for the default value of global executor parallelism. +# This is used when the parallelism isn't overridden. +# Available variables: is_windows, is_j9vm, is_client, cpus, mem_gb +# +defaultGlobalExecutorParallelismExpression = "max(1,min(if(is_client,(cpus/2.66+1),(cpus/1.5)),if(is_j9vm,((mem_gb-(if(is_client,0.5,0.2)))/0.2),((mem_gb-(if(is_client,0.8,0.5)))/0.2))))" +# (Default: 2) Configures the parallelism of global executor +globalExecutorParallelism = "default" + +[noTickViewDistance] + # (Default: true) Whether to use compatibility mode to send chunks + # This may fix some mod compatibility issues + compatibilityMode = "default" + # (Default: 3) No-tick view distance max concurrent chunk loads + # Lower this for a better latency and higher this for a faster loading + maxConcurrentChunkLoads = 2 + # (Default: false) Whether to ensure correct chunks within normal render distance + # This will send chunks twice increasing network load + ensureChunkCorrectness = "default" + # (Default: true) Whether to enable no-tick view distance + enabled = "default" + +[ioSystem] + # (Default: true) Whether to use async chunk loading & unloading + async = "default" + # (Default: -1) Defines which chunk compression should be used + # -1 for Vanilla default + # 1 for GZip (RFC1952) (Vanilla compatible) + # 2 for Zlib (RFC1950) (Vanilla default) (Vanilla compatible) + # 3 for Uncompressed (Fastest, but higher disk usage) (Vanilla compatible) + # + # Original chunk data will still readable after modifying this option + # as this option only affects newly stored chunks + # Invalid values will fall back to vanilla default + # + chunkStreamVersion = "default" + # (Default: false) EXPERIMENTAL FEATURE + # This replaces the way your chunks are saved. + # Please keep regular backups of your world if you are using this feature, + # and report any world issues you encounter with this feature to our GitHub. + # + # Whether to use the fast reduced allocation chunk serializer + # (may cause incompatibility with other mods) + # + # Set to false for the following reasons: + # Incompatible with architectury@9.2.14 (*) (defined in c2me) + gcFreeChunkSerializer = "default" + # (Default: true) Whether to use the optimized implementation of IO system + replaceImpl = "default" + # (Default: 8192) Soft limit for io worker nbt cache + chunkDataCacheSoftLimit = "default" + # (Default: 32678) Hard limit for io worker nbt cache + chunkDataCacheLimit = "default" + +[threadedWorldGen] + # (Default: true) Whether to allow feature generation (world decorations like trees, ores and etc.) run in parallel + # (may cause incompatibility with other mods) + allowThreadedFeatures = "default" + # (Default: true) Whether to allow reducing lock radius + # (may cause incompatibility with other mods) + reduceLockRadius = "default" + # (Default: true) Whether to enable async and parallel scheduling + # This will reduce server thread load + # (may cause incompatibility with other mods) + # + asyncScheduling = "default" + # (Default: false) Whether to enable this feature + enabled = "default" + +[fixes] + # (Default: true) + # Whether to disable the shutdown hook of log4j2 on dedicated servers. + # Enabling this also makes the JVM exit when the dedicated server is considered fully shut down. + # This option have no effect on client-side. + # We has historically been doing this, and this config option allows you to disable this behavior. + # + disableLoggingShutdownHook = "default" + # (Default: true) Enforces safe world random access. + # This feature detects unsafe off-thread world random access, helping to find the causes + # of mysterious "Accessing LegacyRandomSource from multiple threads" crash. + # The default behavior is to fail hard when such bad things happens. + # Disabling this option will replace this behavior with a warning. + # + # It is generally not recommended to disable this settings unless you know what you are doing + # + # + enforceSafeWorldRandomAccess = "default" + +[generalOptimizations] + # (Default: 100000) The task interval of mid-tick chunk tasks in nanoseconds (-1 to disable) + # Mid-tick chunk tasks is to execute chunk tasks during server tick loop + # to speed up chunk loading and generation + # This helps chunks loading and generating under high MSPT but may raise + # MSPT when chunks are loading or generating + # + # It is generally not recommended to adjust this value unless you know + # what you are doing + # + # Incompatible with Dimensional Threading (dimthread) + # + midTickChunkTasksInterval = "default" + # (Default: true) Whether to let async chunk request no longer block server thread + # (may cause incompatibility with other mods) + optimizeAsyncChunkRequest = "default" + + [generalOptimizations.autoSave] + # (Default: ENHANCED) Defines how auto save should be handled + # VANILLA: Use vanilla auto-save behavior (auto-save performed every tick during ticking) + # ENHANCED: Use C2ME enhanced auto-save (auto-save performed when the server have spare time after ticking) + # PERIODIC: Use pre-1.18 vanilla auto-save behavior (auto-save performed every 6000 ticks during ticking) + # + # Please preserve quotes so this config don't break + # + mode = "default" + # (Default: 20000) Defines the delay in milliseconds between performing auto-save for a chunk + # This is only used when mode is set to ENHANCED + # + delay = "default" + +[vanillaWorldGenOptimizations] + # (Default: true) Whether to enable aquifer optimizations to accelerate overworld worldgen + # (may cause incompatibility with other mods) + optimizeAquifer = "default" + # (Default: true) Whether to enable End Biome Cache to accelerate The End worldgen + # This is no longer included in lithium-fabric + # (may cause incompatibility with other mods) + # + useEndBiomeCache = "default" + diff --git a/config/enhancedgroups/auto-join-groups.json b/config/enhancedgroups/auto-join-groups.json new file mode 100644 index 0000000..7705496 --- /dev/null +++ b/config/enhancedgroups/auto-join-groups.json @@ -0,0 +1,4 @@ +{ + "playerGroups": {}, + "globalGroupForced": false +} \ No newline at end of file diff --git a/config/enhancedgroups/enhancedgroups.properties b/config/enhancedgroups/enhancedgroups.properties new file mode 100644 index 0000000..b20031d --- /dev/null +++ b/config/enhancedgroups/enhancedgroups.properties @@ -0,0 +1,37 @@ +# The default range for the /instantgroup command if no range was provided +default_instant_group_range=128.0 +# The name of the instant group +instant_group_name=Instant Group +# The default permission level of the /instantgroup command +# EVERYONE - Every player can use this command +# OPS - Operators can use this command +# NOONE - The command can't be used by anyone +instant_group_command_permission_level=EVERYONE +# The default permission level of the /persistentgroup command +# EVERYONE - Every player can use this command +# OPS - Operators can use this command +# NOONE - The command can't be used by anyone +persistent_group_command_permission_level=OPS +# The default permission level of the /autojoingroup command +# EVERYONE - Every player can use this command +# OPS - Operators can use this command +# NOONE - The command can't be used by anyone +auto_join_group_command_permission_type=EVERYONE +# The default permission level of the /autojoingroup global command +# EVERYONE - Every player can use this command +# OPS - Operators can use this command +# NOONE - The command can't be used by anyone +auto_join_group_global_command_permission_type=OPS +# The default permission level of the /forcejoingroup command +# EVERYONE - Every player can use this command +# OPS - Operators can use this command +# NOONE - The command can't be used by anyone +force_join_group_command_permission_type=OPS +# Determines if a summary of all groups should be shown when a player joins the server +group_summary=true +# Forces all groups to be of the given type +# OFF - No group type is forced +# NORMAL - All groups are forced to be normal groups +# OPEN - All groups are forced to be open groups +# ISOLATED - All groups are forced to be isolated groups +force_group_type=OFF diff --git a/config/enhancedgroups/persistent-groups.json b/config/enhancedgroups/persistent-groups.json new file mode 100644 index 0000000..d5fad58 --- /dev/null +++ b/config/enhancedgroups/persistent-groups.json @@ -0,0 +1,8 @@ +[ + { + "name": "general", + "type": "OPEN", + "hidden": false, + "id": "9c8f061b-56c7-424c-ba80-a14c71781b5f" + } +] \ No newline at end of file diff --git a/config/ferritecore.mixin.properties b/config/ferritecore.mixin.properties new file mode 100644 index 0000000..63146b2 --- /dev/null +++ b/config/ferritecore.mixin.properties @@ -0,0 +1,22 @@ +# Replace the blockstate neighbor table +replaceNeighborLookup = true +# Do not store the properties of a state explicitly and read themfrom the replace neighbor table instead. Requires replaceNeighborLookup to be enabled +replacePropertyMap = true +# 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 = true +# 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 diff --git a/config/modernfix-mixins.properties b/config/modernfix-mixins.properties new file mode 100644 index 0000000..911076a --- /dev/null +++ b/config/modernfix-mixins.properties @@ -0,0 +1,92 @@ +# 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.buffer_builder_leak=true # (default) +# mixin.bugfix.chunk_deadlock=false # (overridden for mod compat) +# mixin.bugfix.concurrency=true # (default) +# mixin.bugfix.ender_dragon_leak=true # (default) +# mixin.bugfix.missing_block_entities=false # (default) +# mixin.bugfix.packet_leak=false # (default) +# mixin.bugfix.paper_chunk_patches=false # (overridden for mod compat) +# mixin.bugfix.registry_ops_cme=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.blockentity_incorrect_thread=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.log_stdout_in_log_files=true # (default) +# mixin.feature.mcfunction_profiling=true # (default) +# mixin.feature.measure_time=true # (default) +# mixin.feature.remove_chat_signing=false # (default) +# mixin.feature.remove_telemetry=true # (default) +# mixin.feature.snapshot_easter_egg=true # (default) +# mixin.feature.spam_thread_dump=false # (default) +# mixin.feature.spark_profile_launch=false # (default) +# mixin.feature.spark_profile_world_join=false # (default) +# mixin.feature.stalled_chunk_load_detection=false # (default) +# mixin.feature.suppress_narrator_stacktrace=true # (default) +# mixin.feature.warn_missing_perf_mods=true # (default) +# mixin.launch.class_search_cache=true # (default) +# mixin.perf.blast_search_trees=true # (default) +# mixin.perf.blast_search_trees.force=false # (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=false # (overridden for mod compat) +# mixin.perf.cache_upgraded_structures=true # (default) +# mixin.perf.chunk_meshing=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.compact_mojang_registries=true # (default) +# mixin.perf.compress_unihex_font=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_dfu=true # (default) +# mixin.perf.dynamic_entity_renderers=false # (default) +# mixin.perf.dynamic_resources=false # (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_structure_location=true # (default) +# mixin.perf.faster_texture_stitching=true # (default) +# mixin.perf.fix_loop_spin_waiting=true # (default) +# mixin.perf.ingredient_item_deduplication=false # (default) +# mixin.perf.lazy_search_tree_registry=true # (default) +# mixin.perf.memoize_creative_tab_build=true # (default) +# mixin.perf.model_optimizations=true # (default) +# mixin.perf.mojang_registry_size=true # (default) +# mixin.perf.reduce_blockstate_cache_rebuilds=true # (default) +# mixin.perf.remove_biome_temperature_cache=true # (default) +# mixin.perf.remove_spawn_chunks=false # (default) +# mixin.perf.state_definition_construct=true # (default) +# mixin.perf.thread_priorities=false # (overridden for mod compat) +# mixin.perf.ticking_chunk_alloc=true # (default) +# mixin.perf.worldgen_allocation=true # (default) +# mixin.safety=true # (default) +# +# User overrides go here. +mixin.bugfix.packet_leak=true +mixin.perf.clear_fabric_mapping_tables=true +mixin.perf.clear_mixin_classinfo=true +mixin.perf.deduplicate_location=true +mixin.perf.dynamic_entity_renderers=true +mixin.perf.dynamic_resources=true +mixin.perf.faster_item_rendering=true +mixin.perf.remove_spawn_chunks=true diff --git a/config/not-just-biomes.json b/config/not-just-biomes.json new file mode 100644 index 0000000..71899d8 --- /dev/null +++ b/config/not-just-biomes.json @@ -0,0 +1,14 @@ +{ + "enabled_modules": { + "forest": true, + "ore_vein": true, + "taiga": true, + "birch_forest": true, + "well": true, + "swamp": true, + "tectonic_trees": false, + "cherry_grove": true, + "dungeon": true, + "mansion": true + } +} \ No newline at end of file diff --git a/config/shulkercharm.json5 b/config/shulkercharm.json5 new file mode 100644 index 0000000..afd644f --- /dev/null +++ b/config/shulkercharm.json5 @@ -0,0 +1,13 @@ +{ + /* The modifier for the maximum distance from a beacon to keep charging. + Formula is * + 10. + Vanilla range modifier is 10; set to -1 to disable charge requirement. + */ + "rangeModifier": 10, + /* The maximum amount of power a shulker charm can store. + Charm gains 20 energy per second when in beacon range, + and loses 20 energy per second when out of it. + Default value 1200 (60 seconds). + */ + "maxPower": 1200 +} diff --git a/config/tectonic.json b/config/tectonic.json new file mode 100644 index 0000000..198c7e9 --- /dev/null +++ b/config/tectonic.json @@ -0,0 +1,56 @@ +{ + "biomes": { + "temperature_multiplier": 1.0, + "temperature_offset": 0.0, + "temperature_scale": 0.25, + "vegetation_multiplier": 1.0, + "vegetation_offset": 0.0, + "vegetation_scale": 0.25 + }, + "caves": { + "carvers_enabled": true, + "cheese_additive": 0.27, + "cheese_enabled": true, + "depth_cutoff_size": 0.1, + "depth_cutoff_start": 0.1, + "noodle_additive": -0.075, + "noodle_enabled": true, + "spaghetti_enabled": true + }, + "continents": { + "continents_scale": 0.13, + "erosion_scale": 0.25, + "flat_terrain_skew": 0.1, + "jungle_pillars": true, + "ocean_offset": -0.8, + "ridge_scale": 0.25, + "river_lanterns": true, + "rolling_hills": true, + "underground_rivers": true + }, + "general": { + "mod_enabled": true, + "snow_start_offset": 128 + }, + "global_terrain": { + "elevation_boost": 0.0, + "lava_tunnels": true, + "max_y": 320, + "min_y": -64, + "ultrasmooth": false, + "vertical_scale": 1.125 + }, + "islands": { + "enabled": true, + "noise_multiplier": 1.0, + "noise_offset": 0.0, + "noise_scale": 0.11 + }, + "minor_version": 1, + "oceans": { + "deep_ocean_depth": -0.45, + "monument_offset": -30, + "ocean_depth": -0.15, + "remove_frozen_ocean_ice": false + } +} \ No newline at end of file diff --git a/config/threadtweak.json b/config/threadtweak.json new file mode 100644 index 0000000..93fb2d4 --- /dev/null +++ b/config/threadtweak.json @@ -0,0 +1,13 @@ +{ + "threadCount": { + "bootstrap": 1, + "main": 3 + }, + "threadPriority": { + "game": 8, + "bootstrap": 1, + "main": 4, + "io": 7, + "integratedServer": 7 + } +} \ No newline at end of file diff --git a/config/vmp.properties b/config/vmp.properties new file mode 100644 index 0000000..2e7aca9 --- /dev/null +++ b/config/vmp.properties @@ -0,0 +1,15 @@ +#Configuration file for VMP +#Sat Apr 12 14:26:44 GMT 2025 +deprecated_precache_biome_lookup=false +exp3_use_packet_priority_system=false +exp_use_optimized_chunk_ticking_iteration=true +exp_use_packet_priority_system_block_update_consolidation=false +show_async_loading_messages=false +show_chunk_tracking_messages=false +target_chunk_send_rate=-1 +use_async_chunks_on_login=true +use_async_chunks_on_some_commands=false +use_async_logging=true +use_async_portals=true +use_multiple_netty_event_loops=false +use_optimized_entity_tracking=true diff --git a/config/voicechat/translations.properties b/config/voicechat/translations.properties new file mode 100644 index 0000000..1f179ce --- /dev/null +++ b/config/voicechat/translations.properties @@ -0,0 +1,14 @@ +# Simple Voice Chat translations +# This file contains all server-side translations for the Simple Voice Chat mod + +# The message a player gets when kicked for not having voice chat installed and the server has force_voicechat enabled +# The first parameter is the mod/plugin name and the second parameter is the mod/plugin version +force_voicechat_kick_message=You need %s %s to play on this server +# The message a player gets when joining a server with an incompatible voice chat version +# The first parameter is the mod/plugin version and the second parameter is the mod/plugin name +voicechat_not_compatible_message=Your voice chat version is not compatible with the servers version.\\nPlease install version %s of %s. +# The message a player gets when trying to execute a command that requires the voice chat mod installed on the client side. +# The first parameter is the mod/plugin name +voicechat_needed_for_command_message=You need to have %s installed on your client to use this command +# The message a player gets when trying to execute a command that can only be executed as a player +player_command_message=This command can only be executed as a player diff --git a/config/voicechat/voicechat-server.properties b/config/voicechat/voicechat-server.properties new file mode 100644 index 0000000..6fa1144 --- /dev/null +++ b/config/voicechat/voicechat-server.properties @@ -0,0 +1,51 @@ +# Simple Voice Chat server config v1.20.1-2.6.11 + +# The port number to use for the voice chat communication. +# Audio packets are always transmitted via the UDP protocol on the port number +# specified here, independently of other networking used for the game server. +# Set this to '-1' to use the same port number that is used by the Minecraft server. +# However, it is strongly recommended NOT to use the same port number because UDP on +# it is also used by default for the server query. Doing so may crash the server! +port=24455 +# The server IP address to bind the voice chat to +# Leave blank to use the 'server-ip' property from the 'server.properties' config file +# To bind to the wildcard IP address, use '*' +bind_address= +# The distance to which the voice can be heard +max_voice_distance=48.0 +# The distance to which the voice can be heard when whispering +whisper_distance=24.0 +# The Opus codec +# Valid values are 'VOIP', 'AUDIO', and 'RESTRICTED_LOWDELAY' +codec=VOIP +# The maximum size that audio packets are allowed to have (in bytes) +# Set this to a lower value if audio packets don't arrive +mtu_size=1024 +# The frequency at which keep-alive packets are sent (in milliseconds) +# Setting this to a higher value may result in timeouts +keep_alive=1000 +# If group chats are allowed +enable_groups=true +# The hostname that clients should use to connect to the voice chat +# This may also include a port, e.g. 'example.com:24454' or just a port, e.g. '24454' +# Do NOT change this value if you don't know what you're doing +voice_host= +# If players are allowed to record the voice chat audio +allow_recording=true +# If spectators are allowed to talk to other players +spectator_interaction=false +# If spectators can talk to players they are spectating +spectator_player_possession=false +# If players without the voice chat mod should be kicked from the server +force_voice_chat=true +# The amount of time the server should wait to check if a player has the mod installed (in milliseconds) +# Only relevant when 'force_voice_chat' is set to 'true' +login_timeout=10000 +# The range in which the voice chat should broadcast audio +# A value less than 0 means 'max_voice_distance' +broadcast_range=-1.0 +# If the voice chat server should reply to external pings +allow_pings=true +# If the mod should load native libraries on dedicated servers +# This is mostly relevant for voice chat addons +use_natives=true diff --git a/graves v3.0.4or5 (MC 1.20-1.20.6).zip b/graves v3.0.4or5 (MC 1.20-1.20.6).zip new file mode 100644 index 0000000..59ff5a1 Binary files /dev/null and b/graves v3.0.4or5 (MC 1.20-1.20.6).zip differ diff --git a/mods/.index/architectury-api.pw.toml b/mods/.index/architectury-api.pw.toml new file mode 100644 index 0000000..e691a11 --- /dev/null +++ b/mods/.index/architectury-api.pw.toml @@ -0,0 +1,16 @@ +filename = 'architectury-9.2.14-fabric.jar' +name = 'Architectury API' +side = 'both' +x-prismlauncher-loaders = [ 'quilt', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '4cb8f009fd522d68a795d2cf5a657bdbe248b32ba7c33cd968f5ab521e9d60e198f8a3f6c50e7d960a2b8f50375116be0db1fd44b5710ea758697d8ea70d15de' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/lhGA9TYQ/versions/WbL7MStR/architectury-9.2.14-fabric.jar' + +[update.modrinth] +mod-id = 'lhGA9TYQ' +version = 'WbL7MStR' \ No newline at end of file diff --git a/mods/.index/audioplayer.pw.toml b/mods/.index/audioplayer.pw.toml new file mode 100644 index 0000000..f6edb95 --- /dev/null +++ b/mods/.index/audioplayer.pw.toml @@ -0,0 +1,16 @@ +filename = 'audioplayer-fabric-1.20.1-1.13.2.jar' +name = 'AudioPlayer' +side = 'server' +x-prismlauncher-loaders = [ 'quilt', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'beta' + +[download] +hash = '2012f04a9fc8092df4f6ac43a38dd1b463c40d8b90ecebaae3412b3d9d99b9fad5297657b729f69bb016270a0741475abb4ee3b41d9aed17107cdfa3873b6fb7' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/SRlzjEBS/versions/M6EFtrdy/audioplayer-fabric-1.20.1-1.13.2.jar' + +[update.modrinth] +mod-id = 'SRlzjEBS' +version = 'M6EFtrdy' \ No newline at end of file diff --git a/mods/.index/botarium.pw.toml b/mods/.index/botarium.pw.toml new file mode 100644 index 0000000..bae4b18 --- /dev/null +++ b/mods/.index/botarium.pw.toml @@ -0,0 +1,16 @@ +filename = 'botarium-fabric-1.20.1-2.3.4.jar' +name = 'Botarium' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '03589a8d05c17dbb4271c212d0eb00c53d9d5c0705f63c7816ff9e099245db71f94e7c544e323beaeac28d30bd3807eeccb1352792cb6d778ff6ecf68f4635c7' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/2u6LRnMa/versions/f3ATcSfq/botarium-fabric-1.20.1-2.3.4.jar' + +[update.modrinth] +mod-id = '2u6LRnMa' +version = 'f3ATcSfq' \ No newline at end of file diff --git a/mods/.index/c2me-fabric.pw.toml b/mods/.index/c2me-fabric.pw.toml new file mode 100644 index 0000000..8f9ec59 --- /dev/null +++ b/mods/.index/c2me-fabric.pw.toml @@ -0,0 +1,16 @@ +filename = 'c2me-fabric-mc1.20.1-0.2.0+alpha.11.16.jar' +name = 'Concurrent Chunk Management Engine (Fabric)' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'alpha' + +[download] +hash = '359c715fd6a0464192d36b4d9dbb7927776eaae498f0cab939b49740fc724bda83aaf4f069f395dc5975d1e82762ee3b602111d9375eb27ab6f5360c4b17f2ff' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/VSNURh3q/versions/s4WOiNtz/c2me-fabric-mc1.20.1-0.2.0%2Balpha.11.16.jar' + +[update.modrinth] +mod-id = 'VSNURh3q' +version = 's4WOiNtz' \ No newline at end of file diff --git a/mods/.index/carpet.pw.toml b/mods/.index/carpet.pw.toml new file mode 100644 index 0000000..237e803 --- /dev/null +++ b/mods/.index/carpet.pw.toml @@ -0,0 +1,16 @@ +filename = 'fabric-carpet-1.20-1.4.112+v230608.jar' +name = 'Carpet' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = 'bf9060e6b1d30d676d9efd30369ccb5baef164fc2d87aad7c7a19d2d9265b5d1d328428a308bdd15960a26bfe46dcd823a236c39f4e26474847354337b043c51' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/TQTTVgYE/versions/K0Wj117C/fabric-carpet-1.20-1.4.112%2Bv230608.jar' + +[update.modrinth] +mod-id = 'TQTTVgYE' +version = 'K0Wj117C' \ No newline at end of file diff --git a/mods/.index/cloth-config.pw.toml b/mods/.index/cloth-config.pw.toml new file mode 100644 index 0000000..529574c --- /dev/null +++ b/mods/.index/cloth-config.pw.toml @@ -0,0 +1,16 @@ +filename = 'cloth-config-11.1.136-fabric.jar' +name = 'Cloth Config API' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '2da85c071c854223cc30c8e46794391b77e53f28ecdbbde59dc83b3dbbdfc74be9e68da9ed464e7f98b4361033899ba4f681ebff1f35edc2c60e599a59796f1c' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/9s6osm5g/versions/2xQdCMyG/cloth-config-11.1.136-fabric.jar' + +[update.modrinth] +mod-id = '9s6osm5g' +version = '2xQdCMyG' \ No newline at end of file diff --git a/mods/.index/copycats.pw.toml b/mods/.index/copycats.pw.toml new file mode 100644 index 0000000..063a187 --- /dev/null +++ b/mods/.index/copycats.pw.toml @@ -0,0 +1,16 @@ +filename = 'copycats-2.2.2+mc.1.20.1-fabric.jar' +name = 'Create: Copycats+' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '21c4409d5f453a29d161b34ebed3b6253953529fbfcac4651fd4476059a99f6d2244486345b69a46dc9b3a1ebdfd39cd0ef0c1b8b814a95b3cf7c8465471eee1' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/UT2M39wf/versions/WYmjbo0H/copycats-2.2.2%2Bmc.1.20.1-fabric.jar' + +[update.modrinth] +mod-id = 'UT2M39wf' +version = 'WYmjbo0H' \ No newline at end of file diff --git a/mods/.index/coroutil.pw.toml b/mods/.index/coroutil.pw.toml new file mode 100644 index 0000000..e3c7559 --- /dev/null +++ b/mods/.index/coroutil.pw.toml @@ -0,0 +1,16 @@ +filename = 'coroutil-fabric-1.20.1-1.3.7.jar' +name = 'CoroUtil' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '4a03363dd9cfd517eb04bea77779c88e74f12c1dacadc726869cb9b595348d615e50041893ad72155f7ac2c359219604710d6157dec95a46fe0e598ef5642035' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/rLLJ1OZM/versions/7tRnsYkP/coroutil-fabric-1.20.1-1.3.7.jar' + +[update.modrinth] +mod-id = 'rLLJ1OZM' +version = '7tRnsYkP' \ No newline at end of file diff --git a/mods/.index/create-deco.pw.toml b/mods/.index/create-deco.pw.toml new file mode 100644 index 0000000..80fb7f3 --- /dev/null +++ b/mods/.index/create-deco.pw.toml @@ -0,0 +1,16 @@ +filename = 'createdeco-2.0.2-1.20.1-fabric.jar' +name = 'Create Deco' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = 'f7ce4b520b7eb47fb9d1a8f510465b96673dee2d6f91ff0720713ee62143d095b399a980666538ebfb8b401fb5e93baf50a2cb2be6a4f2adfde2024f198a35c9' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/sMvUb4Rb/versions/GsxgfeNu/createdeco-2.0.2-1.20.1-fabric.jar' + +[update.modrinth] +mod-id = 'sMvUb4Rb' +version = 'GsxgfeNu' \ No newline at end of file diff --git a/mods/.index/create-estrogen.pw.toml b/mods/.index/create-estrogen.pw.toml new file mode 100644 index 0000000..5c77f61 --- /dev/null +++ b/mods/.index/create-estrogen.pw.toml @@ -0,0 +1,16 @@ +filename = 'createestrogen-1.0.0+1.20.1-fabric.jar' +name = 'Create: Estrogen' +side = 'both' +x-prismlauncher-loaders = [ 'quilt', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'alpha' + +[download] +hash = '41e588e14e55b1d17134603992b188a8f47a65691db27a4f08db79d9402ce1ad26af6d76731b95fa0f553196812a668da6704c8f8a2f84a0fb6670a10e9193bf' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/OEAJaSuI/versions/v2ijIuGa/createestrogen-1.0.0%2B1.20.1-fabric.jar' + +[update.modrinth] +mod-id = 'OEAJaSuI' +version = 'v2ijIuGa' \ No newline at end of file diff --git a/mods/.index/create-fabric.pw.toml b/mods/.index/create-fabric.pw.toml new file mode 100644 index 0000000..1263468 --- /dev/null +++ b/mods/.index/create-fabric.pw.toml @@ -0,0 +1,16 @@ +filename = 'create-fabric-6.0.8.1+build.1744-mc1.20.1.jar' +name = 'Create Fabric' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '6edaddb93bc87bf8204376d3ceddd3e3dfec1d716556a5925802f2ade59ce5a660ded50088fa94188842ff83fc29445363dfa5d423e425b1574092833b6fa896' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/Xbc0uyRg/versions/HAqwA6X1/create-fabric-6.0.8.1%2Bbuild.1744-mc1.20.1.jar' + +[update.modrinth] +mod-id = 'Xbc0uyRg' +version = 'HAqwA6X1' \ No newline at end of file diff --git a/mods/.index/create-mod-trims.pw.toml b/mods/.index/create-mod-trims.pw.toml new file mode 100644 index 0000000..ad428dd --- /dev/null +++ b/mods/.index/create-mod-trims.pw.toml @@ -0,0 +1,16 @@ +filename = 'create_armor_trims-1.20.1-2.0.1.jar' +name = 'Create: Armor Trims' +side = 'both' +x-prismlauncher-loaders = [ 'forge', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = 'aded234e3c435f88b3282592e04c0923d7509b464abe20ebd5a250daad603e7da9e3c26dd978b734f988e1326d5b0fd1e8302807d3d4e5dd7934deb1b90e841c' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/Q4F90RHI/versions/C9U99P99/create_armor_trims-1.20.1-2.0.1.jar' + +[update.modrinth] +mod-id = 'Q4F90RHI' +version = 'C9U99P99' \ No newline at end of file diff --git a/mods/.index/create-power-loader-fabric.pw.toml b/mods/.index/create-power-loader-fabric.pw.toml new file mode 100644 index 0000000..c04c4e6 --- /dev/null +++ b/mods/.index/create-power-loader-fabric.pw.toml @@ -0,0 +1,16 @@ +filename = 'create_power_loader-1.5.3-mc1.20.1-fabric.jar' +name = 'Create: Power Loader (Fabric)' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'beta' + +[download] +hash = 'b2b04775d9afaa2091a82eaa9e81f7f6cfd57cc99adee0e869c7ea0044524c943f771860b74588eacf5a8ee1e0924ebbd04b97f716442caf07d8bcf2b6081989' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/E9MuZ1zB/versions/fHsTW7eS/create_power_loader-1.5.3-mc1.20.1-fabric.jar' + +[update.modrinth] +mod-id = 'E9MuZ1zB' +version = 'fHsTW7eS' \ No newline at end of file diff --git a/mods/.index/create-railways-navigator.pw.toml b/mods/.index/create-railways-navigator.pw.toml new file mode 100644 index 0000000..ffe80db --- /dev/null +++ b/mods/.index/create-railways-navigator.pw.toml @@ -0,0 +1,16 @@ +filename = 'createrailwaysnavigator-fabric-1.20.1-beta-0.8.5-C6.jar' +name = 'Create Railways Navigator' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'beta' + +[download] +hash = 'faa3dfb89b780ba169373aa6c2db1f5269db0ee70f103c991e7af0a743ea0736552fdff84c975d7e54c6cd7fbc93b05a5a35a62557716d6d9ae0d4c974fc596e' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/Dq3STxps/versions/JYYwMQBw/createrailwaysnavigator-fabric-1.20.1-beta-0.8.5-C6.jar' + +[update.modrinth] +mod-id = 'Dq3STxps' +version = 'JYYwMQBw' \ No newline at end of file diff --git a/mods/.index/create-steam-n-rails.pw.toml b/mods/.index/create-steam-n-rails.pw.toml new file mode 100644 index 0000000..15a152b --- /dev/null +++ b/mods/.index/create-steam-n-rails.pw.toml @@ -0,0 +1,16 @@ +filename = 'Steam_Rails-1.6.14-beta+fabric-mc1.20.1.jar' +name = "Create: Steam 'n' Rails" +side = 'both' +x-prismlauncher-loaders = [ 'quilt', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'beta' + +[download] +hash = '1cd1d40eb3b3d50599aa115ed9c44e65d8ca283869830ef7f220c759e9d4f9393aa0284de99a98013e220af1edcc87b831745c2a83bc119cff570ba654ea5c49' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/ZzjhlDgM/versions/yMgmXIuq/Steam_Rails-1.6.14-beta%2Bfabric-mc1.20.1.jar' + +[update.modrinth] +mod-id = 'ZzjhlDgM' +version = 'yMgmXIuq' \ No newline at end of file diff --git a/mods/.index/crossstitch.pw.toml b/mods/.index/crossstitch.pw.toml new file mode 100644 index 0000000..ef83d35 --- /dev/null +++ b/mods/.index/crossstitch.pw.toml @@ -0,0 +1,34 @@ +filename = 'crossstitch-0.1.6.jar' +name = 'CrossStitch' +side = 'server' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ + '1.19.3', + '1.19.4', + '1.20', + '1.20.1', + '1.20.2', + '1.20.3', + '1.20.4', + '1.20.5', + '1.20.6', + '1.21', + '1.21.1', + '1.21.2', + '1.21.3', + '1.21.4', + '1.21.5', + '1.21.6', + '1.21.7' +] +x-prismlauncher-release-type = 'release' + +[download] +hash = '434396c8a939eefe1b502d796dcc7fb6758c0664159da9f423bcf9103ee30e6ce4e4e1ef54924d65644d4c3f3873331786b87aa7d5fa8b206acdbb3551e7ecaf' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/YkOyn1Pn/versions/dJioNlO8/crossstitch-0.1.6.jar' + +[update.modrinth] +mod-id = 'YkOyn1Pn' +version = 'dJioNlO8' \ No newline at end of file diff --git a/mods/.index/cynosure.pw.toml b/mods/.index/cynosure.pw.toml new file mode 100644 index 0000000..3819999 --- /dev/null +++ b/mods/.index/cynosure.pw.toml @@ -0,0 +1,16 @@ +filename = 'cynosure-0.1.13-fabric.jar' +name = 'Cynosure' +side = 'both' +x-prismlauncher-loaders = [ 'quilt', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'beta' + +[download] +hash = '18a67a5a729723974b81a82841111c1c9384f96e31b9a90ecd830a6bbdb3b509fcca1f98621e737e68f6b64aaac480be43955e7e9d96f545c637a9cf4ec28208' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/4JVfdODB/versions/73PdF2tT/cynosure-0.1.13-fabric.jar' + +[update.modrinth] +mod-id = '4JVfdODB' +version = '73PdF2tT' \ No newline at end of file diff --git a/mods/.index/decorative-blocks.pw.toml b/mods/.index/decorative-blocks.pw.toml new file mode 100644 index 0000000..72eb4eb --- /dev/null +++ b/mods/.index/decorative-blocks.pw.toml @@ -0,0 +1,16 @@ +filename = 'decorative_blocks-fabric-1.20.1-4.1.3.jar' +name = 'Decorative Blocks' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = 'd679847cc78b196a688b0e36cc18352bde9c75f87e8d5421dd0e5311c2aab7418427612f6d54f807725c91c0c5c97fcc3496c5105f56e5e73ef9c136b463dd34' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/t6BIRVZn/versions/FibgWXh0/decorative_blocks-fabric-1.20.1-4.1.3.jar' + +[update.modrinth] +mod-id = 't6BIRVZn' +version = 'FibgWXh0' \ No newline at end of file diff --git a/mods/.index/distanthorizons.pw.toml b/mods/.index/distanthorizons.pw.toml new file mode 100644 index 0000000..ed6f2a1 --- /dev/null +++ b/mods/.index/distanthorizons.pw.toml @@ -0,0 +1,16 @@ +filename = 'DistantHorizons-2.4.5-b-1.20.1-fabric-forge.jar' +name = 'Distant Horizons' +side = 'both' +x-prismlauncher-loaders = [ 'forge', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'beta' + +[download] +hash = '679cb6f9b55d7eea43c17f0204042140590de712b0cecdc14016e8064a9846695e2f438922377f658e26534c49cb61e6da939a6be53c2cb1cd1bc088b69db3ee' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/uCdwusMi/versions/lC6CwqPp/DistantHorizons-2.4.5-b-1.20.1-fabric-forge.jar' + +[update.modrinth] +mod-id = 'uCdwusMi' +version = 'lC6CwqPp' \ No newline at end of file diff --git a/mods/.index/enhanced-groups.pw.toml b/mods/.index/enhanced-groups.pw.toml new file mode 100644 index 0000000..c52b501 --- /dev/null +++ b/mods/.index/enhanced-groups.pw.toml @@ -0,0 +1,16 @@ +filename = 'instantgroup-fabric-1.20.1-1.7.0.jar' +name = 'Simple Voice Chat Enhanced Groups' +side = 'server' +x-prismlauncher-loaders = [ 'quilt', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'alpha' + +[download] +hash = 'c18d04dca79c1b56a3b55e223be913a00dfd21f2c4a0a34779dcbd524b6aa517f9bc60ccd25a31402f38ee2343e5e8ff559c82bfb6be71e3a678a607a4124cf4' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/1LE7mid6/versions/IqLUhXjv/instantgroup-fabric-1.20.1-1.7.0.jar' + +[update.modrinth] +mod-id = '1LE7mid6' +version = 'IqLUhXjv' \ No newline at end of file diff --git a/mods/.index/estrogen.pw.toml b/mods/.index/estrogen.pw.toml new file mode 100644 index 0000000..dfe4b99 --- /dev/null +++ b/mods/.index/estrogen.pw.toml @@ -0,0 +1,16 @@ +filename = 'estrogen-5.0.5+1.20.1-fabric.jar' +name = 'Estrogen' +side = 'both' +x-prismlauncher-loaders = [ 'quilt', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'alpha' + +[download] +hash = '1a77ec0baf9c14623e3f9acf2eef13f11998a0bc0d7ab20d0715b50b5c556267b323ee889d75f82275b41e1633d806dec0c0ae9b9001f9f5f269d7e91a767375' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/HhIJW8n1/versions/2J7DuoD3/estrogen-5.0.5%2B1.20.1-fabric.jar' + +[update.modrinth] +mod-id = 'HhIJW8n1' +version = '2J7DuoD3' \ No newline at end of file diff --git a/mods/.index/fabric-api.pw.toml b/mods/.index/fabric-api.pw.toml new file mode 100644 index 0000000..f461b44 --- /dev/null +++ b/mods/.index/fabric-api.pw.toml @@ -0,0 +1,16 @@ +filename = 'fabric-api-0.92.6+1.20.1.jar' +name = 'Fabric API' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '2bd2ed0cee22305b7ff49597c103a57c8fbe5f64be54a906796d48b589862626c951ff4cbf5cb1ed764a4d6479d69c3077594e693b7a291240eeea2bb3132b0c' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/P7dR8mSH/versions/UapVHwiP/fabric-api-0.92.6%2B1.20.1.jar' + +[update.modrinth] +mod-id = 'P7dR8mSH' +version = 'UapVHwiP' \ No newline at end of file diff --git a/mods/.index/fabric-language-kotlin.pw.toml b/mods/.index/fabric-language-kotlin.pw.toml new file mode 100644 index 0000000..38741fa --- /dev/null +++ b/mods/.index/fabric-language-kotlin.pw.toml @@ -0,0 +1,60 @@ +filename = 'fabric-language-kotlin-1.13.7+kotlin.2.2.21.jar' +name = 'Fabric Language Kotlin' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ + '1.14', + '1.14.1', + '1.14.2', + '1.14.3', + '1.14.4', + '1.15', + '1.15.1', + '1.15.2', + '1.16', + '1.16.1', + '1.16.2', + '1.16.3', + '1.16.4', + '1.16.5', + '1.17', + '1.17.1', + '1.18', + '1.18.1', + '1.18.2', + '1.19', + '1.19.1', + '1.19.2', + '1.19.3', + '1.19.4', + '1.20', + '1.20.1', + '1.20.2', + '1.20.3', + '1.20.4', + '1.20.5', + '1.20.6', + '1.21', + '1.21.1', + '1.21.10', + '1.21.11', + '1.21.2', + '1.21.3', + '1.21.4', + '1.21.5', + '1.21.6', + '1.21.7', + '1.21.8', + '1.21.9' +] +x-prismlauncher-release-type = 'release' + +[download] +hash = '0453a8a4eb8d791b5f0097a6628fae6f13b6dfba1e2bd1f91218769123808c4396a88bcdfc785f1d6bca348f267b32afc2aa9e0d5ec93a7b35bcfe295268c7bc' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/Ha28R6CL/versions/LcgnDDmT/fabric-language-kotlin-1.13.7%2Bkotlin.2.2.21.jar' + +[update.modrinth] +mod-id = 'Ha28R6CL' +version = 'LcgnDDmT' \ No newline at end of file diff --git a/mods/.index/fabricproxy-lite.pw.toml b/mods/.index/fabricproxy-lite.pw.toml new file mode 100644 index 0000000..3219738 --- /dev/null +++ b/mods/.index/fabricproxy-lite.pw.toml @@ -0,0 +1,16 @@ +filename = 'FabricProxy-Lite-2.6.0.jar' +name = 'FabricProxy-Lite' +side = 'server' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '365d29ebaeca55ffdaa4d066141559b00e3177437b0d9fabee3996fcdbd8e2fb8ae45c0c600cb357a042efe750caa2b6efaaffa439f5710cbb04deeae994b7dd' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/8dI2tmqs/versions/XJmDAnj5/FabricProxy-Lite-2.6.0.jar' + +[update.modrinth] +mod-id = '8dI2tmqs' +version = 'XJmDAnj5' \ No newline at end of file diff --git a/mods/.index/ferrite-core.pw.toml b/mods/.index/ferrite-core.pw.toml new file mode 100644 index 0000000..533b02f --- /dev/null +++ b/mods/.index/ferrite-core.pw.toml @@ -0,0 +1,16 @@ +filename = 'ferritecore-6.0.1-fabric.jar' +name = 'FerriteCore' +side = 'both' +x-prismlauncher-loaders = [ 'quilt', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20', '1.20.1', '1.20.2' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '9b7dc686bfa7937815d88c7bbc6908857cd6646b05e7a96ddbdcada328a385bd4ba056532cd1d7df9d2d7f4265fd48bd49ff683f217f6d4e817177b87f6bc457' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/uXXizFIs/versions/unerR5MN/ferritecore-6.0.1-fabric.jar' + +[update.modrinth] +mod-id = 'uXXizFIs' +version = 'unerR5MN' \ No newline at end of file diff --git a/mods/.index/flashfreeze.pw.toml b/mods/.index/flashfreeze.pw.toml new file mode 100644 index 0000000..ffa2b8b --- /dev/null +++ b/mods/.index/flashfreeze.pw.toml @@ -0,0 +1,16 @@ +filename = 'flashfreeze-0.3.4+1.20.1.jar' +name = 'FlashFreeze' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'beta' + +[download] +hash = 'e4aac942cc12ce09d835f825473d7750aba9b7d01ba14d0223ba977ad50affd5aad40a2fcdcc5d943cdab44d5fddcd3f9e3854300debf98825a29618785e3d46' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/OX7oyAQX/versions/oEnu0qVQ/flashfreeze-0.3.4%2B1.20.1.jar' + +[update.modrinth] +mod-id = 'OX7oyAQX' +version = 'oEnu0qVQ' \ No newline at end of file diff --git a/mods/.index/geckolib.pw.toml b/mods/.index/geckolib.pw.toml new file mode 100644 index 0000000..70c105f --- /dev/null +++ b/mods/.index/geckolib.pw.toml @@ -0,0 +1,16 @@ +filename = 'geckolib-fabric-1.20.1-4.8.2.jar' +name = 'Geckolib' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = 'cf0f40b02ce712610984c486ed6c7fa0c46f5926da0f8a4d329622dfaadf96a90bd1c2f9afdfc08082a66fb6e9dbf4d6853a9405f16c856bf0b55c62efcbb0a6' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/8BmcQJ2H/versions/AXhbVyuq/geckolib-fabric-1.20.1-4.8.2.jar' + +[update.modrinth] +mod-id = '8BmcQJ2H' +version = 'AXhbVyuq' \ No newline at end of file diff --git a/mods/.index/krypton.pw.toml b/mods/.index/krypton.pw.toml new file mode 100644 index 0000000..f6a2d17 --- /dev/null +++ b/mods/.index/krypton.pw.toml @@ -0,0 +1,16 @@ +filename = 'krypton-0.2.3.jar' +name = 'Krypton' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '92b73a70737cfc1daebca211bd1525de7684b554be392714ee29cbd558f2a27a8bdda22accbe9176d6e531d74f9bf77798c28c3e8559c970f607422b6038bc9e' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/fQEb0iXm/versions/jiDwS0W1/krypton-0.2.3.jar' + +[update.modrinth] +mod-id = 'fQEb0iXm' +version = 'jiDwS0W1' \ No newline at end of file diff --git a/mods/.index/lithium.pw.toml b/mods/.index/lithium.pw.toml new file mode 100644 index 0000000..1ba098f --- /dev/null +++ b/mods/.index/lithium.pw.toml @@ -0,0 +1,16 @@ +filename = 'lithium-fabric-mc1.20.1-0.11.4.jar' +name = 'Lithium' +side = 'both' +x-prismlauncher-loaders = [ 'quilt', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '31938b7e849609892ffa1710e41f2e163d11876f824452540658c4b53cd13c666dbdad8d200989461932bd9952814c5943e64252530c72bdd5d8641775151500' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/gvQqBUqZ/versions/iEcXOkz4/lithium-fabric-mc1.20.1-0.11.4.jar' + +[update.modrinth] +mod-id = 'gvQqBUqZ' +version = 'iEcXOkz4' \ No newline at end of file diff --git a/mods/.index/lithostitched.pw.toml b/mods/.index/lithostitched.pw.toml new file mode 100644 index 0000000..50f6dc1 --- /dev/null +++ b/mods/.index/lithostitched.pw.toml @@ -0,0 +1,16 @@ +filename = 'lithostitched-fabric-1.20.1-1.4.11.jar' +name = 'Lithostitched' +side = 'server' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = 'd8e840907e3f7326c1e6605b65c46eb4e920e4790ab4074884ad21913f0c097dcacf4b813091239eb58bd65b7c75b96d04bb4df6eec830f89a21e217e3c0fdec' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/XaDC71GB/versions/9bbVphAR/lithostitched-fabric-1.20.1-1.4.11.jar' + +[update.modrinth] +mod-id = 'XaDC71GB' +version = '9bbVphAR' \ No newline at end of file diff --git a/mods/.index/modernfix.pw.toml b/mods/.index/modernfix.pw.toml new file mode 100644 index 0000000..2543880 --- /dev/null +++ b/mods/.index/modernfix.pw.toml @@ -0,0 +1,16 @@ +filename = 'modernfix-fabric-5.25.2+mc1.20.1.jar' +name = 'ModernFix' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '878e39d182767ffd08ad6a3539fae780739129db133abe02b9b73dc3df6e1ac9ddbe509620356b0aae5e7bfbed535d0e18741703334317a16fefef820269da2d' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/nmDcB62a/versions/rPmgLeZC/modernfix-fabric-5.25.2%2Bmc1.20.1.jar' + +[update.modrinth] +mod-id = 'nmDcB62a' +version = 'rPmgLeZC' \ No newline at end of file diff --git a/mods/.index/naturalist.pw.toml b/mods/.index/naturalist.pw.toml new file mode 100644 index 0000000..b3a6424 --- /dev/null +++ b/mods/.index/naturalist.pw.toml @@ -0,0 +1,16 @@ +filename = 'naturalist-fabric-4.0.3-1.20.1.jar' +name = 'Naturalist' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '2598c35680c48d8a5a30c05883cf1c0b3cbada36594ba93f35f3e99555634e64d3b4eea5d1c8beb84ef7019d3d61a32350cdc68368ab0a2b731ab381978492b0' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/F8BQNPWX/versions/dMGBsRgz/naturalist-fabric-4.0.3-1.20.1.jar' + +[update.modrinth] +mod-id = 'F8BQNPWX' +version = 'dMGBsRgz' \ No newline at end of file diff --git a/mods/.index/no-chat-reports.pw.toml b/mods/.index/no-chat-reports.pw.toml new file mode 100644 index 0000000..71dc0f6 --- /dev/null +++ b/mods/.index/no-chat-reports.pw.toml @@ -0,0 +1,16 @@ +filename = 'NoChatReports-FABRIC-1.20.1-v2.2.2.jar' +name = 'No Chat Reports' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '3213e37fc12205e49f69a6c295c8c3237d8464d63dedbfbac4901892752741d22ebf7e1b40d6683143e70ca158fc95b00c2af177a1263038edce9a46b6cbeb79' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/qQyHxfxd/versions/HeZZR2kF/NoChatReports-FABRIC-1.20.1-v2.2.2.jar' + +[update.modrinth] +mod-id = 'qQyHxfxd' +version = 'HeZZR2kF' \ No newline at end of file diff --git a/mods/.index/noisium.pw.toml b/mods/.index/noisium.pw.toml new file mode 100644 index 0000000..43a59d1 --- /dev/null +++ b/mods/.index/noisium.pw.toml @@ -0,0 +1,16 @@ +filename = 'noisium-fabric-2.3.0+mc1.20-1.20.1.jar' +name = 'Noisium' +side = 'server' +x-prismlauncher-loaders = [ 'quilt', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = 'f0abcdac514bd2b4eb6af3529eeb9980a6fef534d31244879acb291a9943151aeb34f372bf98ae01f6191870bf95e1c0bc36d522433353a1090b96e7ac03c417' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/KuNKN7d2/versions/erSJnRcq/noisium-fabric-2.3.0%2Bmc1.20-1.20.1.jar' + +[update.modrinth] +mod-id = 'KuNKN7d2' +version = 'erSJnRcq' \ No newline at end of file diff --git a/mods/.index/not-just-biomes.pw.toml b/mods/.index/not-just-biomes.pw.toml new file mode 100644 index 0000000..39cec48 --- /dev/null +++ b/mods/.index/not-just-biomes.pw.toml @@ -0,0 +1,16 @@ +filename = 'not-just-biomes-mc1.20-1.1.0.jar' +name = 'Not Just Biomes' +side = 'server' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '6b97829cdac6cb60b99af1d62354a067c2a24cebebf6669fc033c08481f3b94d9f8c1e7bd67869221a0c17fbe9c5ed7e2fad46dcf06ac9ed2babf532904810f1' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/EIT1cuHa/versions/Q3H9Zkll/not-just-biomes-mc1.20-1.1.0.jar' + +[update.modrinth] +mod-id = 'EIT1cuHa' +version = 'Q3H9Zkll' \ No newline at end of file diff --git a/mods/.index/nullscape.pw.toml b/mods/.index/nullscape.pw.toml new file mode 100644 index 0000000..ba40055 --- /dev/null +++ b/mods/.index/nullscape.pw.toml @@ -0,0 +1,16 @@ +filename = 'Nullscape_1.20.x_v1.2.8.jar' +name = 'Nullscape' +side = 'both' +x-prismlauncher-loaders = [ 'neoforge', 'forge', 'quilt', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20', '1.20.1', '1.20.2', '1.20.3', '1.20.4', '1.20.5', '1.20.6' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = 'fcd11f20ab1b374a219e915156c8439f2d6fcabb060406f4d0a11392f945228e1c6e375f8e9e3048ac01c3a351c88bde4327e1f958bfd5ef4ab81c178f9e35da' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/LPjGiSO4/versions/QsRKydVt/Nullscape_1.20.x_v1.2.8.jar' + +[update.modrinth] +mod-id = 'LPjGiSO4' +version = 'QsRKydVt' \ No newline at end of file diff --git a/mods/.index/observable.pw.toml b/mods/.index/observable.pw.toml new file mode 100644 index 0000000..04ae9d7 --- /dev/null +++ b/mods/.index/observable.pw.toml @@ -0,0 +1,16 @@ +filename = 'observable-4.4.2.jar' +name = 'Observable' +side = 'both' +x-prismlauncher-loaders = [ 'quilt', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'beta' + +[download] +hash = 'f7e69c9cc98acbb55b42f9add88fbbca7523eeff1a6c436f10e432df5ae90c49345a23efaca250bfddc55d05b2c7f7c0f578a1e04ebe6bf66088aaa209acfaab' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/VYRu7qmG/versions/MprPnUls/observable-4.4.2.jar' + +[update.modrinth] +mod-id = 'VYRu7qmG' +version = 'MprPnUls' \ No newline at end of file diff --git a/mods/.index/quickshulker.pw.toml b/mods/.index/quickshulker.pw.toml new file mode 100644 index 0000000..d196b76 --- /dev/null +++ b/mods/.index/quickshulker.pw.toml @@ -0,0 +1,16 @@ +filename = 'quickshulker-1.4.0-1.20.jar' +name = 'QuickShulker' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '6ea5b7e5628ffa5fb80317454672ff5eee8b4aa6264bf3397c1adc72b126e9486ec00fc81418109d5904ab54999df1511b0b7e10aaf3e056a9d3126936a6245a' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/RsZDxTI3/versions/Eq9r6JQQ/quickshulker-1.4.0-1.20.jar' + +[update.modrinth] +mod-id = 'RsZDxTI3' +version = 'Eq9r6JQQ' \ No newline at end of file diff --git a/mods/.index/resourceful-lib.pw.toml b/mods/.index/resourceful-lib.pw.toml new file mode 100644 index 0000000..d7e41e7 --- /dev/null +++ b/mods/.index/resourceful-lib.pw.toml @@ -0,0 +1,16 @@ +filename = 'resourcefullib-fabric-1.20.1-2.1.29.jar' +name = 'Resourceful Lib' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = 'd3fcf5440c9359ee84cdec6ab198a6b2e10e5b1939995d2b12837ffdaa1f82d3caa80b14107cf02380718c65f20672b1faca3a498d2b41d79c79de34b2f7189b' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/G1hIVOrD/versions/UOdaYbhh/resourcefullib-fabric-1.20.1-2.1.29.jar' + +[update.modrinth] +mod-id = 'G1hIVOrD' +version = 'UOdaYbhh' \ No newline at end of file diff --git a/mods/.index/servux.pw.toml b/mods/.index/servux.pw.toml new file mode 100644 index 0000000..df823b0 --- /dev/null +++ b/mods/.index/servux.pw.toml @@ -0,0 +1,16 @@ +filename = 'servux-fabric-1.20.0-0.1.0.jar' +name = 'Servux' +side = 'server' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '973ab83979d994fa70eb2ebb285bc5feff8a51d1972f3533007dbad2bfb0fded62dc0dac5627a2ff557d07fe230faf1b931974b224cf2bcef31f5215606bb21f' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/zQhsx8KF/versions/I7wfvH49/servux-fabric-1.20.0-0.1.0.jar' + +[update.modrinth] +mod-id = 'zQhsx8KF' +version = 'I7wfvH49' \ No newline at end of file diff --git a/mods/.index/shulker-charm.pw.toml b/mods/.index/shulker-charm.pw.toml new file mode 100644 index 0000000..fadfefa --- /dev/null +++ b/mods/.index/shulker-charm.pw.toml @@ -0,0 +1,16 @@ +filename = 'shulkercharm-1.2.2.jar' +name = 'Shulker Charm' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '86a259c564743bdd2e1a087016706ee38ecd6bd43f9ba108e94b808c5713ef01f61ae2378a19ed7905ca95ef672e27a9271e9bdce76f5d39157d23d684c343bb' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/J2SCGP0Y/versions/ITE4y7fS/shulkercharm-1.2.2.jar' + +[update.modrinth] +mod-id = 'J2SCGP0Y' +version = 'ITE4y7fS' \ No newline at end of file diff --git a/mods/.index/simple-voice-chat.pw.toml b/mods/.index/simple-voice-chat.pw.toml new file mode 100644 index 0000000..8fc48e0 --- /dev/null +++ b/mods/.index/simple-voice-chat.pw.toml @@ -0,0 +1,16 @@ +filename = 'voicechat-fabric-1.20.1-2.6.11.jar' +name = 'Simple Voice Chat' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = 'c4e89a59232c007f862d77151d590ae25d6c0d6a88cb330bf9aa6644b14ac28f07e2d8b85667741e1a99a3452848a59b8a03e5c378afe74375e34cdefe2941aa' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/9eGKb6K1/versions/z5kIPm1A/voicechat-fabric-1.20.1-2.6.11.jar' + +[update.modrinth] +mod-id = '9eGKb6K1' +version = 'z5kIPm1A' \ No newline at end of file diff --git a/mods/.index/surveyor.pw.toml b/mods/.index/surveyor.pw.toml new file mode 100644 index 0000000..d9878c4 --- /dev/null +++ b/mods/.index/surveyor.pw.toml @@ -0,0 +1,16 @@ +filename = 'surveyor-1.1.2+1.20.jar' +name = 'Surveyor Map Framework' +side = 'both' +x-prismlauncher-loaders = [ 'forge', 'quilt', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '2f58895e7f03a4f4f74dbb944c2245f361cc78cb9c38f5b45847ffd5a741310285f1ced50d8bb9f2bc5a72f5320d0f0af6d16b56bda079cf59693e7df0d15fa6' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/4KjqhPc9/versions/ykwbsgaV/surveyor-1.1.2%2B1.20.jar' + +[update.modrinth] +mod-id = '4KjqhPc9' +version = 'ykwbsgaV' \ No newline at end of file diff --git a/mods/.index/tectonic.pw.toml b/mods/.index/tectonic.pw.toml new file mode 100644 index 0000000..5086ad0 --- /dev/null +++ b/mods/.index/tectonic.pw.toml @@ -0,0 +1,16 @@ +filename = 'tectonic-3.0.17-fabric-1.20.1.jar' +name = 'Tectonic' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '9a11047ed0e981bb60c230d00ec5d88bf3968119df808e9c55678cab94f8fa5005cdd916799dfd641e0ad60a1b937b4554c71c19d7b3d0f61b94f5135cbf377a' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/lWDHr9jE/versions/mz3wlQKd/tectonic-3.0.17-fabric-1.20.1.jar' + +[update.modrinth] +mod-id = 'lWDHr9jE' +version = 'mz3wlQKd' \ No newline at end of file diff --git a/mods/.index/threadtweak.pw.toml b/mods/.index/threadtweak.pw.toml new file mode 100644 index 0000000..5bfc75e --- /dev/null +++ b/mods/.index/threadtweak.pw.toml @@ -0,0 +1,16 @@ +filename = 'threadtweak-fabric-1.20.2-0.1.1.jar' +name = 'ThreadTweak' +side = 'both' +x-prismlauncher-loaders = [ 'quilt', 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20', '1.20.1', '1.20.2' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = 'b5a9fc2775bc8c020cb88b898dcdf473bf77f03ef41be1661a117872b16582a7e30b4f4a94d4c97855484a173e5e41951d47fcc17aef2429828b35308453835c' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/vSEH1ERy/versions/gBP1GqtK/threadtweak-fabric-1.20.2-0.1.1.jar' + +[update.modrinth] +mod-id = 'vSEH1ERy' +version = 'gBP1GqtK' \ No newline at end of file diff --git a/mods/.index/trinkets.pw.toml b/mods/.index/trinkets.pw.toml new file mode 100644 index 0000000..350517c --- /dev/null +++ b/mods/.index/trinkets.pw.toml @@ -0,0 +1,16 @@ +filename = 'trinkets-3.7.2.jar' +name = 'Trinkets' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20', '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = 'bedf97c87c5e556416410267108ad358b32806448be24ef8ae1a79ac63b78b48b9c851c00c845b8aedfc7805601385420716b9e65326fdab21340e8ba3cc4274' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/5aaWibi9/versions/AHxQGtuC/trinkets-3.7.2.jar' + +[update.modrinth] +mod-id = '5aaWibi9' +version = 'AHxQGtuC' \ No newline at end of file diff --git a/mods/.index/vmp-fabric.pw.toml b/mods/.index/vmp-fabric.pw.toml new file mode 100644 index 0000000..7f3498f --- /dev/null +++ b/mods/.index/vmp-fabric.pw.toml @@ -0,0 +1,16 @@ +filename = 'vmp-fabric-mc1.20.1-0.2.0+beta.7.102-all.jar' +name = 'Very Many Players (Fabric)' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'alpha' + +[download] +hash = '38ba14d870ddbcef233c9baa399005aaccde95d7b77175aa3a795eb9fed1086492b4ac5c6bbc05909dd76dce1b19b5c26613585161c2f3d20f2494beb8b23fe4' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/wnEe9KBa/versions/sV8lIBhJ/vmp-fabric-mc1.20.1-0.2.0%2Bbeta.7.102-all.jar' + +[update.modrinth] +mod-id = 'wnEe9KBa' +version = 'sV8lIBhJ' \ No newline at end of file diff --git a/mods/.index/what-are-they-up-to.pw.toml b/mods/.index/what-are-they-up-to.pw.toml new file mode 100644 index 0000000..fe96fbe --- /dev/null +++ b/mods/.index/what-are-they-up-to.pw.toml @@ -0,0 +1,16 @@ +filename = 'watut-fabric-1.20.1-1.2.3.jar' +name = 'What Are They Up To (Watut)' +side = 'both' +x-prismlauncher-loaders = [ 'fabric' ] +x-prismlauncher-mc-versions = [ '1.20.1' ] +x-prismlauncher-release-type = 'release' + +[download] +hash = '78e36fafa354d8e793d592b377c6162886fa487cadf8ca7dc24c3140909cfe2af943a2c954a4a9dbc7c7828fe606ff5d44e98cf7a4d9e8846810c498e1cc49eb' +hash-format = 'sha512' +mode = 'url' +url = 'https://cdn.modrinth.com/data/AtB5mHky/versions/Ub8MHZaV/watut-fabric-1.20.1-1.2.3.jar' + +[update.modrinth] +mod-id = 'AtB5mHky' +version = 'Ub8MHZaV' \ No newline at end of file diff --git a/mods/DistantHorizons-2.4.5-b-1.20.1-fabric-forge.jar b/mods/DistantHorizons-2.4.5-b-1.20.1-fabric-forge.jar new file mode 100644 index 0000000..35d596f Binary files /dev/null and b/mods/DistantHorizons-2.4.5-b-1.20.1-fabric-forge.jar differ diff --git a/mods/FabricProxy-Lite-2.6.0.jar b/mods/FabricProxy-Lite-2.6.0.jar new file mode 100644 index 0000000..b7f108c Binary files /dev/null and b/mods/FabricProxy-Lite-2.6.0.jar differ diff --git a/mods/NoChatReports-FABRIC-1.20.1-v2.2.2.jar b/mods/NoChatReports-FABRIC-1.20.1-v2.2.2.jar new file mode 100644 index 0000000..5a3452a Binary files /dev/null and b/mods/NoChatReports-FABRIC-1.20.1-v2.2.2.jar differ diff --git a/mods/Nullscape_1.20.x_v1.2.8.jar b/mods/Nullscape_1.20.x_v1.2.8.jar new file mode 100644 index 0000000..99d24f1 Binary files /dev/null and b/mods/Nullscape_1.20.x_v1.2.8.jar differ diff --git a/mods/Steam_Rails-1.6.14-beta+fabric-mc1.20.1.jar b/mods/Steam_Rails-1.6.14-beta+fabric-mc1.20.1.jar new file mode 100644 index 0000000..e013aca Binary files /dev/null and b/mods/Steam_Rails-1.6.14-beta+fabric-mc1.20.1.jar differ diff --git a/mods/architectury-9.2.14-fabric.jar b/mods/architectury-9.2.14-fabric.jar new file mode 100644 index 0000000..8f3f3f9 Binary files /dev/null and b/mods/architectury-9.2.14-fabric.jar differ diff --git a/mods/audioplayer-fabric-1.20.1-1.13.2.jar b/mods/audioplayer-fabric-1.20.1-1.13.2.jar new file mode 100644 index 0000000..878cd10 Binary files /dev/null and b/mods/audioplayer-fabric-1.20.1-1.13.2.jar differ diff --git a/mods/botarium-fabric-1.20.1-2.3.4.jar b/mods/botarium-fabric-1.20.1-2.3.4.jar new file mode 100644 index 0000000..50ba3ee Binary files /dev/null and b/mods/botarium-fabric-1.20.1-2.3.4.jar differ diff --git a/mods/c2me-fabric-mc1.20.1-0.2.0+alpha.11.16.jar b/mods/c2me-fabric-mc1.20.1-0.2.0+alpha.11.16.jar new file mode 100644 index 0000000..ab0a669 Binary files /dev/null and b/mods/c2me-fabric-mc1.20.1-0.2.0+alpha.11.16.jar differ diff --git a/mods/cloth-config-11.1.136-fabric.jar b/mods/cloth-config-11.1.136-fabric.jar new file mode 100644 index 0000000..9356329 Binary files /dev/null and b/mods/cloth-config-11.1.136-fabric.jar differ diff --git a/mods/copycats-2.2.2+mc.1.20.1-fabric.jar.disabled b/mods/copycats-2.2.2+mc.1.20.1-fabric.jar.disabled new file mode 100644 index 0000000..93470aa Binary files /dev/null and b/mods/copycats-2.2.2+mc.1.20.1-fabric.jar.disabled differ diff --git a/mods/coroutil-fabric-1.20.1-1.3.7.jar b/mods/coroutil-fabric-1.20.1-1.3.7.jar new file mode 100644 index 0000000..3d3d325 Binary files /dev/null and b/mods/coroutil-fabric-1.20.1-1.3.7.jar differ diff --git a/mods/create-fabric-6.0.8.1+build.1744-mc1.20.1.jar b/mods/create-fabric-6.0.8.1+build.1744-mc1.20.1.jar new file mode 100644 index 0000000..7a0f4e4 Binary files /dev/null and b/mods/create-fabric-6.0.8.1+build.1744-mc1.20.1.jar differ diff --git a/mods/create_armor_trims-1.20.1-2.0.1.jar b/mods/create_armor_trims-1.20.1-2.0.1.jar new file mode 100644 index 0000000..2ab5dca Binary files /dev/null and b/mods/create_armor_trims-1.20.1-2.0.1.jar differ diff --git a/mods/create_power_loader-1.5.3-mc1.20.1-fabric.jar.disabled b/mods/create_power_loader-1.5.3-mc1.20.1-fabric.jar.disabled new file mode 100644 index 0000000..8079c54 Binary files /dev/null and b/mods/create_power_loader-1.5.3-mc1.20.1-fabric.jar.disabled differ diff --git a/mods/createdeco-2.0.2-1.20.1-fabric.jar.disabled b/mods/createdeco-2.0.2-1.20.1-fabric.jar.disabled new file mode 100644 index 0000000..5bc7a1b Binary files /dev/null and b/mods/createdeco-2.0.2-1.20.1-fabric.jar.disabled differ diff --git a/mods/createestrogen-1.0.0+1.20.1-fabric.jar b/mods/createestrogen-1.0.0+1.20.1-fabric.jar new file mode 100644 index 0000000..7210600 Binary files /dev/null and b/mods/createestrogen-1.0.0+1.20.1-fabric.jar differ diff --git a/mods/createrailwaysnavigator-fabric-1.20.1-beta-0.8.5-C6.jar b/mods/createrailwaysnavigator-fabric-1.20.1-beta-0.8.5-C6.jar new file mode 100644 index 0000000..f6b01df Binary files /dev/null and b/mods/createrailwaysnavigator-fabric-1.20.1-beta-0.8.5-C6.jar differ diff --git a/mods/crossstitch-0.1.6.jar b/mods/crossstitch-0.1.6.jar new file mode 100644 index 0000000..47fcd11 Binary files /dev/null and b/mods/crossstitch-0.1.6.jar differ diff --git a/mods/cynosure-0.1.13-fabric.jar b/mods/cynosure-0.1.13-fabric.jar new file mode 100644 index 0000000..9209a8a Binary files /dev/null and b/mods/cynosure-0.1.13-fabric.jar differ diff --git a/mods/decorative_blocks-fabric-1.20.1-4.1.3.jar b/mods/decorative_blocks-fabric-1.20.1-4.1.3.jar new file mode 100644 index 0000000..d91a1f0 Binary files /dev/null and b/mods/decorative_blocks-fabric-1.20.1-4.1.3.jar differ diff --git a/mods/estrogen-5.0.5+1.20.1-fabric.jar b/mods/estrogen-5.0.5+1.20.1-fabric.jar new file mode 100644 index 0000000..f6774a7 Binary files /dev/null and b/mods/estrogen-5.0.5+1.20.1-fabric.jar differ diff --git a/mods/fabric-api-0.92.6+1.20.1.jar b/mods/fabric-api-0.92.6+1.20.1.jar new file mode 100644 index 0000000..1951e5f Binary files /dev/null and b/mods/fabric-api-0.92.6+1.20.1.jar differ diff --git a/mods/fabric-carpet-1.20-1.4.112+v230608.jar b/mods/fabric-carpet-1.20-1.4.112+v230608.jar new file mode 100644 index 0000000..0479541 Binary files /dev/null and b/mods/fabric-carpet-1.20-1.4.112+v230608.jar differ diff --git a/mods/fabric-language-kotlin-1.13.7+kotlin.2.2.21.jar b/mods/fabric-language-kotlin-1.13.7+kotlin.2.2.21.jar new file mode 100644 index 0000000..2e91f74 Binary files /dev/null and b/mods/fabric-language-kotlin-1.13.7+kotlin.2.2.21.jar differ diff --git a/mods/ferritecore-6.0.1-fabric.jar b/mods/ferritecore-6.0.1-fabric.jar new file mode 100644 index 0000000..18ef552 Binary files /dev/null and b/mods/ferritecore-6.0.1-fabric.jar differ diff --git a/mods/flashfreeze-0.3.4+1.20.1.jar b/mods/flashfreeze-0.3.4+1.20.1.jar new file mode 100644 index 0000000..487f736 Binary files /dev/null and b/mods/flashfreeze-0.3.4+1.20.1.jar differ diff --git a/mods/geckolib-fabric-1.20.1-4.8.2.jar b/mods/geckolib-fabric-1.20.1-4.8.2.jar new file mode 100644 index 0000000..916af97 Binary files /dev/null and b/mods/geckolib-fabric-1.20.1-4.8.2.jar differ diff --git a/mods/instantgroup-fabric-1.20.1-1.7.0.jar b/mods/instantgroup-fabric-1.20.1-1.7.0.jar new file mode 100644 index 0000000..9760e54 Binary files /dev/null and b/mods/instantgroup-fabric-1.20.1-1.7.0.jar differ diff --git a/mods/krypton-0.2.3.jar b/mods/krypton-0.2.3.jar new file mode 100644 index 0000000..0b764c4 Binary files /dev/null and b/mods/krypton-0.2.3.jar differ diff --git a/mods/lithium-fabric-mc1.20.1-0.11.4.jar b/mods/lithium-fabric-mc1.20.1-0.11.4.jar new file mode 100644 index 0000000..9ee972e Binary files /dev/null and b/mods/lithium-fabric-mc1.20.1-0.11.4.jar differ diff --git a/mods/lithostitched-fabric-1.20.1-1.4.11.jar b/mods/lithostitched-fabric-1.20.1-1.4.11.jar new file mode 100644 index 0000000..2c7e5a9 Binary files /dev/null and b/mods/lithostitched-fabric-1.20.1-1.4.11.jar differ diff --git a/mods/modernfix-fabric-5.25.2+mc1.20.1.jar b/mods/modernfix-fabric-5.25.2+mc1.20.1.jar new file mode 100644 index 0000000..ac3d1d1 Binary files /dev/null and b/mods/modernfix-fabric-5.25.2+mc1.20.1.jar differ diff --git a/mods/naturalist-fabric-4.0.3-1.20.1.jar b/mods/naturalist-fabric-4.0.3-1.20.1.jar new file mode 100644 index 0000000..8446878 Binary files /dev/null and b/mods/naturalist-fabric-4.0.3-1.20.1.jar differ diff --git a/mods/noisium-fabric-2.3.0+mc1.20-1.20.1.jar b/mods/noisium-fabric-2.3.0+mc1.20-1.20.1.jar new file mode 100644 index 0000000..fa08fd4 Binary files /dev/null and b/mods/noisium-fabric-2.3.0+mc1.20-1.20.1.jar differ diff --git a/mods/not-just-biomes-mc1.20-1.1.0.jar b/mods/not-just-biomes-mc1.20-1.1.0.jar new file mode 100644 index 0000000..6a080d9 Binary files /dev/null and b/mods/not-just-biomes-mc1.20-1.1.0.jar differ diff --git a/mods/observable-4.4.2.jar b/mods/observable-4.4.2.jar new file mode 100644 index 0000000..e0629ff Binary files /dev/null and b/mods/observable-4.4.2.jar differ diff --git a/mods/quickshulker-1.4.0-1.20.jar b/mods/quickshulker-1.4.0-1.20.jar new file mode 100644 index 0000000..5e27102 Binary files /dev/null and b/mods/quickshulker-1.4.0-1.20.jar differ diff --git a/mods/resourcefullib-fabric-1.20.1-2.1.29.jar b/mods/resourcefullib-fabric-1.20.1-2.1.29.jar new file mode 100644 index 0000000..8a39e95 Binary files /dev/null and b/mods/resourcefullib-fabric-1.20.1-2.1.29.jar differ diff --git a/mods/servux-fabric-1.20.0-0.1.0.jar b/mods/servux-fabric-1.20.0-0.1.0.jar new file mode 100644 index 0000000..0b2122f Binary files /dev/null and b/mods/servux-fabric-1.20.0-0.1.0.jar differ diff --git a/mods/shulkercharm-1.2.2.jar b/mods/shulkercharm-1.2.2.jar new file mode 100644 index 0000000..35ea750 Binary files /dev/null and b/mods/shulkercharm-1.2.2.jar differ diff --git a/mods/surveyor-1.1.2+1.20.jar b/mods/surveyor-1.1.2+1.20.jar new file mode 100644 index 0000000..c58cd34 Binary files /dev/null and b/mods/surveyor-1.1.2+1.20.jar differ diff --git a/mods/tectonic-3.0.17-fabric-1.20.1.jar b/mods/tectonic-3.0.17-fabric-1.20.1.jar new file mode 100644 index 0000000..f0d4724 Binary files /dev/null and b/mods/tectonic-3.0.17-fabric-1.20.1.jar differ diff --git a/mods/threadtweak-fabric-1.20.2-0.1.1.jar b/mods/threadtweak-fabric-1.20.2-0.1.1.jar new file mode 100644 index 0000000..0c758d5 Binary files /dev/null and b/mods/threadtweak-fabric-1.20.2-0.1.1.jar differ diff --git a/mods/trinkets-3.7.2.jar b/mods/trinkets-3.7.2.jar new file mode 100644 index 0000000..d7dfadd Binary files /dev/null and b/mods/trinkets-3.7.2.jar differ diff --git a/mods/vmp-fabric-mc1.20.1-0.2.0+beta.7.102-all.jar b/mods/vmp-fabric-mc1.20.1-0.2.0+beta.7.102-all.jar new file mode 100644 index 0000000..2618c44 Binary files /dev/null and b/mods/vmp-fabric-mc1.20.1-0.2.0+beta.7.102-all.jar differ diff --git a/mods/voicechat-fabric-1.20.1-2.6.11.jar b/mods/voicechat-fabric-1.20.1-2.6.11.jar new file mode 100644 index 0000000..325d9d8 Binary files /dev/null and b/mods/voicechat-fabric-1.20.1-2.6.11.jar differ diff --git a/mods/watut-fabric-1.20.1-1.2.3.jar b/mods/watut-fabric-1.20.1-1.2.3.jar new file mode 100644 index 0000000..1e9bcbe Binary files /dev/null and b/mods/watut-fabric-1.20.1-1.2.3.jar differ