Compare commits
10 commits
dada7cf7eb
...
659d7280da
| Author | SHA1 | Date | |
|---|---|---|---|
| 659d7280da | |||
| 3adb883465 | |||
| 071e972ed1 | |||
| 7bb3df045a | |||
| a59a3c8658 | |||
| b6a3d34a89 | |||
| 61b753f106 | |||
| ad209d0fe6 | |||
| 30cf162ec9 | |||
| e3c2c18af5 |
60 changed files with 1861 additions and 1 deletions
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
# Disable Git line ending conversion, to prevent packwiz index hashes changing when committing from Windows
|
||||
* -text
|
||||
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Exclude exported CurseForge zip files
|
||||
*.zip
|
||||
|
||||
# Exclude exported Modrinth modpacks
|
||||
*.mrpack
|
||||
3
.packwizignore
Normal file
3
.packwizignore
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
.idea
|
||||
*.zip
|
||||
*.mrpack
|
||||
8
config/MouseTweaks.cfg
Normal file
8
config/MouseTweaks.cfg
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
RMBTweak=1
|
||||
LMBTweakWithItem=1
|
||||
LMBTweakWithoutItem=1
|
||||
WheelTweak=1
|
||||
WheelSearchOrder=1
|
||||
WheelScrollDirection=0
|
||||
ScrollItemScaling=0
|
||||
Debug=0
|
||||
20
config/NoChatReports/NCR-Client.json
Normal file
20
config/NoChatReports/NCR-Client.json
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"defaultSigningMode": "PROMPT",
|
||||
"enableMod": true,
|
||||
"showNCRButton": true,
|
||||
"showReloadButton": true,
|
||||
"verifiedIconEnabled": true,
|
||||
"showServerSafety": true,
|
||||
"hideInsecureMessageIndicators": true,
|
||||
"hideModifiedMessageIndicators": true,
|
||||
"hideSystemMessageIndicators": true,
|
||||
"hideWarningToast": true,
|
||||
"hideSigningRequestMessage": false,
|
||||
"alwaysHideReportButton": false,
|
||||
"skipRealmsWarning": false,
|
||||
"disableTelemetry": true,
|
||||
"removeTelemetryButton": true,
|
||||
"demandOnServer": false,
|
||||
"verifiedIconOffsetX": 0,
|
||||
"verifiedIconOffsetY": 0
|
||||
}
|
||||
7
config/NoChatReports/NCR-Common.json
Normal file
7
config/NoChatReports/NCR-Common.json
Normal file
|
|
@ -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
|
||||
}
|
||||
28
config/NoChatReports/NCR-Encryption.json
Normal file
28
config/NoChatReports/NCR-Encryption.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"skipWarning": false,
|
||||
"enableEncryption": false,
|
||||
"encryptPublic": true,
|
||||
"showEncryptionButton": true,
|
||||
"showEncryptionIndicators": true,
|
||||
"encryptionKey": "blfrngArk3chG6wzncOZ5A\u003d\u003d",
|
||||
"encryptionPassphrase": "",
|
||||
"algorithmName": "AES/CFB8+Base64R",
|
||||
"encryptableCommands": [
|
||||
"msg:1",
|
||||
"w:1",
|
||||
"whisper:1",
|
||||
"tell:1",
|
||||
"r:0",
|
||||
"dm:1",
|
||||
"me:0",
|
||||
"m:1",
|
||||
"t:1",
|
||||
"pm:1",
|
||||
"emsg:1",
|
||||
"epm:1",
|
||||
"etell:1",
|
||||
"ewhisper:1",
|
||||
"message:1",
|
||||
"reply:0"
|
||||
]
|
||||
}
|
||||
3
config/NoChatReports/NCR-ServerPreferences.json
Normal file
3
config/NoChatReports/NCR-ServerPreferences.json
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"signingModes": {}
|
||||
}
|
||||
3
config/NoChatReports/README.md
Normal file
3
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
|
||||
30
config/balm-common.toml
Normal file
30
config/balm-common.toml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#This is an example boolean property
|
||||
exampleBoolean = true
|
||||
#This is an example int property
|
||||
# Default: 42
|
||||
# Range: > -2147483648
|
||||
exampleInt = 42
|
||||
#This is an example string property
|
||||
exampleString = "Hello World"
|
||||
#This is an example multiline string property
|
||||
exampleMultilineString = "Hello World"
|
||||
#This is an example enum property
|
||||
#Allowed Values: Hello, World
|
||||
exampleEnum = "Hello"
|
||||
#This is an example string list property
|
||||
exampleStringList = ["Hello", "World"]
|
||||
#This is an example resource location set property
|
||||
exampleResourceLocationSet = ["minecraft:diamond", "minecraft:dirt"]
|
||||
#This is an example int list property
|
||||
exampleIntList = [12, 24]
|
||||
#This is an example enum list property
|
||||
exampleEnumList = ["Hello", "World"]
|
||||
|
||||
[exampleCategory]
|
||||
#This is an example category
|
||||
#This is an example string inside a category
|
||||
innerField = "I am inside"
|
||||
#This is an example float inside a category
|
||||
# Default: 42.84000015258789
|
||||
# Range: -3.4028234663852886E38 ~ 3.4028234663852886E38
|
||||
exampleFloat = 42.84000015258789
|
||||
15
config/betterpingdisplay-client.toml
Normal file
15
config/betterpingdisplay-client.toml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#The color of the ping display text, written in hex format. Default: #A0A0A0
|
||||
#
|
||||
#Has no effect if 'autoColorText' is set to true
|
||||
textColor = "#A0A0A0"
|
||||
#Customize the display text of the ping display
|
||||
#Must contain a '%d', which will be replaced with the ping number
|
||||
#Example: '%dms' will transform into '123ms' if the player's ping is 123
|
||||
#Default: %dms
|
||||
textFormatString = "%dms"
|
||||
#Whether to also draw the default Minecraft ping bars
|
||||
renderPingBars = false
|
||||
#Whether to color a player's ping based on their latency.
|
||||
#Example: low latency = green, high latency = red
|
||||
#If this setting is true, then the 'textColor' setting is ignored
|
||||
autoColorText = true
|
||||
8
config/buildguide.cfg
Normal file
8
config/buildguide.cfg
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Enable asynchronous (multithreaded) shape generation.
|
||||
asyncEnabled = true
|
||||
# Enable random colors for new shapes added to the shape list by default.
|
||||
shapeListRandomColorsDefaultEnabled = false
|
||||
# Allow shapes to be saved to a file so they can be restored after restarting the client.
|
||||
persistenceEnabled = false
|
||||
# Enable debug output telling you how long it took for a shape to generate.
|
||||
debugGenerationTimingsEnabled = false
|
||||
16
config/dimensiondelvers-client.toml
Normal file
16
config/dimensiondelvers-client.toml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# == DimensionDelvers Client Configs ==
|
||||
[" == Accessibility == "]
|
||||
# Whether flashing-light effects should be disabled
|
||||
accessibilityFlashingLights = false
|
||||
# Whether Spiders should be replaced with something else
|
||||
accessibilityArachnophobia = false
|
||||
# Whether certain sounds should be replaced with something else
|
||||
accessibilityMisophonia = false
|
||||
# Whether certain textures should be replaced with something else
|
||||
accessibilityTrypophobia = false
|
||||
# Whether GUI & HUD elements should be replaced with higher contrast for better visibility
|
||||
accessibilityHighContrast = false
|
||||
# Whether motion should be reduced
|
||||
accessibilityReducedMotion = false
|
||||
# Whether certain sounds should be upped
|
||||
accessibilityHardOfHearing = false
|
||||
10
config/dimensiondelvers-common.toml
Normal file
10
config/dimensiondelvers-common.toml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#Whether to log the dirt block on common setup
|
||||
logDirtBlock = true
|
||||
#A magic number
|
||||
# Default: 42
|
||||
# Range: > 0
|
||||
magicNumber = 42
|
||||
#What you want the introduction message to be for the magic number
|
||||
magicNumberIntroduction = "The magic number is... "
|
||||
#A list of items to log on common setup.
|
||||
items = ["minecraft:iron_ingot"]
|
||||
1
config/dynamic_fps.json
Normal file
1
config/dynamic_fps.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
22
config/ferritecore-mixin.toml
Normal file
22
config/ferritecore-mixin.toml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#Use a slightly more compact, but also slightly slower representation for block states
|
||||
compactFastMap = false
|
||||
#Replace objects used to detect multi-threaded access to chunks by a much smaller field. This option is disabled by default due to very rare and very hard-to-reproduce crashes, use at your own risk!
|
||||
useSmallThreadingDetector = false
|
||||
#Cache the predicate instances used in multipart models
|
||||
cacheMultipartPredicates = 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
|
||||
#Avoid creation of new strings when creating ModelResourceLocations
|
||||
modelResourceLocations = true
|
||||
#Use smaller data structures for "simple" models, especially models with few side-specific faces
|
||||
modelSides = true
|
||||
#Replace the blockstate neighbor table
|
||||
replaceNeighborLookup = true
|
||||
#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
|
||||
#Do not store the properties of a state explicitly and read themfrom the replace neighbor table instead. Requires replaceNeighborLookup to be enabled
|
||||
replacePropertyMap = true
|
||||
#Deduplicate vertex data of baked quads in the basic model implementations
|
||||
bakedQuadDeduplication = true
|
||||
32
config/fml.toml
Normal file
32
config/fml.toml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#Disables File Watcher. Used to automatically update config if its file has been modified.
|
||||
disableConfigWatcher = false
|
||||
#Should we control the window. Disabling this disables new GL features and can be bad for mods that rely on them.
|
||||
earlyWindowControl = true
|
||||
#Max threads for early initialization parallelism, -1 is based on processor count
|
||||
maxThreads = -1
|
||||
#Enable NeoForge global version checking
|
||||
versionCheck = true
|
||||
#Default config path for servers
|
||||
defaultConfigPath = "defaultconfigs"
|
||||
#Disables Optimized DFU client-side - already disabled on servers
|
||||
disableOptimizedDFU = true
|
||||
#Early window provider
|
||||
earlyWindowProvider = "fmlearlywindow"
|
||||
#Early window width
|
||||
earlyWindowWidth = 854
|
||||
#Early window height
|
||||
earlyWindowHeight = 480
|
||||
#Early window framebuffer scale
|
||||
earlyWindowFBScale = 1
|
||||
#Early window starts maximized
|
||||
earlyWindowMaximized = false
|
||||
#Skip specific GL versions, may help with buggy graphics card drivers
|
||||
earlyWindowSkipGLVersions = []
|
||||
#Squir?
|
||||
earlyWindowSquir = false
|
||||
#Define dependency overrides below
|
||||
#Dependency overrides can be used to forcibly remove a dependency constraint from a mod or to force a mod to load AFTER another mod
|
||||
#Using dependency overrides can cause issues. Use at your own risk.
|
||||
#Example dependency override for the mod with the id 'targetMod': dependency constraints (incompatibility clauses or restrictive version ranges) against mod 'dep1' are removed, and the mod will now load after the mod 'dep2'
|
||||
#dependencyOverrides.targetMod = ["-dep1", "+dep2"]
|
||||
dependencyOverrides = {}
|
||||
8
config/iris.properties
Normal file
8
config/iris.properties
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#This file stores configuration options for Iris, such as the currently active shaderpack
|
||||
#Wed Mar 19 01:18:34 CET 2025
|
||||
colorSpace=SRGB
|
||||
disableUpdateMessage=false
|
||||
enableDebugOptions=false
|
||||
enableShaders=true
|
||||
maxShadowRenderDistance=32
|
||||
shaderPack=
|
||||
6
config/jade/hide-blocks.json
Normal file
6
config/jade/hide-blocks.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"__comment": "This is an ignore list for the target of Jade. You can add registry ids to the \"values\" list.",
|
||||
"values": [
|
||||
"barrier"
|
||||
]
|
||||
}
|
||||
10
config/jade/hide-entities.json
Normal file
10
config/jade/hide-entities.json
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"__comment": "This is an ignore list for the target of Jade. You can add registry ids to the \"values\" list.",
|
||||
"values": [
|
||||
"area_effect_cloud",
|
||||
"firework_rocket",
|
||||
"interaction",
|
||||
"text_display",
|
||||
"lightning_bolt"
|
||||
]
|
||||
}
|
||||
137
config/jade/jade.json
Normal file
137
config/jade/jade.json
Normal file
|
|
@ -0,0 +1,137 @@
|
|||
{
|
||||
"enableProfiles": false,
|
||||
"profileIndex": 0,
|
||||
"formatting": {
|
||||
"itemModNameStyle": {
|
||||
"italic": true,
|
||||
"color": "blue"
|
||||
}
|
||||
},
|
||||
"accessibility": {
|
||||
"enableAccessibilityPlugin": false,
|
||||
"textBackgroundOpacity": 0.0,
|
||||
"flipMainHand": false,
|
||||
"enableTextToSpeech": false,
|
||||
"ttsMode": "TOGGLE"
|
||||
},
|
||||
"plugin": {
|
||||
"minecraft": {
|
||||
"item_storage.show_name_amount": 5,
|
||||
"furnace": true,
|
||||
"harvest_tool.show_unbreakable": false,
|
||||
"animal_owner": true,
|
||||
"harvest_tool.effective_tool": true,
|
||||
"energy_storage.style": "PROGRESS_BAR",
|
||||
"item_storage.normal_amount": 9,
|
||||
"item_storage": true,
|
||||
"harvest_tool": true,
|
||||
"armor_stand": true,
|
||||
"fluid_storage.detailed": false,
|
||||
"next_entity_drop": true,
|
||||
"energy_storage": true,
|
||||
"entity_armor.max_for_render": 20,
|
||||
"breaking_progress": true,
|
||||
"tnt_stability": true,
|
||||
"item_storage.items_per_line": 9,
|
||||
"item_frame": true,
|
||||
"crop_progress": true,
|
||||
"command_block": true,
|
||||
"mob_growth": true,
|
||||
"waxed": true,
|
||||
"harvest_tool.new_line": false,
|
||||
"entity_health.max_for_render": 40,
|
||||
"entity_health.show_fractions": false,
|
||||
"mob_spawner": true,
|
||||
"redstone": true,
|
||||
"fluid_storage": true,
|
||||
"jukebox": true,
|
||||
"brewing_stand": true,
|
||||
"energy_storage.detailed": false,
|
||||
"note_block": true,
|
||||
"fluid_storage.style": "PROGRESS_BAR",
|
||||
"beehive": true,
|
||||
"item_storage.detailed_amount": 54,
|
||||
"player_head": true,
|
||||
"lectern": true,
|
||||
"entity_armor": true,
|
||||
"pet_armor": "SHOW_DAMAGEABLE",
|
||||
"harvest_tool.creative": false,
|
||||
"horse_stats": true,
|
||||
"item_tooltip": true,
|
||||
"entity_health": true,
|
||||
"enchantment_power": true,
|
||||
"zombie_villager": true,
|
||||
"villager_profession": true,
|
||||
"mob_breeding": true,
|
||||
"entity_health.icons_per_line": 10,
|
||||
"total_enchantment_power": true,
|
||||
"potion_effects": true,
|
||||
"painting": true,
|
||||
"chiseled_bookshelf": true
|
||||
},
|
||||
"jade_access": {
|
||||
"held_item": true,
|
||||
"sign": true,
|
||||
"block": true,
|
||||
"entity": true,
|
||||
"entity_variant": true
|
||||
},
|
||||
"jade": {
|
||||
"coordinates.rel": false,
|
||||
"registry_name.special": false,
|
||||
"block_states": false,
|
||||
"distance": false,
|
||||
"block_face": false,
|
||||
"coordinates": false,
|
||||
"registry_name": "OFF",
|
||||
"block_properties": false,
|
||||
"mod_name": true
|
||||
},
|
||||
"balm": {
|
||||
"jade": true
|
||||
}
|
||||
},
|
||||
"general": {
|
||||
"itemModNameTooltip": true,
|
||||
"bossBarOverlapMode": "PUSH_DOWN",
|
||||
"builtinCamouflage": true,
|
||||
"hideFromTabList": true,
|
||||
"hideFromGUIs": true,
|
||||
"perspectiveMode": "CAMERA",
|
||||
"extendedReach": 0.0,
|
||||
"debug": false,
|
||||
"displayBosses": true,
|
||||
"displayMode": "TOGGLE",
|
||||
"fluidMode": "ANY",
|
||||
"displayTooltip": true,
|
||||
"displayBlocks": true,
|
||||
"displayEntities": true
|
||||
},
|
||||
"overlay": {
|
||||
"iconMode": "TOP",
|
||||
"animation": true,
|
||||
"disappearingDelay": 0.0,
|
||||
"overlaySquare": false,
|
||||
"autoScaleThreshold": 0.4,
|
||||
"alpha": 0.7,
|
||||
"overlayScale": 1.0,
|
||||
"overlayAnchorX": 0.5,
|
||||
"overlayAnchorY": 0.0,
|
||||
"activeTheme": "jade:dark",
|
||||
"overlayPosX": 0.5,
|
||||
"overlayPosY": 1.0
|
||||
},
|
||||
"history": {
|
||||
"accessibilityModMemory": false,
|
||||
"themesHash": -328442023,
|
||||
"usersHash": [
|
||||
2037755508,
|
||||
-2102848243,
|
||||
-78707628,
|
||||
-1622965216
|
||||
],
|
||||
"previewOverlay": true,
|
||||
"hintOverlayToggle": true,
|
||||
"hintNarratorToggle": true
|
||||
}
|
||||
}
|
||||
122
config/jade/profiles/1/jade.json
Normal file
122
config/jade/profiles/1/jade.json
Normal file
|
|
@ -0,0 +1,122 @@
|
|||
{
|
||||
"formatting": {
|
||||
"itemModNameStyle": {
|
||||
"italic": true,
|
||||
"color": "blue"
|
||||
}
|
||||
},
|
||||
"accessibility": {
|
||||
"enableAccessibilityPlugin": false,
|
||||
"textBackgroundOpacity": 0.0,
|
||||
"flipMainHand": false,
|
||||
"enableTextToSpeech": false,
|
||||
"ttsMode": "TOGGLE"
|
||||
},
|
||||
"plugin": {
|
||||
"minecraft": {
|
||||
"item_storage.show_name_amount": 5,
|
||||
"furnace": true,
|
||||
"harvest_tool.show_unbreakable": false,
|
||||
"animal_owner": true,
|
||||
"harvest_tool.effective_tool": true,
|
||||
"energy_storage.style": "PROGRESS_BAR",
|
||||
"item_storage.normal_amount": 9,
|
||||
"item_storage": true,
|
||||
"harvest_tool": true,
|
||||
"armor_stand": true,
|
||||
"fluid_storage.detailed": false,
|
||||
"next_entity_drop": true,
|
||||
"energy_storage": true,
|
||||
"entity_armor.max_for_render": 20,
|
||||
"breaking_progress": true,
|
||||
"tnt_stability": true,
|
||||
"item_storage.items_per_line": 9,
|
||||
"item_frame": true,
|
||||
"crop_progress": true,
|
||||
"command_block": true,
|
||||
"mob_growth": true,
|
||||
"waxed": true,
|
||||
"harvest_tool.new_line": false,
|
||||
"entity_health.max_for_render": 40,
|
||||
"entity_health.show_fractions": false,
|
||||
"mob_spawner": true,
|
||||
"redstone": true,
|
||||
"fluid_storage": true,
|
||||
"jukebox": true,
|
||||
"brewing_stand": true,
|
||||
"energy_storage.detailed": false,
|
||||
"note_block": true,
|
||||
"fluid_storage.style": "PROGRESS_BAR",
|
||||
"beehive": true,
|
||||
"item_storage.detailed_amount": 54,
|
||||
"player_head": true,
|
||||
"lectern": true,
|
||||
"entity_armor": true,
|
||||
"pet_armor": "SHOW_DAMAGEABLE",
|
||||
"harvest_tool.creative": false,
|
||||
"horse_stats": true,
|
||||
"item_tooltip": true,
|
||||
"entity_health": true,
|
||||
"enchantment_power": true,
|
||||
"zombie_villager": true,
|
||||
"villager_profession": true,
|
||||
"mob_breeding": true,
|
||||
"entity_health.icons_per_line": 10,
|
||||
"total_enchantment_power": true,
|
||||
"potion_effects": true,
|
||||
"painting": true,
|
||||
"chiseled_bookshelf": true
|
||||
},
|
||||
"jade_access": {
|
||||
"held_item": true,
|
||||
"sign": true,
|
||||
"block": true,
|
||||
"entity": true,
|
||||
"entity_variant": true
|
||||
},
|
||||
"jade": {
|
||||
"coordinates.rel": false,
|
||||
"registry_name.special": false,
|
||||
"block_states": false,
|
||||
"distance": false,
|
||||
"block_face": false,
|
||||
"coordinates": false,
|
||||
"registry_name": "OFF",
|
||||
"block_properties": false,
|
||||
"mod_name": true
|
||||
},
|
||||
"balm": {
|
||||
"jade": true
|
||||
}
|
||||
},
|
||||
"general": {
|
||||
"itemModNameTooltip": true,
|
||||
"bossBarOverlapMode": "PUSH_DOWN",
|
||||
"builtinCamouflage": true,
|
||||
"hideFromTabList": true,
|
||||
"hideFromGUIs": true,
|
||||
"perspectiveMode": "CAMERA",
|
||||
"extendedReach": 0.0,
|
||||
"debug": false,
|
||||
"displayBosses": true,
|
||||
"displayMode": "TOGGLE",
|
||||
"fluidMode": "ANY",
|
||||
"displayTooltip": true,
|
||||
"displayBlocks": true,
|
||||
"displayEntities": true
|
||||
},
|
||||
"overlay": {
|
||||
"iconMode": "TOP",
|
||||
"animation": true,
|
||||
"disappearingDelay": 0.0,
|
||||
"overlaySquare": false,
|
||||
"autoScaleThreshold": 0.4,
|
||||
"alpha": 0.7,
|
||||
"overlayScale": 1.0,
|
||||
"overlayAnchorX": 0.5,
|
||||
"overlayAnchorY": 0.0,
|
||||
"activeTheme": "jade:dark",
|
||||
"overlayPosX": 0.5,
|
||||
"overlayPosY": 1.0
|
||||
}
|
||||
}
|
||||
122
config/jade/profiles/2/jade.json
Normal file
122
config/jade/profiles/2/jade.json
Normal file
|
|
@ -0,0 +1,122 @@
|
|||
{
|
||||
"formatting": {
|
||||
"itemModNameStyle": {
|
||||
"italic": true,
|
||||
"color": "blue"
|
||||
}
|
||||
},
|
||||
"accessibility": {
|
||||
"enableAccessibilityPlugin": false,
|
||||
"textBackgroundOpacity": 0.0,
|
||||
"flipMainHand": false,
|
||||
"enableTextToSpeech": false,
|
||||
"ttsMode": "TOGGLE"
|
||||
},
|
||||
"plugin": {
|
||||
"minecraft": {
|
||||
"item_storage.show_name_amount": 5,
|
||||
"furnace": true,
|
||||
"harvest_tool.show_unbreakable": false,
|
||||
"animal_owner": true,
|
||||
"harvest_tool.effective_tool": true,
|
||||
"energy_storage.style": "PROGRESS_BAR",
|
||||
"item_storage.normal_amount": 9,
|
||||
"item_storage": true,
|
||||
"harvest_tool": true,
|
||||
"armor_stand": true,
|
||||
"fluid_storage.detailed": false,
|
||||
"next_entity_drop": true,
|
||||
"energy_storage": true,
|
||||
"entity_armor.max_for_render": 20,
|
||||
"breaking_progress": true,
|
||||
"tnt_stability": true,
|
||||
"item_storage.items_per_line": 9,
|
||||
"item_frame": true,
|
||||
"crop_progress": true,
|
||||
"command_block": true,
|
||||
"mob_growth": true,
|
||||
"waxed": true,
|
||||
"harvest_tool.new_line": false,
|
||||
"entity_health.max_for_render": 40,
|
||||
"entity_health.show_fractions": false,
|
||||
"mob_spawner": true,
|
||||
"redstone": true,
|
||||
"fluid_storage": true,
|
||||
"jukebox": true,
|
||||
"brewing_stand": true,
|
||||
"energy_storage.detailed": false,
|
||||
"note_block": true,
|
||||
"fluid_storage.style": "PROGRESS_BAR",
|
||||
"beehive": true,
|
||||
"item_storage.detailed_amount": 54,
|
||||
"player_head": true,
|
||||
"lectern": true,
|
||||
"entity_armor": true,
|
||||
"pet_armor": "SHOW_DAMAGEABLE",
|
||||
"harvest_tool.creative": false,
|
||||
"horse_stats": true,
|
||||
"item_tooltip": true,
|
||||
"entity_health": true,
|
||||
"enchantment_power": true,
|
||||
"zombie_villager": true,
|
||||
"villager_profession": true,
|
||||
"mob_breeding": true,
|
||||
"entity_health.icons_per_line": 10,
|
||||
"total_enchantment_power": true,
|
||||
"potion_effects": true,
|
||||
"painting": true,
|
||||
"chiseled_bookshelf": true
|
||||
},
|
||||
"jade_access": {
|
||||
"held_item": true,
|
||||
"sign": true,
|
||||
"block": true,
|
||||
"entity": true,
|
||||
"entity_variant": true
|
||||
},
|
||||
"jade": {
|
||||
"coordinates.rel": false,
|
||||
"registry_name.special": false,
|
||||
"block_states": false,
|
||||
"distance": false,
|
||||
"block_face": false,
|
||||
"coordinates": false,
|
||||
"registry_name": "OFF",
|
||||
"block_properties": false,
|
||||
"mod_name": true
|
||||
},
|
||||
"balm": {
|
||||
"jade": true
|
||||
}
|
||||
},
|
||||
"general": {
|
||||
"itemModNameTooltip": true,
|
||||
"bossBarOverlapMode": "PUSH_DOWN",
|
||||
"builtinCamouflage": true,
|
||||
"hideFromTabList": true,
|
||||
"hideFromGUIs": true,
|
||||
"perspectiveMode": "CAMERA",
|
||||
"extendedReach": 0.0,
|
||||
"debug": false,
|
||||
"displayBosses": true,
|
||||
"displayMode": "TOGGLE",
|
||||
"fluidMode": "ANY",
|
||||
"displayTooltip": true,
|
||||
"displayBlocks": true,
|
||||
"displayEntities": true
|
||||
},
|
||||
"overlay": {
|
||||
"iconMode": "TOP",
|
||||
"animation": true,
|
||||
"disappearingDelay": 0.0,
|
||||
"overlaySquare": false,
|
||||
"autoScaleThreshold": 0.4,
|
||||
"alpha": 0.7,
|
||||
"overlayScale": 1.0,
|
||||
"overlayAnchorX": 0.5,
|
||||
"overlayAnchorY": 0.0,
|
||||
"activeTheme": "jade:dark",
|
||||
"overlayPosX": 0.5,
|
||||
"overlayPosY": 1.0
|
||||
}
|
||||
}
|
||||
122
config/jade/profiles/3/jade.json
Normal file
122
config/jade/profiles/3/jade.json
Normal file
|
|
@ -0,0 +1,122 @@
|
|||
{
|
||||
"formatting": {
|
||||
"itemModNameStyle": {
|
||||
"italic": true,
|
||||
"color": "blue"
|
||||
}
|
||||
},
|
||||
"accessibility": {
|
||||
"enableAccessibilityPlugin": false,
|
||||
"textBackgroundOpacity": 0.0,
|
||||
"flipMainHand": false,
|
||||
"enableTextToSpeech": false,
|
||||
"ttsMode": "TOGGLE"
|
||||
},
|
||||
"plugin": {
|
||||
"minecraft": {
|
||||
"item_storage.show_name_amount": 5,
|
||||
"furnace": true,
|
||||
"harvest_tool.show_unbreakable": false,
|
||||
"animal_owner": true,
|
||||
"harvest_tool.effective_tool": true,
|
||||
"energy_storage.style": "PROGRESS_BAR",
|
||||
"item_storage.normal_amount": 9,
|
||||
"item_storage": true,
|
||||
"harvest_tool": true,
|
||||
"armor_stand": true,
|
||||
"fluid_storage.detailed": false,
|
||||
"next_entity_drop": true,
|
||||
"energy_storage": true,
|
||||
"entity_armor.max_for_render": 20,
|
||||
"breaking_progress": true,
|
||||
"tnt_stability": true,
|
||||
"item_storage.items_per_line": 9,
|
||||
"item_frame": true,
|
||||
"crop_progress": true,
|
||||
"command_block": true,
|
||||
"mob_growth": true,
|
||||
"waxed": true,
|
||||
"harvest_tool.new_line": false,
|
||||
"entity_health.max_for_render": 40,
|
||||
"entity_health.show_fractions": false,
|
||||
"mob_spawner": true,
|
||||
"redstone": true,
|
||||
"fluid_storage": true,
|
||||
"jukebox": true,
|
||||
"brewing_stand": true,
|
||||
"energy_storage.detailed": false,
|
||||
"note_block": true,
|
||||
"fluid_storage.style": "PROGRESS_BAR",
|
||||
"beehive": true,
|
||||
"item_storage.detailed_amount": 54,
|
||||
"player_head": true,
|
||||
"lectern": true,
|
||||
"entity_armor": true,
|
||||
"pet_armor": "SHOW_DAMAGEABLE",
|
||||
"harvest_tool.creative": false,
|
||||
"horse_stats": true,
|
||||
"item_tooltip": true,
|
||||
"entity_health": true,
|
||||
"enchantment_power": true,
|
||||
"zombie_villager": true,
|
||||
"villager_profession": true,
|
||||
"mob_breeding": true,
|
||||
"entity_health.icons_per_line": 10,
|
||||
"total_enchantment_power": true,
|
||||
"potion_effects": true,
|
||||
"painting": true,
|
||||
"chiseled_bookshelf": true
|
||||
},
|
||||
"jade_access": {
|
||||
"held_item": true,
|
||||
"sign": true,
|
||||
"block": true,
|
||||
"entity": true,
|
||||
"entity_variant": true
|
||||
},
|
||||
"jade": {
|
||||
"coordinates.rel": false,
|
||||
"registry_name.special": false,
|
||||
"block_states": false,
|
||||
"distance": false,
|
||||
"block_face": false,
|
||||
"coordinates": false,
|
||||
"registry_name": "OFF",
|
||||
"block_properties": false,
|
||||
"mod_name": true
|
||||
},
|
||||
"balm": {
|
||||
"jade": true
|
||||
}
|
||||
},
|
||||
"general": {
|
||||
"itemModNameTooltip": true,
|
||||
"bossBarOverlapMode": "PUSH_DOWN",
|
||||
"builtinCamouflage": true,
|
||||
"hideFromTabList": true,
|
||||
"hideFromGUIs": true,
|
||||
"perspectiveMode": "CAMERA",
|
||||
"extendedReach": 0.0,
|
||||
"debug": false,
|
||||
"displayBosses": true,
|
||||
"displayMode": "TOGGLE",
|
||||
"fluidMode": "ANY",
|
||||
"displayTooltip": true,
|
||||
"displayBlocks": true,
|
||||
"displayEntities": true
|
||||
},
|
||||
"overlay": {
|
||||
"iconMode": "TOP",
|
||||
"animation": true,
|
||||
"disappearingDelay": 0.0,
|
||||
"overlaySquare": false,
|
||||
"autoScaleThreshold": 0.4,
|
||||
"alpha": 0.7,
|
||||
"overlayScale": 1.0,
|
||||
"overlayAnchorX": 0.5,
|
||||
"overlayAnchorY": 0.0,
|
||||
"activeTheme": "jade:dark",
|
||||
"overlayPosX": 0.5,
|
||||
"overlayPosY": 1.0
|
||||
}
|
||||
}
|
||||
1
config/jade/server-plugin-overrides.json
Normal file
1
config/jade/server-plugin-overrides.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
64
config/jade/sort-order.json
Normal file
64
config/jade/sort-order.json
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
{
|
||||
"balm:jade": null,
|
||||
"jade:block_face": null,
|
||||
"jade:block_properties": null,
|
||||
"jade:block_states": null,
|
||||
"jade:distance": null,
|
||||
"jade:mod_name": null,
|
||||
"jade:object_name": null,
|
||||
"jade:registry_name": null,
|
||||
"jade_access:block": null,
|
||||
"jade_access:block_amount": null,
|
||||
"jade_access:block_body": null,
|
||||
"jade_access:entity": null,
|
||||
"jade_access:entity_body": null,
|
||||
"jade_access:entity_variant": null,
|
||||
"jade_access:held_item": null,
|
||||
"jade_access:sign": null,
|
||||
"minecraft:animal_owner": null,
|
||||
"minecraft:armor_stand": null,
|
||||
"minecraft:beehive": null,
|
||||
"minecraft:block_display": null,
|
||||
"minecraft:brewing_stand": null,
|
||||
"minecraft:campfire": null,
|
||||
"minecraft:chiseled_bookshelf": null,
|
||||
"minecraft:command_block": null,
|
||||
"minecraft:crop_progress": null,
|
||||
"minecraft:enchantment_power": null,
|
||||
"minecraft:energy_storage": null,
|
||||
"minecraft:energy_storage.default": null,
|
||||
"minecraft:entity_armor": null,
|
||||
"minecraft:entity_health": null,
|
||||
"minecraft:falling_block": null,
|
||||
"minecraft:fluid_storage": null,
|
||||
"minecraft:fluid_storage.default": null,
|
||||
"minecraft:furnace": null,
|
||||
"minecraft:harvest_tool": null,
|
||||
"minecraft:hopper_lock": null,
|
||||
"minecraft:horse_stats": null,
|
||||
"minecraft:item_ber": null,
|
||||
"minecraft:item_display": null,
|
||||
"minecraft:item_frame": null,
|
||||
"minecraft:item_storage": null,
|
||||
"minecraft:item_storage.default": null,
|
||||
"minecraft:item_tooltip": null,
|
||||
"minecraft:jukebox": null,
|
||||
"minecraft:lectern": null,
|
||||
"minecraft:mob_breeding": null,
|
||||
"minecraft:mob_growth": null,
|
||||
"minecraft:mob_spawner": null,
|
||||
"minecraft:mob_spawner.cooldown": null,
|
||||
"minecraft:next_entity_drop": null,
|
||||
"minecraft:note_block": null,
|
||||
"minecraft:painting": null,
|
||||
"minecraft:pet_armor": null,
|
||||
"minecraft:player_head": null,
|
||||
"minecraft:potion_effects": null,
|
||||
"minecraft:progress": null,
|
||||
"minecraft:redstone": null,
|
||||
"minecraft:tnt_stability": null,
|
||||
"minecraft:total_enchantment_power": null,
|
||||
"minecraft:villager_profession": null,
|
||||
"minecraft:waxed": null,
|
||||
"minecraft:zombie_villager": null
|
||||
}
|
||||
8
config/jade/usernamecache.json
Normal file
8
config/jade/usernamecache.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"ccaeda6d-3e9b-48b2-9fca-69be0b9adb43": "jjo240",
|
||||
"b8bea29d-b3e1-4de8-b923-46b2ae0feb46": "cptFlavio",
|
||||
"afd86902-5db5-4534-b9af-044cc941d406": "That_One_Grimm",
|
||||
"d99f369b-31a5-4229-8d00-319c7719a3e2": "kinkymal",
|
||||
"9db52af5-43f2-4f40-a2bc-6fddae27aaa3": "Jyutta",
|
||||
"fe66878a-ad5f-4455-b5d9-aa95736998da": "WarrenGore"
|
||||
}
|
||||
6
config/lithium.properties
Normal file
6
config/lithium.properties
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# This is the configuration file for Lithium.
|
||||
#
|
||||
# You can find information on editing this file and all the available options here:
|
||||
# https://github.com/CaffeineMC/lithium-fabric/wiki/Configuration-File
|
||||
#
|
||||
# By default, this file will be empty except for this notice.
|
||||
2
config/modernfix-common.toml
Normal file
2
config/modernfix-common.toml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
#These JEI plugins will be loaded on the main thread
|
||||
blacklist_async_jei_plugins = ["jepb:jei_plugin"]
|
||||
76
config/modernfix-mixins.properties
Normal file
76
config/modernfix-mixins.properties
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
# This is the configuration file for ModernFix.
|
||||
# In general, prefer using the config screen to editing this file. It can be accessed
|
||||
# via the standard mod menu on your respective mod loader. Changes will, however,
|
||||
# require restarting the game to take effect.
|
||||
#
|
||||
# The following options can be enabled or disabled if there is a compatibility issue.
|
||||
# Add a line with your option name and =true or =false at the bottom of the file to enable
|
||||
# or disable a rule. For example:
|
||||
# mixin.perf.dynamic_resources=true
|
||||
# Do not include the #. You may reset to defaults by deleting this file.
|
||||
#
|
||||
# Available options:
|
||||
# mixin.bugfix.chunk_deadlock=true # (default)
|
||||
# mixin.bugfix.cofh_core_crash=true # (default)
|
||||
# mixin.bugfix.concurrency=true # (default)
|
||||
# mixin.bugfix.ctm_resourceutil_cme=true # (default)
|
||||
# mixin.bugfix.entity_pose_stack=true # (default)
|
||||
# mixin.bugfix.extra_experimental_screen=true # (default)
|
||||
# mixin.bugfix.fix_config_crashes=true # (default)
|
||||
# mixin.bugfix.missing_block_entities=false # (default)
|
||||
# mixin.bugfix.packet_leak=false # (default)
|
||||
# mixin.bugfix.paper_chunk_patches=true # (default)
|
||||
# mixin.bugfix.recipe_book_type_desync=true # (default)
|
||||
# mixin.bugfix.restore_old_dragon_movement=false # (default)
|
||||
# mixin.bugfix.unsafe_modded_shape_caches=true # (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.measure_time=true # (default)
|
||||
# mixin.feature.registry_event_progress=false # (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.stalled_chunk_load_detection=false # (default)
|
||||
# mixin.feature.warn_missing_perf_mods=true # (default)
|
||||
# mixin.launch.class_search_cache=true # (default)
|
||||
# mixin.perf.cache_blockstate_cache_arrays=true # (default)
|
||||
# mixin.perf.cache_profile_texture_url=true # (default)
|
||||
# mixin.perf.cache_strongholds=true # (default)
|
||||
# mixin.perf.chunk_meshing=true # (default)
|
||||
# mixin.perf.clear_mixin_classinfo=false # (default)
|
||||
# mixin.perf.compact_bit_storage=true # (default)
|
||||
# mixin.perf.dedicated_reload_executor=true # (default)
|
||||
# mixin.perf.deduplicate_climate_parameters=false # (default)
|
||||
# mixin.perf.deduplicate_location=false # (default)
|
||||
# mixin.perf.deduplicate_wall_shapes=true # (default)
|
||||
# mixin.perf.dynamic_entity_renderers=false # (default)
|
||||
# mixin.perf.dynamic_resources=false # (default)
|
||||
# mixin.perf.dynamic_sounds=true # (default)
|
||||
# mixin.perf.dynamic_structure_manager=true # (default)
|
||||
# mixin.perf.faster_item_rendering=false # (default)
|
||||
# mixin.perf.faster_texture_stitching=true # (default)
|
||||
# mixin.perf.fix_loop_spin_waiting=true # (default)
|
||||
# mixin.perf.kubejs=true # (default)
|
||||
# mixin.perf.model_optimizations=true # (default)
|
||||
# mixin.perf.mojang_registry_size=true # (default)
|
||||
# mixin.perf.nbt_memory_usage=true # (default)
|
||||
# mixin.perf.patchouli_deduplicate_books=true # (default)
|
||||
# mixin.perf.remove_biome_temperature_cache=true # (default)
|
||||
# mixin.perf.resourcepacks=true # (default)
|
||||
# mixin.perf.state_definition_construct=true # (default)
|
||||
# mixin.perf.tag_id_caching=true # (default)
|
||||
# mixin.perf.thread_priorities=true # (default)
|
||||
# mixin.perf.ticking_chunk_alloc=true # (default)
|
||||
# mixin.perf.worldgen_allocation=false # (default)
|
||||
# mixin.safety=true # (default)
|
||||
#
|
||||
# User overrides go here.
|
||||
23
config/moreculling.toml
Normal file
23
config/moreculling.toml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
version = 1
|
||||
enableSodiumMenu = true
|
||||
dontCull = []
|
||||
cloudCulling = true
|
||||
signTextCulling = true
|
||||
rainCulling = true
|
||||
useBlockStateCulling = true
|
||||
useCustomItemFrameRenderer = true
|
||||
itemFrameMapCulling = true
|
||||
useItemFrameLOD = true
|
||||
itemFrameLODRange = 16
|
||||
useItemFrame3FaceCulling = true
|
||||
itemFrame3FaceCullingRange = 2.0
|
||||
paintingCulling = true
|
||||
leavesCullingMode = "DEFAULT"
|
||||
leavesCullingAmount = 2
|
||||
includeMangroveRoots = false
|
||||
endGatewayCulling = false
|
||||
beaconBeamCulling = true
|
||||
useOnModdedBlocksByDefault = true
|
||||
|
||||
[modCompatibility]
|
||||
minecraft = true
|
||||
8
config/neoforge-client.toml
Normal file
8
config/neoforge-client.toml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#EXPERIMENTAL: Enable the NeoForge block rendering pipeline - fixes the lighting of custom models.
|
||||
experimentalForgeLightPipelineEnabled = false
|
||||
#When enabled, NeoForge will show any warnings that occurred during loading.
|
||||
showLoadWarnings = true
|
||||
#A config option mainly for developers. Logs out configuration values that do not have translations when running a client in a development environment.
|
||||
logUntranslatedConfigurationWarnings = true
|
||||
#Configures how many bits are used for the depth buffer when stenciling has been enabled by a mod. Set to true for 24+8 bits and to false for 32+8 bits. Setting to true will slightly reduce VRAM usage, but risks introducing visual artifacts.
|
||||
reducedDepthStencilFormat = false
|
||||
8
config/neoforge-common.toml
Normal file
8
config/neoforge-common.toml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#A config option mainly for developers. Logs out modded item tags that do not have translations when running on integrated server. Format desired is tag.item.<namespace>.<path> for the translation key. Defaults to SILENCED.
|
||||
#Allowed Values: SILENCED, DEV_SHORT, DEV_VERBOSE, PROD_SHORT, PROD_VERBOSE
|
||||
logUntranslatedItemTagWarnings = "SILENCED"
|
||||
#A config option mainly for developers. Logs out modded tags that are using the 'forge' namespace when running on integrated server. Defaults to DEV_SHORT.
|
||||
#Allowed Values: SILENCED, DEV_SHORT, DEV_VERBOSE, PROD_SHORT, PROD_VERBOSE
|
||||
logLegacyTagWarnings = "DEV_SHORT"
|
||||
#Set this to true to enable showing debug information about attributes on an item when advanced tooltips is on.
|
||||
attributeAdvancedTooltipDebugInfo = true
|
||||
10
config/neoforge-server.toml
Normal file
10
config/neoforge-server.toml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#Set this to true to remove any BlockEntity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES.
|
||||
removeErroringBlockEntities = false
|
||||
#Set this to true to remove any Entity (Note: Does not include BlockEntities) that throws an error in its tick method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES.
|
||||
removeErroringEntities = false
|
||||
#Set this to true to check the entire entity's collision bounding box for ladders instead of just the block they are in. Causes noticeable differences in mechanics so default is vanilla behavior. Default: false.
|
||||
fullBoundingBoxLadders = false
|
||||
#The permission handler used by the server. Defaults to neoforge:default_handler if no such handler with that name is registered.
|
||||
permissionHandler = "neoforge:default_handler"
|
||||
#Set this to true to enable advertising the dedicated server to local LAN clients so that it shows up in the Multiplayer screen automatically.
|
||||
advertiseDedicatedServerToLan = true
|
||||
4
config/roughlyenoughitems/collapsible.json5
Normal file
4
config/roughlyenoughitems/collapsible.json5
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"disabledGroups": [],
|
||||
"customGroups": []
|
||||
}
|
||||
201
config/roughlyenoughitems/config.json5
Normal file
201
config/roughlyenoughitems/config.json5
Normal file
|
|
@ -0,0 +1,201 @@
|
|||
{
|
||||
"basics": {
|
||||
"favorites": [],
|
||||
"hiddenFavorites": [],
|
||||
"displayHistory": [],
|
||||
"cheating": true,
|
||||
"favoritesEnabled": true,
|
||||
"reduceMotion": false,
|
||||
"keyBindings": {
|
||||
"useNativeKeybinds": false,
|
||||
"recipeKeybind": {
|
||||
"keyCode": "key.keyboard.r",
|
||||
"modifier": 0
|
||||
},
|
||||
"usageKeybind": {
|
||||
"keyCode": "key.keyboard.u",
|
||||
"modifier": 0
|
||||
},
|
||||
"hideKeybind": {
|
||||
"keyCode": "key.keyboard.o",
|
||||
"modifier": 2
|
||||
},
|
||||
"previousPageKeybind": {
|
||||
"keyCode": "key.keyboard.unknown",
|
||||
"modifier": 0
|
||||
},
|
||||
"nextPageKeybind": {
|
||||
"keyCode": "key.keyboard.unknown",
|
||||
"modifier": 0
|
||||
},
|
||||
"focusSearchFieldKeybind": {
|
||||
"keyCode": "key.keyboard.unknown",
|
||||
"modifier": 0
|
||||
},
|
||||
"copyRecipeIdentifierKeybind": {
|
||||
"keyCode": "key.mouse.middle",
|
||||
"modifier": 0
|
||||
},
|
||||
"favoriteKeybind": {
|
||||
"keyCode": "key.keyboard.a",
|
||||
"modifier": 0
|
||||
},
|
||||
"exportImageKeybind": {
|
||||
"keyCode": "key.keyboard.f8",
|
||||
"modifier": 0
|
||||
},
|
||||
"previousScreenKeybind": {
|
||||
"keyCode": "key.keyboard.backspace",
|
||||
"modifier": 0
|
||||
}
|
||||
},
|
||||
// Declares whether REI is visible.
|
||||
"overlayVisible": true,
|
||||
"cheatingStyle": "GRAB"
|
||||
},
|
||||
"appearance": {
|
||||
"recipeScreenType": "ORIGINAL",
|
||||
// Declares the appearance of REI windows.
|
||||
"theme": "LIGHT",
|
||||
"layout": {
|
||||
// Declares the position of the search field.
|
||||
"searchFieldLocation": "CENTER",
|
||||
// Declares the position of the config button.
|
||||
"configButtonLocation": "LOWER",
|
||||
// Declares whether the craftable filter button is enabled.
|
||||
"showCraftableOnlyButton": true
|
||||
},
|
||||
// Declares the appearance of recipe's border.
|
||||
"recipeBorder": "DEFAULT",
|
||||
// Declares whether entry panel is scrolled.
|
||||
"scrollingEntryListWidget": false,
|
||||
// Declares whether entry panel should be invisible when not searching
|
||||
"hideEntryPanelIfIdle": false,
|
||||
"rainbow": false,
|
||||
"horizontalEntriesBoundaries": 1.0,
|
||||
"verticalEntriesBoundaries": 1.0,
|
||||
"horizontalEntriesBoundariesColumns": 50,
|
||||
"verticalEntriesBoundariesRows": 1000,
|
||||
"horizontalEntriesBoundariesAlignment": 1.0,
|
||||
"verticalEntriesBoundariesAlignment": 0.5,
|
||||
"favoritesHorizontalEntriesBoundaries": 1.0,
|
||||
"favoritesHorizontalEntriesBoundariesColumns": 50,
|
||||
"syntaxHighlightingMode": "COLORFUL",
|
||||
"isFocusModeZoomed": false
|
||||
},
|
||||
"functionality": {
|
||||
"inputMethod": null,
|
||||
// Declares whether REI should remove the recipe book.
|
||||
"disableRecipeBook": false,
|
||||
// Declares whether mob effects should be on the left side instead of the right side.
|
||||
"leftSideMobEffects": false,
|
||||
// Declares whether subsets is enabled.
|
||||
"isSubsetsEnabled": false,
|
||||
"allowInventoryHighlighting": true,
|
||||
"inventoryHighlightingDarkenOpacity": 0.85,
|
||||
"inventoryHighlightingOpacity": 1.0,
|
||||
"itemCheatingMode": "REI_LIKE"
|
||||
},
|
||||
"advanced": {
|
||||
"tooltips": {
|
||||
// Declares whether REI should append mod names to entries.
|
||||
"appendModNames": true,
|
||||
// Declares whether favorites tooltip should be displayed.
|
||||
"displayFavoritesTooltip": false,
|
||||
"displayIMEHints": true
|
||||
},
|
||||
"layout": {
|
||||
// The ordering of the items on the entry panel.
|
||||
"entryPanelOrdering": "REGISTRY_ASCENDING",
|
||||
// Declares the maximum amount of recipes displayed in a page if possible.
|
||||
"maxRecipesPerPage": 8,
|
||||
// Declares the maximum amount of recipes displayed in a page if possible.
|
||||
"maxRecipesPageHeight": 300,
|
||||
// Declares whether entry rendering time should be debugged.
|
||||
"debugRenderTimeRequired": false,
|
||||
// Merges displays with equal contents under 1 display.
|
||||
"mergeDisplayUnderOne": true,
|
||||
"favoriteAddWidgetMode": "ALWAYS_VISIBLE"
|
||||
},
|
||||
"accessibility": {
|
||||
"entrySize": 1.0,
|
||||
// Declares the position of the entry panel.
|
||||
"displayPanelLocation": "RIGHT",
|
||||
// Declares how the scrollbar in composite screen should act.
|
||||
"compositeScrollBarPermanent": false,
|
||||
"toastDisplayedOnCopyIdentifier": true,
|
||||
// Declares whether REI should use compact tabs for categories.
|
||||
"useCompactTabs": true,
|
||||
// Declares whether REI should use compact tab buttons for categories.
|
||||
"useCompactTabButtons": false
|
||||
},
|
||||
"search": {
|
||||
// Declares whether search time should be debugged.
|
||||
"debugSearchTimeRequired": false,
|
||||
// Declares whether REI should search async.
|
||||
"asyncSearch": true,
|
||||
// Declares how many entries should be grouped one async search.
|
||||
"asyncSearchPartitionSize": 100,
|
||||
"patchAsyncThreadCrash": true,
|
||||
"tooltipSearch": "ALWAYS",
|
||||
"tagSearch": "PREFIX",
|
||||
"identifierSearch": "ALWAYS",
|
||||
"modSearch": "PREFIX"
|
||||
},
|
||||
"commands": {
|
||||
// Declares the command used to change gamemode.
|
||||
"gamemodeCommand": "/gamemode {gamemode}",
|
||||
// Declares the command used in servers to cheat items.
|
||||
"giveCommand": "/give {player_name} {item_identifier}{nbt} {count}",
|
||||
// Declares the command used to change weather.
|
||||
"weatherCommand": "/weather {weather}",
|
||||
// Declares the command used to change time.
|
||||
"timeCommand": "/time set {time}"
|
||||
},
|
||||
"miscellaneous": {
|
||||
// Declares whether arrows in containers should be clickable.
|
||||
"clickableRecipeArrows": true,
|
||||
"registerRecipesInAnotherThread": true,
|
||||
"newFastEntryRendering": true,
|
||||
"cachingFastEntryRendering": false,
|
||||
"cachingDisplayLookup": true,
|
||||
"categorySettings": {
|
||||
"filteringQuickCraftCategories": { },
|
||||
"categoryOrdering": [
|
||||
"minecraft:plugins/crafting",
|
||||
"minecraft:plugins/smelting",
|
||||
"minecraft:plugins/smoking",
|
||||
"minecraft:plugins/blasting",
|
||||
"minecraft:plugins/campfire",
|
||||
"minecraft:plugins/stone_cutting",
|
||||
"minecraft:plugins/fuel",
|
||||
"minecraft:plugins/brewing",
|
||||
"minecraft:plugins/composting",
|
||||
"minecraft:plugins/stripping",
|
||||
"minecraft:plugins/smithing",
|
||||
"minecraft:plugins/anvil",
|
||||
"minecraft:plugins/beacon_base",
|
||||
"minecraft:plugins/beacon_payment",
|
||||
"minecraft:plugins/tilling",
|
||||
"minecraft:plugins/pathing",
|
||||
"minecraft:plugins/waxing",
|
||||
"minecraft:plugins/wax_scraping",
|
||||
"minecraft:plugins/oxidizing",
|
||||
"minecraft:plugins/oxidation_scraping",
|
||||
"roughlyenoughitems:plugins/information",
|
||||
"minecraft:plugins/tag"
|
||||
],
|
||||
"hiddenCategories": []
|
||||
}
|
||||
},
|
||||
"filtering": {
|
||||
"filteredStacks": [],
|
||||
"shouldFilterDisplays": true,
|
||||
"filteringRules": [
|
||||
"{id:\"roughlyenoughitems:manual\",rule:{}}",
|
||||
"{id:\"roughlyenoughitems:basic\",rule:{}}",
|
||||
"{id:\"roughlyenoughitems:hidden_from_recipe_viewers\",rule:{}}"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
8
config/roughlyenoughitems/favorites.json5
Normal file
8
config/roughlyenoughitems/favorites.json5
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"favorites": [
|
||||
"{data:{type:\"minecraft:item\",value:{count:1,id:\"minecraft:stripped_birch_log\"}},type:\"roughlyenoughitems:entry_stack\"}",
|
||||
"{data:{type:\"minecraft:item\",value:{count:1,id:\"minecraft:stripped_mangrove_log\"}},type:\"roughlyenoughitems:entry_stack\"}"
|
||||
],
|
||||
"hiddenFavorites": [],
|
||||
"displays": []
|
||||
}
|
||||
1
config/roughlyenoughitems/hints.json
Normal file
1
config/roughlyenoughitems/hints.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"UUID":"ccaeda6d-3e9b-48b2-9fca-69be0b9adb43","shownHints":[]}
|
||||
2
config/roughlyenoughitems/pinyin.properties
Normal file
2
config/roughlyenoughitems/pinyin.properties
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
#Pinyin Options
|
||||
#Wed Mar 19 01:18:49 CET 2025
|
||||
3
config/roughlyenoughitems/pinyin_double.properties
Normal file
3
config/roughlyenoughitems/pinyin_double.properties
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#Double Pinyin Options
|
||||
#Wed Mar 19 01:18:49 CET 2025
|
||||
Converter=sougou
|
||||
63
config/sodium-extra-options.json
Normal file
63
config/sodium-extra-options.json
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
{
|
||||
"animation_settings": {
|
||||
"animation": true,
|
||||
"water": true,
|
||||
"lava": true,
|
||||
"fire": true,
|
||||
"portal": true,
|
||||
"block_animations": true,
|
||||
"sculk_sensor": true
|
||||
},
|
||||
"particle_settings": {
|
||||
"particles": true,
|
||||
"rain_splash": true,
|
||||
"block_break": true,
|
||||
"block_breaking": true,
|
||||
"other": {}
|
||||
},
|
||||
"detail_settings": {
|
||||
"sky": true,
|
||||
"sun": true,
|
||||
"moon": true,
|
||||
"stars": true,
|
||||
"rain_snow": true,
|
||||
"biome_colors": true,
|
||||
"sky_colors": true
|
||||
},
|
||||
"render_settings": {
|
||||
"fog_distance": 0,
|
||||
"fog_start": 100,
|
||||
"multi_dimension_fog_control": false,
|
||||
"dimensionFogDistance": {},
|
||||
"light_updates": true,
|
||||
"item_frame": true,
|
||||
"armor_stand": true,
|
||||
"painting": true,
|
||||
"piston": true,
|
||||
"beacon_beam": true,
|
||||
"limit_beacon_beam_height": false,
|
||||
"enchanting_table_book": true,
|
||||
"item_frame_name_tag": true,
|
||||
"player_name_tag": true
|
||||
},
|
||||
"extra_settings": {
|
||||
"overlay_corner": "TOP_LEFT",
|
||||
"text_contrast": "NONE",
|
||||
"show_fps": false,
|
||||
"show_f_p_s_extended": true,
|
||||
"show_coords": false,
|
||||
"reduce_resolution_on_mac": false,
|
||||
"use_adaptive_sync": false,
|
||||
"cloud_height": 192,
|
||||
"cloud_distance": 100,
|
||||
"toasts": true,
|
||||
"advancement_toast": true,
|
||||
"recipe_toast": true,
|
||||
"system_toast": true,
|
||||
"tutorial_toast": true,
|
||||
"instant_sneak": false,
|
||||
"prevent_shaders": false,
|
||||
"steady_debug_hud": true,
|
||||
"steady_debug_hud_refresh_interval": 1
|
||||
}
|
||||
}
|
||||
7
config/sodium-extra.properties
Normal file
7
config/sodium-extra.properties
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# This is the configuration file for Sodium Extra.
|
||||
# This file exists for debugging purposes and should not be configured otherwise.
|
||||
#
|
||||
# You can find information on editing this file and all the available options here:
|
||||
# https://github.com/FlashyReese/sodium-extra-fabric/wiki/Configuration-File
|
||||
#
|
||||
# By default, this file will be empty except for this notice.
|
||||
1
config/sodium-fingerprint.json
Normal file
1
config/sodium-fingerprint.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"v":1,"s":"47d8d2942cc4d033162e07e8aee9e8ac745474255741cb786780c63fccb3e4b96519710b36ccace210ebfd8e4256c0fdceaaff3600019043ec38eed25caa46c4","u":"6df47b0d2003066857fd567fc5894f975856382bb4627a041a6ad9a6bb1ff3bbe5e8d8b6c74131c355a98d6468bc5df1fe258105f85fec01a7dce7e91266eecc","p":"f7cbab7bd0c0c59849a93d5c0423b2703c177098687325d66b3f685a842f304f8b466eb2ae42661e06c8b91134fb1e4898a5a3b9be17ca8ed8e78fb3001207be","t":1741632960}
|
||||
6
config/sodium-mixins.properties
Normal file
6
config/sodium-mixins.properties
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# This is the configuration file for Sodium.
|
||||
#
|
||||
# You can find information on editing this file and all the available options here:
|
||||
# https://github.com/CaffeineMC/sodium/wiki/Configuration-File
|
||||
#
|
||||
# By default, this file will be empty except for this notice.
|
||||
26
config/sodium-options.json
Normal file
26
config/sodium-options.json
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"quality": {
|
||||
"weather_quality": "DEFAULT",
|
||||
"leaves_quality": "DEFAULT",
|
||||
"enable_vignette": true
|
||||
},
|
||||
"advanced": {
|
||||
"enable_memory_tracing": false,
|
||||
"use_advanced_staging_buffers": true,
|
||||
"cpu_render_ahead_limit": 3
|
||||
},
|
||||
"performance": {
|
||||
"chunk_builder_threads": 0,
|
||||
"always_defer_chunk_updates_v2": true,
|
||||
"animate_only_visible_textures": true,
|
||||
"use_entity_culling": true,
|
||||
"use_fog_occlusion": true,
|
||||
"use_block_face_culling": true,
|
||||
"use_no_error_g_l_context": true,
|
||||
"sorting_enabled_v2": true
|
||||
},
|
||||
"notifications": {
|
||||
"has_cleared_donation_button": false,
|
||||
"has_seen_donation_prompt": false
|
||||
}
|
||||
}
|
||||
4
config/spark/config.json
Normal file
4
config/spark/config.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"_header": "spark configuration file - https://spark.lucko.me/docs/Configuration",
|
||||
"backgroundProfiler": true
|
||||
}
|
||||
10
config/spark/tmp-client/about.txt
Normal file
10
config/spark/tmp-client/about.txt
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# What is this directory?
|
||||
|
||||
* In order to perform certain functions, spark sometimes needs to write temporary data to the disk.
|
||||
* Previously, a temporary directory provided by the operating system was used for this purpose.
|
||||
* However, this proved to be unreliable in some circumstances, so spark now stores temporary data here instead!
|
||||
|
||||
spark will automatically cleanup the contents of this directory.
|
||||
(but if for some reason it doesn't, if the server is stopped, you can freely delete any files ending in .tmp)
|
||||
|
||||
tl;dr: spark uses this folder to store some temporary data.
|
||||
10
config/spark/tmp/about.txt
Normal file
10
config/spark/tmp/about.txt
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# What is this directory?
|
||||
|
||||
* In order to perform certain functions, spark sometimes needs to write temporary data to the disk.
|
||||
* Previously, a temporary directory provided by the operating system was used for this purpose.
|
||||
* However, this proved to be unreliable in some circumstances, so spark now stores temporary data here instead!
|
||||
|
||||
spark will automatically cleanup the contents of this directory.
|
||||
(but if for some reason it doesn't, if the server is stopped, you can freely delete any files ending in .tmp)
|
||||
|
||||
tl;dr: spark uses this folder to store some temporary data.
|
||||
10
config/trashslot-common.toml
Normal file
10
config/trashslot-common.toml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#This causes the deletion slot to delete items instantly, similar to Creative Mode.
|
||||
instantDeletion = false
|
||||
#Set to true if you want the delete keybindings to work in creative as well. Note: Items will be deleted permanently in creative, regardless of instantDeletion setting!
|
||||
enableDeleteKeysInCreative = true
|
||||
#TrashSlot will show a hint the first time the trash slot is toggled off or can be enabled on a supported screen. Set to false to disable.
|
||||
enableHints = true
|
||||
#Not recommended, but this will allow you to use the keybinds for deleting items even if the trash slot itself is hidden.
|
||||
allowDeletionWhileTrashSlotIsInvisible = false
|
||||
#List of items that cannot be deleted, in comma-separated format of "modid:name".
|
||||
deletionDenyList = []
|
||||
67
config/wands.json
Normal file
67
config/wands.json
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
{
|
||||
"max_limit___increment_this_if_your_machine_can_handle_it": 8192,
|
||||
"blocks_per_xp": 0.0,
|
||||
"stone_wand_limit": 16,
|
||||
"iron_wand_limit": 32,
|
||||
"diamond_wand_limit": 64,
|
||||
"netherite_wand_limit": 256,
|
||||
"creative_wand_limit": 512,
|
||||
"stone_wand_durability": 256,
|
||||
"iron_wand_durability": 512,
|
||||
"diamond_wand_durability": 2048,
|
||||
"netherite_wand_durability": 4096,
|
||||
"destroy_in_survival_drop": true,
|
||||
"survival_unenchanted_drops": true,
|
||||
"allow_wand_to_break": false,
|
||||
"allow_offhand_to_break": false,
|
||||
"mend_tools": true,
|
||||
"enable_vein_mode": true,
|
||||
"enable_blast_mode": true,
|
||||
"disable_destroy_replace": false,
|
||||
"magic_bag_1_limit": 17280,
|
||||
"magic_bag_2_limit": 172800,
|
||||
"wand_mode_display_x_pos": 75.0,
|
||||
"wand_mode_display_y_pos": 100.0,
|
||||
"wand_tools_display_x_pos": 0.0,
|
||||
"wand_tools_display_y_pos": 100.0,
|
||||
"preview_opacity": 0.8,
|
||||
"wand_screen_x_offset": 0,
|
||||
"wand_screen_y_offset": 0,
|
||||
"fancy_preview": true,
|
||||
"block_outlines": true,
|
||||
"fill_outlines": true,
|
||||
"copy_outlines": true,
|
||||
"paste_outlines": true,
|
||||
"lines": true,
|
||||
"fat_lines": true,
|
||||
"render_last": false,
|
||||
"show_tools_info": true,
|
||||
"check_advancements": false,
|
||||
"advancement_allow_stone_wand": "",
|
||||
"advancement_allow_iron_wand": "",
|
||||
"advancement_allow_diamond_wand": "",
|
||||
"advancement_allow_netherite_wand": "",
|
||||
"fat_lines_width": 0.025,
|
||||
"block_outline_color": "220,220,220,255",
|
||||
"bounding_box_color": "0,0,200,255",
|
||||
"destroy_color": "220,0,0,255",
|
||||
"tool_use_color": "240,240,0,255",
|
||||
"start_color": "0,200,200,255",
|
||||
"end_color": "0,200,0,255",
|
||||
"line_color": "200,0,200,200",
|
||||
"paste_bb_color": "80,40,0,255",
|
||||
"block_color": "255,255,255,255",
|
||||
"str_pickaxe_allowed": [
|
||||
"minecraft:sea_lantern",
|
||||
"minecraft:glowstone"
|
||||
],
|
||||
"str_axe_allowed": [],
|
||||
"str_shovel_allowed": [],
|
||||
"str_hoe_allowed": [
|
||||
"minecraft:moss_block"
|
||||
],
|
||||
"str_shears_allowed": [
|
||||
"minecraft:moss_block"
|
||||
],
|
||||
"str_denied": []
|
||||
}
|
||||
46
config/worldedit/worldedit.properties
Normal file
46
config/worldedit/worldedit.properties
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
#Don't put comments; they get removed
|
||||
#Sun Mar 09 17:08:58 CET 2025
|
||||
allow-symbolic-links=false
|
||||
butcher-default-radius=-1
|
||||
butcher-max-radius=-1
|
||||
calculation-timeout=100
|
||||
cheat-mode=false
|
||||
command-block-support=false
|
||||
craftscript-dir=craftscripts
|
||||
default-locale=default
|
||||
default-max-changed-blocks=-1
|
||||
default-max-polygon-points=-1
|
||||
default-max-polyhedron-points=-1
|
||||
default-vertical-height=256
|
||||
disallowed-blocks=minecraft\:oak_sapling,minecraft\:jungle_sapling,minecraft\:dark_oak_sapling,minecraft\:spruce_sapling,minecraft\:birch_sapling,minecraft\:acacia_sapling,minecraft\:black_bed,minecraft\:blue_bed,minecraft\:brown_bed,minecraft\:cyan_bed,minecraft\:gray_bed,minecraft\:green_bed,minecraft\:light_blue_bed,minecraft\:light_gray_bed,minecraft\:lime_bed,minecraft\:magenta_bed,minecraft\:orange_bed,minecraft\:pink_bed,minecraft\:purple_bed,minecraft\:red_bed,minecraft\:white_bed,minecraft\:yellow_bed,minecraft\:powered_rail,minecraft\:detector_rail,minecraft\:short_grass,minecraft\:dead_bush,minecraft\:moving_piston,minecraft\:piston_head,minecraft\:sunflower,minecraft\:rose_bush,minecraft\:dandelion,minecraft\:poppy,minecraft\:brown_mushroom,minecraft\:red_mushroom,minecraft\:tnt,minecraft\:torch,minecraft\:fire,minecraft\:redstone_wire,minecraft\:wheat,minecraft\:potatoes,minecraft\:carrots,minecraft\:melon_stem,minecraft\:pumpkin_stem,minecraft\:beetroots,minecraft\:rail,minecraft\:lever,minecraft\:redstone_torch,minecraft\:redstone_wall_torch,minecraft\:repeater,minecraft\:comparator,minecraft\:stone_button,minecraft\:birch_button,minecraft\:acacia_button,minecraft\:dark_oak_button,minecraft\:jungle_button,minecraft\:oak_button,minecraft\:spruce_button,minecraft\:cactus,minecraft\:sugar_cane,minecraft\:bedrock
|
||||
extended-y-limit=false
|
||||
history-size=15
|
||||
log-commands=false
|
||||
log-file=
|
||||
log-format=[%1$tY-%1$tm-%1$td %1$tH\:%1$tM\:%1$tS %4$s]\: %5$s%6$s%n
|
||||
max-brush-radius=6
|
||||
max-calculation-timeout=300
|
||||
max-changed-blocks=-1
|
||||
max-polygon-points=20
|
||||
max-polyhedron-points=20
|
||||
max-radius=-1
|
||||
max-super-pickaxe-size=5
|
||||
nav-use-glass=true
|
||||
nav-wand-distance=50
|
||||
nav-wand-item=minecraft\:compass
|
||||
profile=false
|
||||
register-help=true
|
||||
schematic-save-dir=schematics
|
||||
scripting-timeout=3000
|
||||
server-side-cui=true
|
||||
shell-save-type=
|
||||
snapshots-dir=
|
||||
snapshots-experimental=false
|
||||
super-pickaxe-drop-items=true
|
||||
super-pickaxe-many-drop-items=true
|
||||
trace-unflushed-sessions=true
|
||||
use-in-creative=false
|
||||
use-inventory=false
|
||||
use-inventory-creative-override=false
|
||||
use-inventory-override=false
|
||||
wand-item=minecraft\:wooden_axe
|
||||
16
config/wotr-client.toml
Normal file
16
config/wotr-client.toml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# == Wotr Client Configs ==
|
||||
[" == Accessibility == "]
|
||||
# Whether flashing-light effects should be disabled
|
||||
accessibilityFlashingLights = false
|
||||
# Whether Spiders should be replaced with something else
|
||||
accessibilityArachnophobia = false
|
||||
# Whether certain sounds should be replaced with something else
|
||||
accessibilityMisophonia = false
|
||||
# Whether certain textures should be replaced with something else
|
||||
accessibilityTrypophobia = false
|
||||
# Whether GUI & HUD elements should be replaced with higher contrast for better visibility
|
||||
accessibilityHighContrast = false
|
||||
# Whether motion should be reduced
|
||||
accessibilityReducedMotion = false
|
||||
# Whether certain sounds should be upped
|
||||
accessibilityHardOfHearing = false
|
||||
10
config/wotr-common.toml
Normal file
10
config/wotr-common.toml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#Whether to log the dirt block on common setup
|
||||
logDirtBlock = true
|
||||
#A magic number
|
||||
# Default: 42
|
||||
# Range: > 0
|
||||
magicNumber = 42
|
||||
#What you want the introduction message to be for the magic number
|
||||
magicNumberIntroduction = "The magic number is... "
|
||||
#A list of items to log on common setup.
|
||||
items = ["minecraft:iron_ingot"]
|
||||
3
config/yacl.json5
Normal file
3
config/yacl.json5
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
showColorPickerIndicator: true
|
||||
}
|
||||
217
index.toml
217
index.toml
|
|
@ -1,5 +1,209 @@
|
|||
hash-format = "sha256"
|
||||
|
||||
[[files]]
|
||||
file = "config/MouseTweaks.cfg"
|
||||
hash = "4069ce1a439d8c37453c1b1e9f2037e0942674c7e48723a39b37eab245792ad4"
|
||||
|
||||
[[files]]
|
||||
file = "config/NoChatReports/NCR-Client.json"
|
||||
hash = "edfe78d985fe67dce28104f3d87673e94c89134144451c291ecedcd2e2c3b480"
|
||||
|
||||
[[files]]
|
||||
file = "config/NoChatReports/NCR-Common.json"
|
||||
hash = "0eaad2630bd70ade719f7810e805810ada25379269ea194e43d3eea30c51dec0"
|
||||
|
||||
[[files]]
|
||||
file = "config/NoChatReports/NCR-Encryption.json"
|
||||
hash = "914ff467c04be14074e19741255b5f890db2bc0458554b984b2c02d3674bb824"
|
||||
|
||||
[[files]]
|
||||
file = "config/NoChatReports/NCR-ServerPreferences.json"
|
||||
hash = "df32843b853e0a493ef3a9b1e39276818294353fbb0d833f7f61e77da0f5bca1"
|
||||
|
||||
[[files]]
|
||||
file = "config/NoChatReports/README.md"
|
||||
hash = "c52b76ccad2bd1063a22c7f6bb9e7c5db6b00fb53a6fd605585972ee0e5fc01f"
|
||||
|
||||
[[files]]
|
||||
file = "config/balm-common.toml"
|
||||
hash = "308a6676388aa141743cff3215ea82dc796feaf870b33dca4dc29ede58976f88"
|
||||
|
||||
[[files]]
|
||||
file = "config/betterpingdisplay-client.toml"
|
||||
hash = "e3ea7a04c684bab4eccdf8dfd866cc01d041195fca88ef1dc19e9b0fbe0dc811"
|
||||
|
||||
[[files]]
|
||||
file = "config/buildguide.cfg"
|
||||
hash = "8b1a828af5237616a8c1e2b6c0bbc1cb276675d36bb67990f092b25cb149cfcb"
|
||||
|
||||
[[files]]
|
||||
file = "config/dimensiondelvers-client.toml"
|
||||
hash = "5dd5162cc445e36350d86e26b1fd4d63fb429b0b2c04aa497ff4836ac0c076db"
|
||||
|
||||
[[files]]
|
||||
file = "config/dimensiondelvers-common.toml"
|
||||
hash = "d640c77b9cbb56c6ca4bd3bf4194ad5fa6dd3572cd22934e29c547d9d8942632"
|
||||
|
||||
[[files]]
|
||||
file = "config/dynamic_fps.json"
|
||||
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
|
||||
|
||||
[[files]]
|
||||
file = "config/ferritecore-mixin.toml"
|
||||
hash = "7724615b78b3aada388fe595c05f6a3b9807e069f1aaf70c332e991434c45e57"
|
||||
|
||||
[[files]]
|
||||
file = "config/fml.toml"
|
||||
hash = "cc59fb1039726fda3ab1eb69b06d9b9aebb7496604ea579cfb735bc5377e7825"
|
||||
|
||||
[[files]]
|
||||
file = "config/iris.properties"
|
||||
hash = "425949d9c83583330886d43a85184f0ede08447a07baafb06270724345295cbe"
|
||||
|
||||
[[files]]
|
||||
file = "config/jade/hide-blocks.json"
|
||||
hash = "309df4ae96864c19eae41b646d58497c85a73b1fc3c584e772ef4d5822794baa"
|
||||
|
||||
[[files]]
|
||||
file = "config/jade/hide-entities.json"
|
||||
hash = "3741bb54a4535fb5a00fb0ee1f4386f3dd17834aebdf9e89c21fcd3307109709"
|
||||
|
||||
[[files]]
|
||||
file = "config/jade/jade.json"
|
||||
hash = "061361985387c5022feb4236eb063bc2ad3b6158950c013dec32858523ff4877"
|
||||
|
||||
[[files]]
|
||||
file = "config/jade/profiles/1/jade.json"
|
||||
hash = "03fc833a72815029d335d658775d42bdffd9556e2c84bd3c6da63edce5dfa1f7"
|
||||
|
||||
[[files]]
|
||||
file = "config/jade/profiles/2/jade.json"
|
||||
hash = "03fc833a72815029d335d658775d42bdffd9556e2c84bd3c6da63edce5dfa1f7"
|
||||
|
||||
[[files]]
|
||||
file = "config/jade/profiles/3/jade.json"
|
||||
hash = "03fc833a72815029d335d658775d42bdffd9556e2c84bd3c6da63edce5dfa1f7"
|
||||
|
||||
[[files]]
|
||||
file = "config/jade/server-plugin-overrides.json"
|
||||
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
|
||||
|
||||
[[files]]
|
||||
file = "config/jade/sort-order.json"
|
||||
hash = "b94c8ca17f4c17acbec35255ee7fbe4856894293942ca2dc016e06ec21b1ac20"
|
||||
|
||||
[[files]]
|
||||
file = "config/jade/usernamecache.json"
|
||||
hash = "6f23bcb4865fff3a16fd6e4d25940f9c33da0759d4f684326fdd2211aaf202a0"
|
||||
|
||||
[[files]]
|
||||
file = "config/lithium.properties"
|
||||
hash = "6cf6f83720071fd1657c8e79b357caf68d40f410ae123e5f922483eb1d1d25be"
|
||||
|
||||
[[files]]
|
||||
file = "config/modernfix-common.toml"
|
||||
hash = "ee24e2b1bc100942a1c605f996255742cd6a5bb3662877aa906bc301100ccf27"
|
||||
|
||||
[[files]]
|
||||
file = "config/modernfix-mixins.properties"
|
||||
hash = "499c5a27abd39bd650d69880d193eb7698084aea3eaec47f42c8405a3dcea5f4"
|
||||
|
||||
[[files]]
|
||||
file = "config/moreculling.toml"
|
||||
hash = "73764ebefe1f74419175db5220de1e5e562b666048c8a0651b6b172029b2e6b8"
|
||||
|
||||
[[files]]
|
||||
file = "config/neoforge-client.toml"
|
||||
hash = "f26ef03aa0cf7b754cd56aac5410928e659e6e1afc46188b64ef639432f19672"
|
||||
|
||||
[[files]]
|
||||
file = "config/neoforge-common.toml"
|
||||
hash = "e6f7578cf8c11ade0a47e36bf3863fc96f84cdf4bb679c0fceabb1e8a2f42399"
|
||||
|
||||
[[files]]
|
||||
file = "config/neoforge-server.toml"
|
||||
hash = "0f1415d7fef6d7f6194275501d500b633dd3310aea40d64128edd1b096372f60"
|
||||
|
||||
[[files]]
|
||||
file = "config/roughlyenoughitems/collapsible.json5"
|
||||
hash = "a59667baa54738c1b294393a9b3652bcf7d392cdb8cba1c08a8006885b18e919"
|
||||
|
||||
[[files]]
|
||||
file = "config/roughlyenoughitems/config.json5"
|
||||
hash = "90376f75e0315d20f90ba33e1d55f17debd330537b70121d6491f0c8b6d75083"
|
||||
|
||||
[[files]]
|
||||
file = "config/roughlyenoughitems/favorites.json5"
|
||||
hash = "5900dfc6559a03b01fcdc9ac77d9e153a9a60775babfd88af93f2a4d5bde8b48"
|
||||
|
||||
[[files]]
|
||||
file = "config/roughlyenoughitems/hints.json"
|
||||
hash = "4004b7bcf811d99ac7c986c19485b1154c4803afa3d6ae28016b37475a204c12"
|
||||
|
||||
[[files]]
|
||||
file = "config/roughlyenoughitems/pinyin.properties"
|
||||
hash = "a63f63f4e52a2b95fe1ffe36b19fa490b6e07885c4ea9c73ab4cb3748df0c48d"
|
||||
|
||||
[[files]]
|
||||
file = "config/roughlyenoughitems/pinyin_double.properties"
|
||||
hash = "988ec3ac14778a15238ff1fec3ada142bf17e6e29905077040f3e7f3a276270b"
|
||||
|
||||
[[files]]
|
||||
file = "config/sodium-extra-options.json"
|
||||
hash = "f614f1e1ebf5e598068f456ec333e6417b9836ffbc94e386aa0a434319734da9"
|
||||
|
||||
[[files]]
|
||||
file = "config/sodium-extra.properties"
|
||||
hash = "a2f1b47c1eaa119ab34727f1d43c2506cb3d7f17ba8fb4efb49e20c8e0b58e70"
|
||||
|
||||
[[files]]
|
||||
file = "config/sodium-fingerprint.json"
|
||||
hash = "b423ba3d5be5743acff8b5cc1e30b90bb1c813ae0cdd1bd7b863f587e3e5892b"
|
||||
|
||||
[[files]]
|
||||
file = "config/sodium-mixins.properties"
|
||||
hash = "b627c4456e6fa0bc4b5f85e2f1cd949faedae3cb9afdaf2a5f52e6f3b6ae1f01"
|
||||
|
||||
[[files]]
|
||||
file = "config/sodium-options.json"
|
||||
hash = "be255ff4587feee964e11feba338d417485c7d26e4e7881f00eea2762fe9b7ca"
|
||||
|
||||
[[files]]
|
||||
file = "config/spark/config.json"
|
||||
hash = "992ba9f3a4a7ce3de112eb95575328956fdc3ce6781c455ebce7b23db7e7da42"
|
||||
|
||||
[[files]]
|
||||
file = "config/spark/tmp-client/about.txt"
|
||||
hash = "d7514c0ddb6ae8611a281527bf04ca6cbcea1fa21758534fdcd08ed0f51c19c0"
|
||||
|
||||
[[files]]
|
||||
file = "config/spark/tmp/about.txt"
|
||||
hash = "d7514c0ddb6ae8611a281527bf04ca6cbcea1fa21758534fdcd08ed0f51c19c0"
|
||||
|
||||
[[files]]
|
||||
file = "config/trashslot-common.toml"
|
||||
hash = "d9785c78d5b178b65f331a53b8c014c26d70a92887060aee5d390f37ae7d9ea3"
|
||||
|
||||
[[files]]
|
||||
file = "config/wands.json"
|
||||
hash = "73b3a4d3f8c0fb2d1dfaf361bc184c68ca78e6943d54f334d71527cbaf881255"
|
||||
|
||||
[[files]]
|
||||
file = "config/worldedit/worldedit.properties"
|
||||
hash = "24ff50d93e26171d693fd400a69f7772ba421ac859bf568e74d02e7e8d095401"
|
||||
|
||||
[[files]]
|
||||
file = "config/wotr-client.toml"
|
||||
hash = "9969e45824b4cce659913c901b2c1901f3962969c1f0573855df0de0c8e72769"
|
||||
|
||||
[[files]]
|
||||
file = "config/wotr-common.toml"
|
||||
hash = "4502bef407cdfb04f45ac1da3516bdc52014420e80fbc44b195ff061332cd953"
|
||||
|
||||
[[files]]
|
||||
file = "config/yacl.json5"
|
||||
hash = "d26a63d3cdf326412ba86dcc2781060bc53ed6c74ac7808e65325452e264e820"
|
||||
|
||||
[[files]]
|
||||
file = "mods/architectury-api.pw.toml"
|
||||
hash = "688669b332c5211778958da2cd58d38661b221a4af0283ee3441e1c22daa5c5b"
|
||||
|
|
@ -130,7 +334,20 @@ file = "mods/worldedit.pw.toml"
|
|||
hash = "27d8566cfd4ee1f34979f92b22dbd2d205f30f8190329c5335425c951ca9f0f9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/wotr.pw.toml"
|
||||
hash = "97366a6a6abf81855504a9fcf3b0f4a7a0c7b9e92fd741384fe29595baf31879"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/zume.pw.toml"
|
||||
hash = "434ac58bf0c398eb06d03856a3de1edf30aba72ff11ac953bda99e34132c0376"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "options.txt"
|
||||
hash = "2603b0b74055e686c72fd6dc6f92bc6ab32c9c4ccb249ae7755af1a7cc78df8e"
|
||||
|
||||
[[files]]
|
||||
file = "servers.dat"
|
||||
hash = "b8a44299410a45db70b1f9698b50a3da53708c5e8760331b431af6f04373e6aa"
|
||||
|
|
|
|||
11
mods/wotr.pw.toml
Normal file
11
mods/wotr.pw.toml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
name = "Wanderers of the Rift"
|
||||
filename = "wotr-0.0.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://github.com/radimous/wotr-buildpack/releases/download/2025-09-04_1/wotr-0.0.2.jar"
|
||||
|
||||
# A number of tools can generate the hash for you, including 7-zip and sha256sum
|
||||
# packwiz supports a number of hashes, including sha256, sha512, sha1 and md5
|
||||
hash-format = "sha256"
|
||||
hash = "119672102c29c4f9ad3fcff427cdd747b013f769ad9e478c6451a54654f5d2fe"
|
||||
188
options.txt
Normal file
188
options.txt
Normal file
|
|
@ -0,0 +1,188 @@
|
|||
version:4189
|
||||
ao:true
|
||||
biomeBlendRadius:2
|
||||
enableVsync:true
|
||||
entityDistanceScaling:1.0
|
||||
entityShadows:true
|
||||
forceUnicodeFont:false
|
||||
japaneseGlyphVariants:false
|
||||
fov:0.0
|
||||
fovEffectScale:1.0
|
||||
darknessEffectScale:1.0
|
||||
glintSpeed:0.5
|
||||
glintStrength:0.75
|
||||
prioritizeChunkUpdates:0
|
||||
fullscreen:true
|
||||
gamma:0.5
|
||||
graphicsMode:1
|
||||
guiScale:2
|
||||
maxFps:120
|
||||
inactivityFpsLimit:"afk"
|
||||
mipmapLevels:4
|
||||
narrator:0
|
||||
particles:0
|
||||
reducedDebugInfo:false
|
||||
renderClouds:"true"
|
||||
renderDistance:12
|
||||
simulationDistance:12
|
||||
screenEffectScale:1.0
|
||||
soundDevice:""
|
||||
autoJump:false
|
||||
rotateWithMinecart:false
|
||||
operatorItemsTab:true
|
||||
autoSuggestions:true
|
||||
chatColors:true
|
||||
chatLinks:true
|
||||
chatLinksPrompt:true
|
||||
discrete_mouse_scroll:false
|
||||
invertYMouse:false
|
||||
realmsNotifications:true
|
||||
showSubtitles:false
|
||||
directionalAudio:false
|
||||
touchscreen:false
|
||||
bobView:true
|
||||
toggleCrouch:false
|
||||
toggleSprint:false
|
||||
darkMojangStudiosBackground:false
|
||||
hideLightningFlashes:false
|
||||
hideSplashTexts:false
|
||||
mouseSensitivity:0.5
|
||||
damageTiltStrength:1.0
|
||||
highContrast:false
|
||||
highContrastBlockOutline:false
|
||||
narratorHotkey:true
|
||||
resourcePacks:[]
|
||||
incompatibleResourcePacks:[]
|
||||
lastServer:129.146.116.159
|
||||
lang:en_us
|
||||
chatVisibility:0
|
||||
chatOpacity:1.0
|
||||
chatLineSpacing:0.0
|
||||
textBackgroundOpacity:0.5
|
||||
backgroundForChatOnly:true
|
||||
hideServerAddress:false
|
||||
advancedItemTooltips:false
|
||||
pauseOnLostFocus:true
|
||||
overrideWidth:0
|
||||
overrideHeight:0
|
||||
chatHeightFocused:1.0
|
||||
chatDelay:0.0
|
||||
chatHeightUnfocused:0.4375
|
||||
chatScale:1.0
|
||||
chatWidth:1.0
|
||||
notificationDisplayTime:1.0
|
||||
useNativeTransport:true
|
||||
mainHand:"right"
|
||||
attackIndicator:1
|
||||
tutorialStep:none
|
||||
mouseWheelSensitivity:1.0
|
||||
rawMouseInput:true
|
||||
glDebugVerbosity:1
|
||||
skipMultiplayerWarning:true
|
||||
hideMatchedNames:true
|
||||
joinedFirstServer:true
|
||||
syncChunkWrites:false
|
||||
showAutosaveIndicator:true
|
||||
allowServerListing:true
|
||||
onlyShowSecureChat:false
|
||||
panoramaScrollSpeed:1.0
|
||||
telemetryOptInExtra:false
|
||||
onboardAccessibility:false
|
||||
menuBackgroundBlurriness:5
|
||||
key_key.attack:key.mouse.left
|
||||
key_key.use:key.mouse.right
|
||||
key_key.forward:key.keyboard.w
|
||||
key_key.left:key.keyboard.a
|
||||
key_key.back:key.keyboard.s
|
||||
key_key.right:key.keyboard.d
|
||||
key_key.jump:key.keyboard.space
|
||||
key_key.sneak:key.keyboard.left.shift
|
||||
key_key.sprint:key.keyboard.left.control
|
||||
key_key.drop:key.keyboard.q
|
||||
key_key.inventory:key.keyboard.e
|
||||
key_key.chat:key.keyboard.t
|
||||
key_key.playerlist:key.keyboard.tab
|
||||
key_key.pickItem:key.mouse.middle
|
||||
key_key.command:key.keyboard.slash
|
||||
key_key.socialInteractions:key.keyboard.p
|
||||
key_key.screenshot:key.keyboard.f2
|
||||
key_key.togglePerspective:key.keyboard.f5
|
||||
key_key.smoothCamera:key.keyboard.unknown
|
||||
key_key.fullscreen:key.keyboard.f11
|
||||
key_key.spectatorOutlines:key.keyboard.unknown
|
||||
key_key.swapOffhand:key.keyboard.f
|
||||
key_key.saveToolbarActivator:key.keyboard.c
|
||||
key_key.loadToolbarActivator:key.keyboard.x
|
||||
key_key.advancements:key.keyboard.l
|
||||
key_key.hotbar.1:key.keyboard.1
|
||||
key_key.hotbar.2:key.keyboard.2
|
||||
key_key.hotbar.3:key.keyboard.3
|
||||
key_key.hotbar.4:key.keyboard.4
|
||||
key_key.hotbar.5:key.keyboard.5
|
||||
key_key.hotbar.6:key.keyboard.6
|
||||
key_key.hotbar.7:key.keyboard.7
|
||||
key_key.hotbar.8:key.keyboard.8
|
||||
key_key.hotbar.9:key.keyboard.9
|
||||
key_key.buildguide.openbuildguide:key.keyboard.b
|
||||
key_key.buildguide.toggleenable:key.keyboard.unknown
|
||||
key_key.buildguide.setorigin:key.keyboard.unknown
|
||||
key_key.buildguide.setglobalorigin:key.keyboard.unknown
|
||||
key_key.trashslot.toggle:key.keyboard.t
|
||||
key_key.trashslot.toggle_lock:key.keyboard.unknown
|
||||
key_key.trashslot.delete:key.keyboard.delete
|
||||
key_key.trashslot.delete_all:key.keyboard.delete:SHIFT
|
||||
key_key.jade.config:key.keyboard.keypad.0
|
||||
key_key.jade.show_overlay:key.keyboard.keypad.1
|
||||
key_key.jade.toggle_liquid:key.keyboard.keypad.2
|
||||
key_key.jade.narrate:key.keyboard.keypad.5
|
||||
key_key.jade.show_details:key.keyboard.left.shift
|
||||
key_key.jade.profile.0:key.keyboard.unknown
|
||||
key_key.jade.profile.1:key.keyboard.unknown
|
||||
key_key.jade.profile.2:key.keyboard.unknown
|
||||
key_key.jade.profile.3:key.keyboard.unknown
|
||||
key_key.modernfix.config:key.keyboard.unknown
|
||||
key_key.wotr:jigsaw_name_toggle:key.mouse.5
|
||||
key_iris.keybind.reload:key.keyboard.r
|
||||
key_iris.keybind.toggleShaders:key.keyboard.k
|
||||
key_iris.keybind.shaderPackSelection:key.keyboard.o
|
||||
key_iris.keybind.wireframe:key.keyboard.unknown
|
||||
key_zume.zoom:key.keyboard.z
|
||||
key_zume.zoom_in:key.keyboard.equal
|
||||
key_zume.zoom_out:key.keyboard.minus
|
||||
key_key.wands.m_inc:key.keyboard.right
|
||||
key_key.wands.wand_palette_mode:key.keyboard.p
|
||||
key_key.wands.wand_rotate:key.keyboard.r
|
||||
key_key.wands.wand_orientation:key.keyboard.x
|
||||
key_key.wands.toggle_stair_slab:key.keyboard.period
|
||||
key_key.wands.n_inc:key.keyboard.up
|
||||
key_key.wands.wand_menu:key.keyboard.y
|
||||
key_key.wands.area_diagonal_spread:key.keyboard.comma
|
||||
key_key.wands.wand_action:key.keyboard.h
|
||||
key_key.wands.wand_invert:key.keyboard.i
|
||||
key_key.wands.wand_undo:key.keyboard.u
|
||||
key_key.wands.clear_wand:key.keyboard.c
|
||||
key_key.wands.wand_fill_circle:key.keyboard.k
|
||||
key_key.wands.inc_sel_block:key.keyboard.z
|
||||
key_key.wands.m_dec:key.keyboard.left
|
||||
key_key.wands.palette_menu:key.keyboard.j
|
||||
key_key.wands.n_dec:key.keyboard.down
|
||||
key_key.wands.wand_mode:key.keyboard.v
|
||||
key_key.dynamic_fps.toggle_forced:key.keyboard.unknown
|
||||
key_key.dynamic_fps.toggle_disabled:key.keyboard.unknown
|
||||
soundCategory_master:0.0
|
||||
soundCategory_music:1.0
|
||||
soundCategory_record:1.0
|
||||
soundCategory_weather:1.0
|
||||
soundCategory_block:1.0
|
||||
soundCategory_hostile:1.0
|
||||
soundCategory_neutral:1.0
|
||||
soundCategory_player:1.0
|
||||
soundCategory_ambient:1.0
|
||||
soundCategory_voice:1.0
|
||||
modelPart_cape:false
|
||||
modelPart_jacket:true
|
||||
modelPart_left_sleeve:true
|
||||
modelPart_right_sleeve:true
|
||||
modelPart_left_pants_leg:true
|
||||
modelPart_right_pants_leg:true
|
||||
modelPart_hat:true
|
||||
|
|
@ -5,7 +5,7 @@ pack-format = "packwiz:1.1.0"
|
|||
[index]
|
||||
file = "index.toml"
|
||||
hash-format = "sha256"
|
||||
hash = "dc75fa8fffdb8edcbdf068a68a0ff16b95ca816fe957f52b5eacd4021205cb2b"
|
||||
hash = "67efa83d0d04b87a43750fc75a97f1bb08ff31d5fd932b5967e0d28c841f56a5"
|
||||
|
||||
[versions]
|
||||
minecraft = "1.21.4"
|
||||
|
|
|
|||
BIN
servers.dat
Normal file
BIN
servers.dat
Normal file
Binary file not shown.
BIN
wotr-buildpack-unsup.zip
Normal file
BIN
wotr-buildpack-unsup.zip
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue