config: add defaults from additive modpack
These are some good defaults to work off of. Defaults for mods specific to our pack are added as well.
This commit is contained in:
parent
4c33d1c815
commit
51affef033
BIN
config/yosbr/config/.puzzle_cache/mojangstudios.png
Normal file
BIN
config/yosbr/config/.puzzle_cache/mojangstudios.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.4 KiB |
9
config/yosbr/config/NoChatReports/NCR-Client.json
Normal file
9
config/yosbr/config/NoChatReports/NCR-Client.json
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"defaultSigningMode": "ON_DEMAND",
|
||||||
|
"showNCRButton": false,
|
||||||
|
"showReloadButton": false,
|
||||||
|
"verifiedIconEnabled": false,
|
||||||
|
"hideModifiedMessageIndicators": false,
|
||||||
|
"hideSigningRequestMessage": true,
|
||||||
|
"skipSigningWarning": true
|
||||||
|
}
|
||||||
3
config/yosbr/config/NoChatReports/NCR-Common.json
Normal file
3
config/yosbr/config/NoChatReports/NCR-Common.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"addQueryData": false
|
||||||
|
}
|
||||||
3
config/yosbr/config/NoChatReports/NCR-Encryption.json
Normal file
3
config/yosbr/config/NoChatReports/NCR-Encryption.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"showEncryptionButton": false
|
||||||
|
}
|
||||||
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"signingModes": {}
|
||||||
|
}
|
||||||
3
config/yosbr/config/NoChatReports/README.md
Normal file
3
config/yosbr/config/NoChatReports/README.md
Normal file
@ -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
|
||||||
76
config/yosbr/config/badoptimizations.txt
Normal file
76
config/yosbr/config/badoptimizations.txt
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
# BadOptimizations configuration
|
||||||
|
# Here you can configure stuff, mostly enabling/disabling specific optimizations.
|
||||||
|
|
||||||
|
# Whether we should cancel updating the lightmap if not needed.
|
||||||
|
enable_lightmap_caching: true
|
||||||
|
# How much the in-game time must change in ticks (1/20th of a second)
|
||||||
|
# for the lightmap to immediately update.
|
||||||
|
# Higher values will result in less frequent updates
|
||||||
|
# to block lighting, but better performance.
|
||||||
|
# Values below 2 will disable hte optimization.
|
||||||
|
lightmap_time_change_needed_for_update: 20
|
||||||
|
|
||||||
|
# Whether the sky's color should be cached unless you're on a biome border.
|
||||||
|
enable_sky_color_caching: true
|
||||||
|
# How much the in-game time must change in ticks for the sky color to
|
||||||
|
# be recalculated with our own calculation. Higher values will result in
|
||||||
|
# the sky updating less frequently, but slightly better performance.
|
||||||
|
# Values below 2 will all have the same effect.
|
||||||
|
skycolor_time_change_needed_for_update: 3
|
||||||
|
|
||||||
|
# Whether we should avoid calling debug renderers
|
||||||
|
# and their calculations if there are no debug entries to render
|
||||||
|
enable_debug_renderer_disable_if_not_needed: true
|
||||||
|
|
||||||
|
#
|
||||||
|
# Micro optimizations
|
||||||
|
#
|
||||||
|
|
||||||
|
# Whether we should avoid calling the particle manager
|
||||||
|
# and its calculations if there are no particles.
|
||||||
|
enable_particle_manager_optimization: true
|
||||||
|
# Whether we should avoid calling the toast manager
|
||||||
|
# if there are no toasts
|
||||||
|
enable_toast_optimizations: true
|
||||||
|
# Whether the result of getSkyAngle should be cached
|
||||||
|
# for the entire frame during rendering
|
||||||
|
enable_sky_angle_caching_in_worldrenderer: true
|
||||||
|
# Whether entity renderers should be stored directly in EntityType
|
||||||
|
# instead of a HashMap.
|
||||||
|
# Disable to fix compatibility with Twilight Forest
|
||||||
|
enable_entity_renderer_caching: true
|
||||||
|
# Whether block entity renderers should be stored in BlockEntityType
|
||||||
|
# instead of a HashMap.
|
||||||
|
enable_block_entity_renderer_caching: true
|
||||||
|
# Whether entity flags should be cached instead of calling DataTracker.
|
||||||
|
# Also removes the unnecessary thread lock in DataTracker
|
||||||
|
# however this is also done by Lithium (they don't conflict, however).
|
||||||
|
# This has no effect in 1.20.5+!
|
||||||
|
enable_entity_flag_caching: true
|
||||||
|
# Whether we should avoid calling FOV calculations
|
||||||
|
# if the FOV effect scale is zero.
|
||||||
|
enable_remove_redundant_fov_calculations: true
|
||||||
|
# Don't tick the tutorial if the game is not in demo mode.
|
||||||
|
enable_remove_tutorial_if_not_demo: true
|
||||||
|
|
||||||
|
#
|
||||||
|
# Other
|
||||||
|
#
|
||||||
|
|
||||||
|
# Whether BadOptimizations <version> should be added onto
|
||||||
|
# the left text of the F3 menu.
|
||||||
|
show_f3_text: true
|
||||||
|
|
||||||
|
# Some config options will be force-disabled if certain mods are present
|
||||||
|
# due to incompatibilities (e.g. entity rendering caching
|
||||||
|
# is disabled w/ Twilight Forest).
|
||||||
|
# However, if you still want to use the optimizations, you can override it
|
||||||
|
# by setting this to true. Beware of crashes. And Herobrine.
|
||||||
|
ignore_mod_incompatibilities: false
|
||||||
|
|
||||||
|
# Whether to log the entire config into console when booting up.
|
||||||
|
# If you plan on reporting an issue, please keep this on.
|
||||||
|
log_config: true
|
||||||
|
|
||||||
|
# Do not change this
|
||||||
|
config_version: 3
|
||||||
3
config/yosbr/config/bettergrass.json5
Normal file
3
config/yosbr/config/bettergrass.json5
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
betterGrassMode: "OFF"
|
||||||
|
}
|
||||||
5
config/yosbr/config/cape-provider.json5
Normal file
5
config/yosbr/config/cape-provider.json5
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
activeProviderIds: ["minecraftcapes", "optifine", "cosmetica"],
|
||||||
|
enableElytraTexture: true,
|
||||||
|
customProviders: []
|
||||||
|
}
|
||||||
9
config/yosbr/config/capes.json5
Normal file
9
config/yosbr/config/capes.json5
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"clientCapeType": "MINECRAFT",
|
||||||
|
"enableOptifine": true,
|
||||||
|
"enableLabyMod": false,
|
||||||
|
"enableMinecraftCapesMod": false,
|
||||||
|
"enableCosmetica": false,
|
||||||
|
"enableCloaksPlus": false,
|
||||||
|
"enableElytraTexture": true
|
||||||
|
}
|
||||||
1
config/yosbr/config/controlify.json
Normal file
1
config/yosbr/config/controlify.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{ "global": { "quiet_mode": true } }
|
||||||
19
config/yosbr/config/creeperfireworks-client.toml
Normal file
19
config/yosbr/config/creeperfireworks-client.toml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
[visuals]
|
||||||
|
#Chance of fireworks after creeper explosion.
|
||||||
|
#Range: 0 ~ 100
|
||||||
|
fireworksChance = 100
|
||||||
|
#Colors to use in fireworks. Requires hex formatted colors.
|
||||||
|
#Default: ["#3B511A", "#41CD34"]
|
||||||
|
colors = ["#3B511A", "#41CD34"]
|
||||||
|
#Fireworks flicker setting as it relates to Minecraft fireworks.
|
||||||
|
fireworksFlicker = true
|
||||||
|
#Fireworks trail setting as it relates to Minecraft fireworks.
|
||||||
|
fireworksTrail = true
|
||||||
|
#Fireworks shape setting as it relates to Minecraft fireworks.
|
||||||
|
#One of: [SMALL_BALL, LARGE_BALL, STAR, CREEPER, BURST]
|
||||||
|
#Allowed Values: SMALL_BALL, LARGE_BALL, STAR, CREEPER, BURST
|
||||||
|
fireworksShape = "CREEPER"
|
||||||
|
#Height above creeper that fireworks explode.
|
||||||
|
#Default 5
|
||||||
|
#Range: 0 ~ 32
|
||||||
|
fireworksHeight = 5
|
||||||
5
config/yosbr/config/creeperfireworks-common.toml
Normal file
5
config/yosbr/config/creeperfireworks-common.toml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[general]
|
||||||
|
#Set to true/on to disable block damage on Creeper explosion.
|
||||||
|
disableBlockDamage = true
|
||||||
|
#Set to true/on to disable dropped item damage on Creeper explosion.
|
||||||
|
disableItemDamage = true
|
||||||
14
config/yosbr/config/dynamic_fps.json
Normal file
14
config/yosbr/config/dynamic_fps.json
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"states": {
|
||||||
|
"unfocused": {
|
||||||
|
"frame_rate_target": 2,
|
||||||
|
"run_garbage_collector": true
|
||||||
|
},
|
||||||
|
"invisible": {
|
||||||
|
"volume_multipliers": {
|
||||||
|
"master": 0.25
|
||||||
|
},
|
||||||
|
"run_garbage_collector": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
4
config/yosbr/config/entityculling.json
Normal file
4
config/yosbr/config/entityculling.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"sleepDelay": 70,
|
||||||
|
"hitboxLimit": 65
|
||||||
|
}
|
||||||
1
config/yosbr/config/ferritecore.mixin.properties
Normal file
1
config/yosbr/config/ferritecore.mixin.properties
Normal file
@ -0,0 +1 @@
|
|||||||
|
useSmallThreadingDetector = true
|
||||||
3
config/yosbr/config/immediatelyfast.json
Normal file
3
config/yosbr/config/immediatelyfast.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"experimental_screen_batching": true
|
||||||
|
}
|
||||||
2
config/yosbr/config/iris.properties
Normal file
2
config/yosbr/config/iris.properties
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
disableUpdateMessage = true
|
||||||
|
enableShaders = false
|
||||||
7
config/yosbr/config/modmenu.json
Normal file
7
config/yosbr/config/modmenu.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"mods_button_style": "icon",
|
||||||
|
"game_menu_button_style": "icon",
|
||||||
|
"update_checker": false,
|
||||||
|
"count_libraries": false,
|
||||||
|
"count_children": false
|
||||||
|
}
|
||||||
147
config/yosbr/config/ok_zoomer/config.toml
Normal file
147
config/yosbr/config/ok_zoomer/config.toml
Normal file
@ -0,0 +1,147 @@
|
|||||||
|
# Allows for configuring the main zoom features.
|
||||||
|
[features]
|
||||||
|
# "OFF": Disables the zoom's cinematic camera.
|
||||||
|
# "VANILLA": Uses the game's cinematic camera while zooming.
|
||||||
|
# "MULTIPLIED": Uses the cinematic camera with a configurable multiplier while zooming.
|
||||||
|
# options: OFF, VANILLA, MULTIPLIED
|
||||||
|
# default: OFF
|
||||||
|
cinematic_camera = "VANILLA"
|
||||||
|
# Divides the mouse sensitivity with the zoom divisor while zooming.
|
||||||
|
# default: true
|
||||||
|
reduce_sensitivity = true
|
||||||
|
# "OFF": The zoom will abruptly transition between its on and off states.
|
||||||
|
# "SMOOTH": The zoom will smoothly transition between its on and off states in a manner resembling the game's FOV transitions.
|
||||||
|
# "LINEAR": The zoom will linearly transition between its on and off states.
|
||||||
|
# options: OFF, SMOOTH, LINEAR
|
||||||
|
# default: SMOOTH
|
||||||
|
zoom_transition = "SMOOTH"
|
||||||
|
# Divides the amount of view bobbing with the zoom divisor while zooming.
|
||||||
|
# default: true
|
||||||
|
reduce_view_bobbing = true
|
||||||
|
# "HOLD": The zoom will require the zoom key to be held.
|
||||||
|
# "TOGGLE": The zoom will be toggled by the zoom key.
|
||||||
|
# "PERSISTENT": The zoom will always be enabled, with the zoom key being used for zoom scrolling.
|
||||||
|
# options: HOLD, TOGGLE, PERSISTENT
|
||||||
|
# default: HOLD
|
||||||
|
zoom_mode = "HOLD"
|
||||||
|
# Allows to increase or decrease the zoom by scrolling with the mouse wheel.
|
||||||
|
# default: true
|
||||||
|
zoom_scrolling = true
|
||||||
|
# "EXPONENTIAL": The zoom will scroll in an exponential way, making zoom steps consistent. This may be harder to configure currently.
|
||||||
|
# "LEGACY": The zoom will scroll in an arbitrary way. This may be easier to configure currently, but scrolling may feel harder on higher zoom levels.
|
||||||
|
# options: EXPONENTIAL, LEGACY
|
||||||
|
# default: EXPONENTIAL
|
||||||
|
scrolling_mode = "EXPONENTIAL"
|
||||||
|
# Retains the interface when zooming.
|
||||||
|
# default: false
|
||||||
|
persistent_interface = false
|
||||||
|
# Adds zoom manipulation keys along with the zoom key. A game reboot will be required in order to apply the changes.
|
||||||
|
# default: true
|
||||||
|
extra_key_binds = true
|
||||||
|
# "OFF": Disables the zoom overlay.
|
||||||
|
# "VIGNETTE": Uses a vignette as the zoom overlay. The vignette texture can be found at assets/ok_zoomer/textures/misc/zoom_overlay.png
|
||||||
|
# "SPYGLASS": Uses the spyglass overlay as the zoom overlay.
|
||||||
|
# options: OFF, VIGNETTE, SPYGLASS
|
||||||
|
# default: OFF
|
||||||
|
zoom_overlay = "OFF"
|
||||||
|
# "OFF": Zooming won't require a spyglass and won't replace its zoom.
|
||||||
|
# "REQUIRE_ITEM": Zooming will require a spyglass in order to work. This option is configurable through the ok_zoomer:zoom_dependencies item tag.
|
||||||
|
# "REPLACE_ZOOM": Zooming will replace the spyglass zoom but it won't require one in order to work.
|
||||||
|
# "BOTH": Zooming will act as a complete replacement of the spyglass zoom, requiring one to work and replacing its zoom as well.
|
||||||
|
# options: OFF, REQUIRE_ITEM, REPLACE_ZOOM, BOTH
|
||||||
|
# default: OFF
|
||||||
|
spyglass_mode = "OFF"
|
||||||
|
|
||||||
|
# Allows for precise tweaking of the zoom.
|
||||||
|
[zoom_values]
|
||||||
|
# Determines the number to be used on the exponential curve. If unsure, keep this value at 2.
|
||||||
|
# range: 2 - 2147483647
|
||||||
|
# default: 2
|
||||||
|
scroll_base = 2
|
||||||
|
# Determines the resolution of zoom scrolling. This will effectively multiply the amount of scroll steps.
|
||||||
|
# range: 1 - 2147483647
|
||||||
|
# default: 5
|
||||||
|
scroll_resolution = 5
|
||||||
|
# The default scroll step to use on zooming in.
|
||||||
|
# range: 0 - 2147483647
|
||||||
|
# default: 10
|
||||||
|
default_scroll_step = 10
|
||||||
|
# The maximum amount of scroll steps that the zoom may reach.
|
||||||
|
# range: 0 - 2147483647
|
||||||
|
# default: 30
|
||||||
|
scroll_step_limit = 30
|
||||||
|
# The multiplier used by the multiplied cinematic camera.
|
||||||
|
# range: 2.2250738585072014E-308 - 32.0
|
||||||
|
# default: 4.0
|
||||||
|
cinematic_multiplier = 4.0
|
||||||
|
|
||||||
|
# Allows to configure the "Legacy" scrolling mode.
|
||||||
|
[legacy_scroll_values]
|
||||||
|
# The divisor used to apply zoom to the FOV. A higher value means more zoom.
|
||||||
|
# range: 2.2250738585072014E-308 - 1.7976931348623157E308
|
||||||
|
# default: 4.0
|
||||||
|
zoom_divisor = 4.0
|
||||||
|
# The minimum zoom divisor that you can scroll down.
|
||||||
|
# range: 2.2250738585072014E-308 - 1.7976931348623157E308
|
||||||
|
# default: 1.0
|
||||||
|
minimum_zoom_divisor = 1.0
|
||||||
|
# The maximum zoom divisor that you can scroll up.
|
||||||
|
# range: 2.2250738585072014E-308 - 1.7976931348623157E308
|
||||||
|
# default: 50.0
|
||||||
|
maximum_zoom_divisor = 50.0
|
||||||
|
# The number of steps between the zoom divisor and the minimum zoom divisor. Used by zoom scrolling.
|
||||||
|
# range: 0 - 2147483647
|
||||||
|
# default: 5
|
||||||
|
lower_scroll_steps = 5
|
||||||
|
# The number of steps between the zoom divisor and the maximum zoom divisor. Used by zoom scrolling.
|
||||||
|
# range: 0 - 2147483647
|
||||||
|
# default: 10
|
||||||
|
upper_scroll_steps = 10
|
||||||
|
|
||||||
|
# Allows for precise tweaking of zoom transitions.
|
||||||
|
[transition_values]
|
||||||
|
# The factor used for smooth zoom transitions. A lower value means a smoother transition, a higher value means a faster one.
|
||||||
|
# range: 2.2250738585072014E-308 - 1.0
|
||||||
|
# default: 0.6
|
||||||
|
smooth_transition_factor = 0.6
|
||||||
|
# The value which the linear zoom transition step can reach.
|
||||||
|
# range: 0.0 - 1.7976931348623157E308
|
||||||
|
# default: 0.2
|
||||||
|
linear_step = 0.2
|
||||||
|
|
||||||
|
# Provides a selection of unusual options.
|
||||||
|
[tweaks]
|
||||||
|
# If pressed, the "Save Toolbar Activator" keybind will be unbound if there's a conflict with the zoom key.
|
||||||
|
# default: true
|
||||||
|
unbind_conflicting_key = false
|
||||||
|
# Hides the crosshair while zooming.
|
||||||
|
# default: true
|
||||||
|
hide_crosshair = true
|
||||||
|
# Allows for resetting the zoom with the middle mouse button.
|
||||||
|
# default: true
|
||||||
|
reset_zoom_with_mouse = true
|
||||||
|
# Improves performance by making the game render less of the world while zoomed in. This feature depends on the Sodium mod in order to work.
|
||||||
|
# default: true
|
||||||
|
smart_occlusion = true
|
||||||
|
# Expands the entity distance while zooming in, allowing creatures and certain blocks to be seen from afar. This may have a performance impact during zoom.
|
||||||
|
# options: OFF, SAFE, ON
|
||||||
|
# default: SAFE
|
||||||
|
see_distant_entities = "SAFE"
|
||||||
|
# Adds the spyglass's sounds effects on zooming in and out
|
||||||
|
# default: false
|
||||||
|
spyglass_sounds = false
|
||||||
|
# Adds sound effects on zoom scrolling.
|
||||||
|
# default: false
|
||||||
|
scroll_sounds = false
|
||||||
|
# If enabled, the current zoom divisor is forgotten once zooming is finished.
|
||||||
|
# default: true
|
||||||
|
forget_zoom_divisor = true
|
||||||
|
# Adds a button to open Ok Zoomer settings next to the zoom key bind.
|
||||||
|
# default: true
|
||||||
|
show_settings_on_key = true
|
||||||
|
# Displays debug information for exponential zoom scrolling. Currently it may help with configuring the zoom scrolling.
|
||||||
|
# default: false
|
||||||
|
debug_scrolling = false
|
||||||
|
# Prints a random owo in the console when the game starts.
|
||||||
|
# default: true
|
||||||
|
print_owo_on_start = true
|
||||||
20
config/yosbr/config/puzzle.json
Normal file
20
config/yosbr/config/puzzle.json
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"disabledIntegrations": [
|
||||||
|
"borderlessmining",
|
||||||
|
"cem",
|
||||||
|
"citresewn",
|
||||||
|
"continuity",
|
||||||
|
"colormatic",
|
||||||
|
"cullleaves",
|
||||||
|
"dynamicfps",
|
||||||
|
"entity_texture_features",
|
||||||
|
"entity_model_features",
|
||||||
|
"iris",
|
||||||
|
"lambdabettergrass",
|
||||||
|
"lambdynlights"
|
||||||
|
],
|
||||||
|
"enablePuzzleButton": false,
|
||||||
|
"debugMessages": false,
|
||||||
|
"checkUpdates": false,
|
||||||
|
"showPuzzleInfo": false
|
||||||
|
}
|
||||||
3
config/yosbr/config/servercore/config.yml
Normal file
3
config/yosbr/config/servercore/config.yml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
features:
|
||||||
|
lobotomize-villagers:
|
||||||
|
enabled: true
|
||||||
1
config/yosbr/config/servercore/optimizations.yml
Normal file
1
config/yosbr/config/servercore/optimizations.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
optimize-command-blocks: true
|
||||||
5
config/yosbr/config/sodium-options.json
Normal file
5
config/yosbr/config/sodium-options.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"performance": {
|
||||||
|
"leaf_culling_quality": "SOLID"
|
||||||
|
}
|
||||||
|
}
|
||||||
5
config/yosbr/config/xaerominimap-common.txt
Normal file
5
config/yosbr/config/xaerominimap-common.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
allowCaveModeOnServer:true
|
||||||
|
allowNetherCaveModeOnServer:true
|
||||||
|
allowRadarOnServer:true
|
||||||
|
registerStatusEffects:true
|
||||||
|
everyoneTracksEveryone:false
|
||||||
133
config/yosbr/config/xaerominimap.txt
Normal file
133
config/yosbr/config/xaerominimap.txt
Normal file
@ -0,0 +1,133 @@
|
|||||||
|
#CONFIG ONLY OPTIONS
|
||||||
|
ignoreUpdate:0
|
||||||
|
settingsButton:false
|
||||||
|
allowWrongWorldTeleportation:false
|
||||||
|
differentiateByServerAddress:true
|
||||||
|
debugEntityIcons:false
|
||||||
|
debugEntityVariantIds:false
|
||||||
|
radarHideInvisibleEntities:true
|
||||||
|
allowInternetAccess:true
|
||||||
|
#INGAME SETTINGS (DO NOT EDIT!)
|
||||||
|
updateNotification:true
|
||||||
|
minimap:true
|
||||||
|
caveMaps:2
|
||||||
|
caveZoom:1
|
||||||
|
showWaypoints:true
|
||||||
|
showIngameWaypoints:true
|
||||||
|
displayRedstone:true
|
||||||
|
deathpoints:true
|
||||||
|
oldDeathpoints:true
|
||||||
|
distance:1
|
||||||
|
lockNorth:false
|
||||||
|
zoom:0
|
||||||
|
minimapSize:0
|
||||||
|
chunkGrid:-1
|
||||||
|
slimeChunks:false
|
||||||
|
mapSafeMode:false
|
||||||
|
minimapOpacity:100.0
|
||||||
|
waypointsIngameIconScale:0
|
||||||
|
waypointsIngameDistanceScale:0
|
||||||
|
waypointsIngameNameScale:0
|
||||||
|
waypointsIngameCloseScale:1.0
|
||||||
|
antiAliasing:true
|
||||||
|
blockColours:0
|
||||||
|
lighting:true
|
||||||
|
dotsStyle:0
|
||||||
|
dotNameScale:1.0
|
||||||
|
compassOverEverything:true
|
||||||
|
showFlowers:true
|
||||||
|
keepWaypointNames:true
|
||||||
|
waypointsDistanceExp:0
|
||||||
|
waypointsDistanceMin:0.0
|
||||||
|
defaultWaypointTPCommandFormat:/tp @s {x} {y} {z}
|
||||||
|
defaultWaypointTPCommandRotationFormat:/tp @s {x} {y} {z} {yaw} ~
|
||||||
|
arrowScale:1.5
|
||||||
|
arrowColour:0
|
||||||
|
smoothDots:true
|
||||||
|
worldMap:true
|
||||||
|
terrainDepth:true
|
||||||
|
terrainSlopes:2
|
||||||
|
mainEntityAs:0
|
||||||
|
blockTransparency:true
|
||||||
|
waypointOpacityIngame:80
|
||||||
|
waypointOpacityMap:90
|
||||||
|
hideWorldNames:1
|
||||||
|
openSlimeSettings:true
|
||||||
|
alwaysShowDistance:false
|
||||||
|
renderLayerIndex:1
|
||||||
|
crossDimensionalTp:true
|
||||||
|
biomeColorsVanillaMode:false
|
||||||
|
lookingAtAngle:10
|
||||||
|
lookingAtAngleVertical:180
|
||||||
|
centeredEnlarged:false
|
||||||
|
zoomOnEnlarged:0
|
||||||
|
minimapTextAlign:0
|
||||||
|
waypointsMutualEdit:true
|
||||||
|
compassLocation:1
|
||||||
|
compassDirectionScale:0
|
||||||
|
caveMapsDepth:30
|
||||||
|
hideWaypointCoordinates:false
|
||||||
|
renderAllSets:false
|
||||||
|
playerArrowOpacity:100
|
||||||
|
waypointsBottom:false
|
||||||
|
minimapShape:0
|
||||||
|
lightOverlayType:0
|
||||||
|
lightOverlayMaxLight:7
|
||||||
|
lightOverlayMinLight:0
|
||||||
|
lightOverlayColor:13
|
||||||
|
uiScale:0
|
||||||
|
bossHealthPushBox:1
|
||||||
|
potionEffectPushBox:1
|
||||||
|
minimapFrame:0
|
||||||
|
minimapFrameColor:9
|
||||||
|
compassColor:9
|
||||||
|
northCompassColor:-1
|
||||||
|
displayMultipleWaypointInfo:1
|
||||||
|
entityRadar:true
|
||||||
|
adjustHeightForCarpetLikeBlocks:true
|
||||||
|
autoConvertWaypointDistanceToKmThreshold:10000
|
||||||
|
waypointDistancePrecision:1
|
||||||
|
mainDotSize:2
|
||||||
|
partialYTeleportation:true
|
||||||
|
deleteReachedDeathpoints:true
|
||||||
|
hideMinimapUnderScreen:true
|
||||||
|
hideMinimapUnderF3:true
|
||||||
|
manualCaveModeStartAuto:true
|
||||||
|
manualCaveModeStart:-1
|
||||||
|
chunkGridLineWidth:1
|
||||||
|
temporaryWaypointsGlobal:true
|
||||||
|
keepUnlockedWhenEnlarged:false
|
||||||
|
enlargedMinimapAToggle:false
|
||||||
|
displayStainedGlass:true
|
||||||
|
waypointOnMapScale:0
|
||||||
|
switchToAutoOnDeath:true
|
||||||
|
infoDisplayBackgroundOpacity:40
|
||||||
|
caveModeToggleTimer:1000
|
||||||
|
legibleCaveMaps:false
|
||||||
|
biomeBlending:true
|
||||||
|
displayTrackedPlayersOnMap:true
|
||||||
|
displayTrackedPlayersInWorld:true
|
||||||
|
dimensionScaledMaxWaypointDistance:true
|
||||||
|
trackedPlayerWorldIconScale:0
|
||||||
|
trackedPlayerWorldNameScale:0
|
||||||
|
trackedPlayerMinimapIconScale:0
|
||||||
|
displayClaims:true
|
||||||
|
displayCurrentClaim:true
|
||||||
|
claimsFillOpacity:46
|
||||||
|
claimsBorderOpacity:80
|
||||||
|
infoDisplayOrder:coords:overworld_coords:chunk_coords:angles:dimension:biome:weather:light_level:time:real_time:highlights:light_overlay_indicator:manual_cave_mode_indicator:custom_sub_world
|
||||||
|
infoDisplay:coords:true:15:-1
|
||||||
|
infoDisplay:overworld_coords:false:15:-1
|
||||||
|
infoDisplay:chunk_coords:false:15:-1
|
||||||
|
infoDisplay:angles:false:15:-1
|
||||||
|
infoDisplay:dimension:false:15:-1
|
||||||
|
infoDisplay:biome:false:15:-1
|
||||||
|
infoDisplay:weather:false:15:-1
|
||||||
|
infoDisplay:light_level:0:15:-1
|
||||||
|
infoDisplay:time:0:15:-1
|
||||||
|
infoDisplay:real_time:0:15:-1
|
||||||
|
infoDisplay:highlights:true:15:-1
|
||||||
|
infoDisplay:light_overlay_indicator:true:15:-1
|
||||||
|
infoDisplay:manual_cave_mode_indicator:true:15:-1
|
||||||
|
infoDisplay:custom_sub_world:true:15:-1
|
||||||
|
module;id=xaerominimap:minimap;active=true;x=0;y=0;centered=false;fromRight=false;fromBottom=false;flippedVer=false;flippedHor=false;
|
||||||
191
config/yosbr/config/xaerominimap_entities.json
Normal file
191
config/yosbr/config/xaerominimap_entities.json
Normal file
@ -0,0 +1,191 @@
|
|||||||
|
{
|
||||||
|
"hardInclude": "anything",
|
||||||
|
"includeList": [],
|
||||||
|
"includeListInSuperCategory": true,
|
||||||
|
"excludeMode": "ONLY",
|
||||||
|
"excludeList": [
|
||||||
|
"minecraft:glow_item_frame",
|
||||||
|
"minecraft:item_frame"
|
||||||
|
],
|
||||||
|
"name": "gui.xaero_entity_category_root",
|
||||||
|
"protection": true,
|
||||||
|
"settingOverrides": {
|
||||||
|
"displayHeight": 0.0,
|
||||||
|
"displayed": true,
|
||||||
|
"heightBasedFade": true,
|
||||||
|
"renderOrder": 0.0,
|
||||||
|
"color": 13.0,
|
||||||
|
"displayNameWhenIconFails": true,
|
||||||
|
"entityNumber": 1000.0,
|
||||||
|
"alwaysDisplayNametags": false,
|
||||||
|
"dotSize": 2.0,
|
||||||
|
"startFadingAt": 0.0,
|
||||||
|
"renderOverMinimapFrame": 1.0,
|
||||||
|
"icons": 1.0,
|
||||||
|
"names": 0.0,
|
||||||
|
"heightLimit": 20.0,
|
||||||
|
"iconScale": 1.0
|
||||||
|
},
|
||||||
|
"subCategories": [
|
||||||
|
{
|
||||||
|
"hardInclude": "living",
|
||||||
|
"includeList": [],
|
||||||
|
"includeListInSuperCategory": true,
|
||||||
|
"excludeMode": "ONLY",
|
||||||
|
"excludeList": [
|
||||||
|
"minecraft:armor_stand"
|
||||||
|
],
|
||||||
|
"name": "gui.xaero_entity_category_living",
|
||||||
|
"protection": true,
|
||||||
|
"settingOverrides": {
|
||||||
|
"renderOrder": 2.0,
|
||||||
|
"color": 14.0
|
||||||
|
},
|
||||||
|
"subCategories": [
|
||||||
|
{
|
||||||
|
"hardInclude": "players",
|
||||||
|
"includeList": [],
|
||||||
|
"includeListInSuperCategory": true,
|
||||||
|
"excludeMode": "ONLY",
|
||||||
|
"excludeList": [],
|
||||||
|
"name": "gui.xaero_entity_category_players",
|
||||||
|
"protection": true,
|
||||||
|
"settingOverrides": {
|
||||||
|
"renderOrder": 6.0,
|
||||||
|
"heightLimit": 2050.0,
|
||||||
|
"color": 15.0
|
||||||
|
},
|
||||||
|
"subCategories": [
|
||||||
|
{
|
||||||
|
"hardInclude": "nothing",
|
||||||
|
"includeList": [],
|
||||||
|
"includeListInSuperCategory": true,
|
||||||
|
"excludeMode": "ONLY",
|
||||||
|
"excludeList": [],
|
||||||
|
"name": "gui.xaero_entity_category_friend",
|
||||||
|
"protection": true,
|
||||||
|
"settingOverrides": {},
|
||||||
|
"subCategories": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"hardInclude": "tracked",
|
||||||
|
"includeList": [],
|
||||||
|
"includeListInSuperCategory": true,
|
||||||
|
"excludeMode": "ONLY",
|
||||||
|
"excludeList": [],
|
||||||
|
"name": "gui.xaero_entity_category_tracked",
|
||||||
|
"protection": true,
|
||||||
|
"settingOverrides": {
|
||||||
|
"icons": 2.0
|
||||||
|
},
|
||||||
|
"subCategories": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"hardInclude": "same-team",
|
||||||
|
"includeList": [],
|
||||||
|
"includeListInSuperCategory": true,
|
||||||
|
"excludeMode": "ONLY",
|
||||||
|
"excludeList": [],
|
||||||
|
"name": "gui.xaero_entity_category_same_team",
|
||||||
|
"protection": true,
|
||||||
|
"settingOverrides": {},
|
||||||
|
"subCategories": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"hardInclude": "anything",
|
||||||
|
"includeList": [],
|
||||||
|
"includeListInSuperCategory": true,
|
||||||
|
"excludeMode": "ONLY",
|
||||||
|
"excludeList": [],
|
||||||
|
"name": "gui.xaero_entity_category_other_teams",
|
||||||
|
"protection": true,
|
||||||
|
"settingOverrides": {
|
||||||
|
"renderOrder": 7.0
|
||||||
|
},
|
||||||
|
"subCategories": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"hardInclude": "hostile",
|
||||||
|
"includeList": [],
|
||||||
|
"includeListInSuperCategory": true,
|
||||||
|
"excludeMode": "ONLY",
|
||||||
|
"excludeList": [],
|
||||||
|
"name": "gui.xaero_entity_category_hostile",
|
||||||
|
"protection": true,
|
||||||
|
"settingOverrides": {
|
||||||
|
"renderOrder": 3.0
|
||||||
|
},
|
||||||
|
"subCategories": [
|
||||||
|
{
|
||||||
|
"hardInclude": "tamed",
|
||||||
|
"includeList": [],
|
||||||
|
"includeListInSuperCategory": true,
|
||||||
|
"excludeMode": "ONLY",
|
||||||
|
"excludeList": [],
|
||||||
|
"name": "gui.xaero_entity_category_hostile_tamed",
|
||||||
|
"protection": true,
|
||||||
|
"settingOverrides": {
|
||||||
|
"renderOrder": 5.0
|
||||||
|
},
|
||||||
|
"subCategories": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"hardInclude": "anything",
|
||||||
|
"includeList": [],
|
||||||
|
"includeListInSuperCategory": true,
|
||||||
|
"excludeMode": "ONLY",
|
||||||
|
"excludeList": [],
|
||||||
|
"name": "gui.xaero_entity_category_friendly",
|
||||||
|
"protection": true,
|
||||||
|
"settingOverrides": {},
|
||||||
|
"subCategories": [
|
||||||
|
{
|
||||||
|
"hardInclude": "tamed",
|
||||||
|
"includeList": [],
|
||||||
|
"includeListInSuperCategory": true,
|
||||||
|
"excludeMode": "ONLY",
|
||||||
|
"excludeList": [],
|
||||||
|
"name": "gui.xaero_entity_category_friendly_tamed",
|
||||||
|
"protection": true,
|
||||||
|
"settingOverrides": {
|
||||||
|
"renderOrder": 4.0
|
||||||
|
},
|
||||||
|
"subCategories": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"hardInclude": "items",
|
||||||
|
"includeList": [],
|
||||||
|
"includeListInSuperCategory": true,
|
||||||
|
"excludeMode": "ONLY",
|
||||||
|
"excludeList": [],
|
||||||
|
"name": "gui.xaero_entity_category_items",
|
||||||
|
"protection": true,
|
||||||
|
"settingOverrides": {
|
||||||
|
"renderOrder": 1.0,
|
||||||
|
"color": 12.0
|
||||||
|
},
|
||||||
|
"subCategories": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"hardInclude": "anything",
|
||||||
|
"includeList": [],
|
||||||
|
"includeListInSuperCategory": true,
|
||||||
|
"excludeMode": "ONLY",
|
||||||
|
"excludeList": [],
|
||||||
|
"name": "gui.xaero_entity_category_other_entities",
|
||||||
|
"protection": true,
|
||||||
|
"settingOverrides": {
|
||||||
|
"color": 5.0
|
||||||
|
},
|
||||||
|
"subCategories": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
2
config/yosbr/options.txt
Normal file
2
config/yosbr/options.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
simulationDistance:8
|
||||||
|
onboardAccessibility:true
|
||||||
119
index.toml
119
index.toml
@ -1,5 +1,117 @@
|
|||||||
hash-format = "sha256"
|
hash-format = "sha256"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/.puzzle_cache/mojangstudios.png"
|
||||||
|
hash = "27d2a588a33e94aff8cea4ea6090509ab3e10640f980e63dfd317c6b0dcd30df"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/NoChatReports/NCR-Client.json"
|
||||||
|
hash = "e0d9ce47a87536c707b797789b53e9e4f09b273f69098b1303b0815ebd82b3c5"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/NoChatReports/NCR-Common.json"
|
||||||
|
hash = "20bb880eb7a4657399b86fd11f6e2ec56c87c04ad037d62c155dcca5d484aa7f"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/NoChatReports/NCR-Encryption.json"
|
||||||
|
hash = "69b2e8613a2e3084367295c7b74cb598957f97bb9b9cfe56eb7b7a3187d86b66"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/NoChatReports/NCR-ServerPreferences.json"
|
||||||
|
hash = "df32843b853e0a493ef3a9b1e39276818294353fbb0d833f7f61e77da0f5bca1"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/NoChatReports/README.md"
|
||||||
|
hash = "c52b76ccad2bd1063a22c7f6bb9e7c5db6b00fb53a6fd605585972ee0e5fc01f"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/badoptimizations.txt"
|
||||||
|
hash = "f043b31a1fd029cbcd999a9ba184a1f66b4a8a8f020881c59b870436d8de1103"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/bettergrass.json5"
|
||||||
|
hash = "f0dfe4d7e5f928318f910ed4f2f0d1dd619d9acb80bbad15cb4850c1a73d0b01"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/cape-provider.json5"
|
||||||
|
hash = "81d978242279e9ab88842153065513852ff26735fed3318460030dad36c0904d"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/capes.json5"
|
||||||
|
hash = "affbf096bc7768bd508039d381774676bc9bbf463c8332f34cb021b0641041e0"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/controlify.json"
|
||||||
|
hash = "bc7cfadfe7121fdbd356c7992705ea6f484de518d3fd473eb8c59ea93e79a04d"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/creeperfireworks-client.toml"
|
||||||
|
hash = "f23184653b5da050a5bf9cec5da7d83cc8496196e5978eaebc1faadc96894692"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/creeperfireworks-common.toml"
|
||||||
|
hash = "8dbfa63d5d4ea44d9269dbe041f519c256c85c5d5c05bca8bdb52f7ee2f5ecc3"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/dynamic_fps.json"
|
||||||
|
hash = "aa798e887fb1fe69563a06e259dc2be59bcb3baf45ec05c1ded759ac6c1ff3ef"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/entityculling.json"
|
||||||
|
hash = "3955e3822546d7193b0432b91ba89e233a7b4aaf88cbf2883d1931c77bbc9fdb"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/ferritecore.mixin.properties"
|
||||||
|
hash = "3817e94107bb1c7358beebb80b1810e822de38be430f855cf14828c38018e8e2"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/immediatelyfast.json"
|
||||||
|
hash = "fe6551b3aa77d3b624acff41ed6bf65b3d6d5c8821b7bda8875ff7b6b75e0c43"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/iris.properties"
|
||||||
|
hash = "c951505f545e9d7f57ba66201609eac1792469e22fa13efcade818fc8b61cbe2"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/modmenu.json"
|
||||||
|
hash = "ee8d1a6f11ea009f37abba6325d97766910e1786b0de848aa307771d8a87ed72"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/ok_zoomer/config.toml"
|
||||||
|
hash = "a7c05cd6ad8a8fcd1399b40aefe221c9cbaa67e58fac4b477bda534ec92d9ded"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/puzzle.json"
|
||||||
|
hash = "481193336b67c5a9a82beec77880556f3b92fd792cd8ea4414a904dd66acd733"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/servercore/config.yml"
|
||||||
|
hash = "7ed78d3273aebb454ea062b841297b6a498364b997596383354402487e0e0434"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/servercore/optimizations.yml"
|
||||||
|
hash = "c1347aa983b02f5e59fcbd4f931501e2705330c5cf25e723d3239b85e6b6e262"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/sodium-options.json"
|
||||||
|
hash = "5b24c9a57bb6092df95d9e8ec3c79574103967cef4db94508b9b172df1e447e5"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/xaerominimap-common.txt"
|
||||||
|
hash = "b410746ddef0f7dd5f1d860ef3fcd6ad29c10988abbf6281181cb9c3acb628ca"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/xaerominimap.txt"
|
||||||
|
hash = "cecae3a750fb40a17ed8de5be3421efa388ec8a338aa7842116d70dd5a9e175f"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/config/xaerominimap_entities.json"
|
||||||
|
hash = "94fc0e69a1754ef80c54e1f3c9193526c620b0ac646f94a4a0f560bcc58826a8"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/yosbr/options.txt"
|
||||||
|
hash = "2299e914f3c3570ea6d0720ce58078396ad21f730c8db3152ce27e9513c48cb5"
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/badoptimizations.pw.toml"
|
file = "mods/badoptimizations.pw.toml"
|
||||||
hash = "c08dc994f8c76e87c1b59a20ea5a5a8ae0a18116c5fdd687afbbac9b4787939d"
|
hash = "c08dc994f8c76e87c1b59a20ea5a5a8ae0a18116c5fdd687afbbac9b4787939d"
|
||||||
@ -140,6 +252,11 @@ file = "mods/reeses-sodium-options.pw.toml"
|
|||||||
hash = "50616e2f4158fd929a196a49ff26fe73f56fae478f496964f4a9ac8d4a306226"
|
hash = "50616e2f4158fd929a196a49ff26fe73f56fae478f496964f4a9ac8d4a306226"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/servercore.pw.toml"
|
||||||
|
hash = "c57cb0a81eb8ab649a0102ba41e35c135474a6b1c196bc19d9a22922f8646846"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/sodium-extra.pw.toml"
|
file = "mods/sodium-extra.pw.toml"
|
||||||
hash = "f24a09bec2452947c6184f3a0e5d26989dd2b06b65b62376df5c7e8695165d84"
|
hash = "f24a09bec2452947c6184f3a0e5d26989dd2b06b65b62376df5c7e8695165d84"
|
||||||
@ -152,7 +269,7 @@ metafile = true
|
|||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/xaeros-minimap.pw.toml"
|
file = "mods/xaeros-minimap.pw.toml"
|
||||||
hash = "ecb8e8d334587b2f02f39efd37c7d3953a6400f09a40e347e48c3e536f415f2e"
|
hash = "4cd110350bb72acef0f710959011eb021d08519e4fae922d3092d494a8c61b55"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
|
|||||||
13
mods/servercore.pw.toml
Normal file
13
mods/servercore.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
filename = 'servercore-fabric-1.5.14+1.21.9.jar'
|
||||||
|
name = 'ServerCore'
|
||||||
|
side = 'server'
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash = 'd6113cedae8d0852c7341d8bb016732b03cea2d3729cb9140549bde6004aee1dd48634e16b3727b8cd4e8d101675672e43e6cc205958b4b41d4658ab3eb69b12'
|
||||||
|
hash-format = 'sha512'
|
||||||
|
mode = 'url'
|
||||||
|
url = 'https://cdn.modrinth.com/data/4WWQxlQP/versions/TTQGy6U8/servercore-fabric-1.5.14%2B1.21.9.jar'
|
||||||
|
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = '4WWQxlQP'
|
||||||
|
version = 'TTQGy6U8'
|
||||||
@ -1,6 +1,6 @@
|
|||||||
filename = 'Xaeros_Minimap_25.2.15_Fabric_1.21.9.jar'
|
filename = 'Xaeros_Minimap_25.2.15_Fabric_1.21.9.jar'
|
||||||
name = "Xaero's Minimap"
|
name = "Xaero's Minimap"
|
||||||
side = 'both'
|
side = 'client'
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
hash = '12a4a3e5756c9d9d5dc1094e495a80464b4602e0b55281d69ac4a083a533ca4dcf2fb6b6d113dcd2e705c7bf40fc9ef0f813116210974e39269fd1c7841d06d0'
|
hash = '12a4a3e5756c9d9d5dc1094e495a80464b4602e0b55281d69ac4a083a533ca4dcf2fb6b6d113dcd2e705c7bf40fc9ef0f813116210974e39269fd1c7841d06d0'
|
||||||
|
|||||||
@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0"
|
|||||||
[index]
|
[index]
|
||||||
file = "index.toml"
|
file = "index.toml"
|
||||||
hash-format = "sha256"
|
hash-format = "sha256"
|
||||||
hash = "7bcbf60cf3f8966aee8f7d94eb738e9d552a578c1a593be58a67e06d03c876f5"
|
hash = "d01d4ad8ac7eb0f609aa1e208b32a8408d7c1ab6a8eef382ace5867aa2ff3420"
|
||||||
|
|
||||||
[versions]
|
[versions]
|
||||||
fabric = "0.17.3"
|
fabric = "0.17.3"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user