121
Some checks failed
Build Archlinux-Base Image / base (push) Failing after 39s

This commit is contained in:
azw
2024-09-13 20:16:32 +08:00
parent 5802c4f0b7
commit 46bda2302f
44 changed files with 772 additions and 571 deletions

View File

@@ -9,7 +9,7 @@
"useTerminalUseLargeFont": false,
"useColoredCraftingStatus": true,
"PowerUnit_comment": "Power unit shown in AE UIs",
"PowerUnit": "tr",
"PowerUnit": "ae",
"showDebugGuiOverlays_comment": "Show debugging GUI overlays",
"showDebugGuiOverlays": false,
"showPlacementPreview_comment": "Show a preview of part and facade placement",
@@ -22,7 +22,7 @@
"terminalMargin": 25
},
"terminals": {
"terminalStyle": "full",
"terminalStyle": "small",
"pinAutoCraftedItems_comment": "Pin items that the player auto-crafts to the top of the terminal",
"pinAutoCraftedItems": true
},
@@ -30,11 +30,11 @@
"searchModNameInTooltips_comment": "Should the mod name be included when searching in tooltips.",
"searchModNameInTooltips": false,
"useExternalSearch_comment": "Replaces AEs own search with the search of REI or JEI",
"useExternalSearch": true,
"useExternalSearch": false,
"clearExternalSearchOnOpen_comment": "When using useExternalSearch, clears the search when the terminal opens",
"clearExternalSearchOnOpen": true,
"syncWithExternalSearch_comment": "When REI/JEI is installed, automatically set the AE or REI/JEI search text when either is changed while the terminal is open",
"syncWithExternalSearch": false,
"syncWithExternalSearch": true,
"rememberLastSearch_comment": "Remembers the last search term and restores it when the terminal opens",
"rememberLastSearch": true,
"autoFocusSearch_comment": "Automatically focuses the search field when the terminal opens",

View File

@@ -1,3 +0,0 @@
#Client side configuration for CC:C Bridge
#Sun Sep 01 21:31:19 CST 2024
flickering=false

View File

@@ -1,5 +1,5 @@
{
"config.version": 2.302,
"config.version": 2.304,
"general.ChatTools.Enabled": true,
"general.ShowWelcomeMessageEnabled": false,
"general.Timestamp.Enabled": true,
@@ -9,6 +9,10 @@
"general.RestoreMessages.SplitLineEnabled": true,
"general.NickHider.Enabled": false,
"general.NickHider.Nickname": "\u00266You\u0026r",
"general.NickHider.CacheSize": 200.0,
"general.ChatCompactor.Enabled": false,
"general.ChatCompactor.UseStrict": false,
"general.ChatCompactor.MaxOccurrence": 100.0,
"general.ChatHistoryNavigator.Enabled": true,
"general.PreviewClickEvents.Enabled": false,
"general.Translator.Enabled": false,

View File

@@ -1,12 +0,0 @@
#The delay in seconds after which we'll notify about unhandled imports. Set to 0 to disable.
#Range: 0 ~ 60
upload_nag_delay = 5
#The renderer to use for monitors. Generally this should be kept at "best" - if
#monitors have performance issues, you may wish to experiment with alternative
#renderers.
#Allowed Values: BEST, TBO, VBO
monitor_renderer = "BEST"
#The maximum distance monitors will render at. This defaults to the standard tile
#entity limit, but may be extended if you wish to build larger monitors.
#Range: 16 ~ 1024
monitor_distance = 64

View File

@@ -0,0 +1,13 @@
#configapi client configuration
#If this is false and you are hovering over a list, inside the ConfigScreen, the entries will NOT be highlighted.
EntriesAreHighlighted = true
#This happens only in ConfigTypeSelectionScreen. If false, then the Titles, like Client Configurations do not appear.
ConfigTypeTitles = false
#Changes the color of the key (name) inside the Tooltip
#Allowed Values: [BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE, OBFUSCATED, BOLD, STRIKETHROUGH, UNDERLINE, ITALIC, RESET]
KeyTooltipColor = YELLOW
#This changes the colors of Range and Allowed Values
#Allowed Values: [BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE, OBFUSCATED, BOLD, STRIKETHROUGH, UNDERLINE, ITALIC, RESET]
PossibleValuesTooltipColor = GREEN

View File

@@ -0,0 +1,88 @@
#configapi common configuration
AConfigWithoutAComment = true
#This is a Config without a category!
WithoutCategoryConfig = true
#A Comment for the Category ConfigValuesOf
[ConfigValuesOf]
#Only for ModLoaders: Forge, NeoForge
#A Config Value of Boolean
ConfigValueOfBoolean = true
#Only for ModLoaders:
#A Config Value of Character
ConfigValueOfCharacter = A
#A Config Value of String
ConfigValueOfString = DefaultValue
#A Config Value of Enum
#Second Comment
#Third Comment
#Allowed Values: [BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE, OBFUSCATED, BOLD, STRIKETHROUGH, UNDERLINE, ITALIC, RESET]
ConfigValueOfEnum = AQUA
#A Config Value List of Boolean
ConfigValueListOfBoolean = [true, false]
#A Config Value List of Double
ConfigValueListOfDouble = [0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0]
#A Config Value of Integer without a Range
ConfigValueOfIntegerWithoutRange = 10
#A Config Value of Integer with a Range
#Range: 0 ~ 20
ConfigValueOfIntegerWithRange = 10
#A Comment for the Category NumberValuesOf
[ConfigValuesOf.NumberValuesOf]
#A Number Value of Byte
#Range: -128 ~ 127
NumberValueOfByte = 3
#A Number Value of Short
#Range: -32768 ~ 32767
NumberValueOfShort = 10
#A Number Value of Integer
#Range: -2147483648 ~ 2147483647
NumberValueOfInteger = 10
#A Number Value of Long
#Range: -9223372036854775808 ~ 9223372036854775807
NumberValueOfLong = 10
#A Number Value of Float
#Range: 1.4E-45 ~ 3.4028235E38
NumberValueOfFloat = 10.0
#A Number Value of Double
#Range: 4.9E-324 ~ 1.7976931348623157E308
NumberValueOfDouble = 10.0
#A Comment for the Category Direct Config
[ConfigValuesOf.Direct Config]
#Requires Client Restart
BooleanValue = true
#Requires Client Restart
CharacterValue = A
#Requires Client Restart
StringValue = DefaultValueForStringValue
#Requires Client Restart
#Allowed Values: [BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE, OBFUSCATED, BOLD, STRIKETHROUGH, UNDERLINE, ITALIC, RESET]
EnumValue = GOLD
#Requires Client Restart
ListValueOfBoolean = [true, false, true, false, true, false]
#Requires Client Restart
ListValueOfInteger = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
[ConfigValuesOf.Direct Config.NumberValues]
#Requires World Restart
#Range: 0 ~ 10
ByteValue = 1
#Requires World Restart
#Range: 2 ~ 12
ShortValue = 5
#Requires World Restart
#Range: -20 ~ 100
IntegerValue = 10
#Requires World Restart
#Range: -1000 ~ 1000
LongValue = 100
#Requires World Restart
#Range: 0.0 ~ 100.0
FloatValue = 22.2
#Requires World Restart
#Range: 0.0 ~ 100.0
DoubleValue = 25.0

View File

@@ -1,5 +1,5 @@
#Indigo properties file
#Sat Sep 07 05:30:57 CST 2024
#Fri Sep 13 19:44:30 CST 2024
always-tesselate-blocks=auto
ambient-occlusion-mode=hybrid
debug-compare-lighting=auto

View File

@@ -1,22 +0,0 @@
# Replace the blockstate neighbor table
replaceNeighborLookup = true
# Do not store the properties of a state explicitly and read themfrom the replace neighbor table instead. Requires replaceNeighborLookup to be enabled
replacePropertyMap = true
# Cache the predicate instances used in multipart models
cacheMultipartPredicates = true
# Avoid creation of new strings when creating ModelResourceLocations
modelResourceLocations = true
# Do not create a new MultipartBakedModel instance for each block state using the same multipartmodel. Requires cacheMultipartPredicates to be enabled
multipartDeduplication = true
# Deduplicate cached data for blockstates, most importantly collision and render shapes
blockstateCacheDeduplication = true
# Deduplicate vertex data of baked quads in the basic model implementations
bakedQuadDeduplication = true
# Use smaller data structures for "simple" models, especially models with few side-specific faces
modelSides = true
# Replace objects used to detect multi-threaded access to chunks by a much smaller field. This option is disabled by default due to very rare and very hard-to-reproduce crashes, use at your own risk!
useSmallThreadingDetector = false
# Use a slightly more compact, but also slightly slower representation for block states
compactFastMap = false
# Populate the neighbor table used by vanilla. Enabling this slightly increases memory usage, but can help with issues in the rare case where mods access it directly.
populateNeighborTable = false

View File

@@ -1,4 +1,4 @@
#Indium properties file
#Sat Sep 07 05:30:57 CST 2024
#Fri Sep 13 19:44:30 CST 2024
always-tesselate-blocks=auto
ambient-occlusion-mode=auto

View File

@@ -1,5 +1,5 @@
#This file stores configuration options for Iris, such as the currently active shaderpack
#Sat Sep 07 05:31:00 CST 2024
#Fri Sep 13 19:44:31 CST 2024
colorSpace=SRGB
disableUpdateMessage=false
enableDebugOptions=false

View File

@@ -1,13 +1,3 @@
{
"681ec534-db63-302e-a4b1-03682b275ddd": "azw",
"a68c7e36-e2ee-3be7-be26-e21bb8ac4654": "Azw_TLSN",
"8667ba71-b85a-4004-af54-457a9734eed7": "Steve",
"81aa1b8b-265e-3e9e-bcda-1e2b7e056e65": "wurenwenxu",
"9cb6a52c-55bc-456b-9513-f4cf19cdf9e3": "Steve2",
"baddf096-5404-33bf-89fa-5e39a3ce65c6": "Jinguji_Tamamo",
"cbd93537-21e9-4852-99fc-ff459cc4ce41": "minatoaqua",
"723515d9-1eb1-4fe8-889c-36c7a495a6ea": "qin_taoemmmm",
"c2b68107-bb38-48d0-abde-a9a0b58cc44d": "steve3",
"2da365b3-2c73-3743-8af9-f24d61a6fcbc": "SX",
"717f2e14-db71-3435-8e58-11b7a52a4611": "azwphy"
}

View File

@@ -1,8 +0,0 @@
# This is the configuration file for Lithium.
# This file exists for debugging purposes and should not be configured otherwise.
# Before configuring anything, take a backup of the worlds that will be opened.
#
# You can find information on editing this file and all the available options here:
# https://github.com/jellysquid3/lithium-fabric/wiki/Configuration-File
#
# By default, this file will be empty except for this notice.

View File

@@ -0,0 +1,5 @@
#morecrossbows client configuration
#If, false then the tooltips are disabled. Default is true
CrossbowTooltips = true

View File

@@ -0,0 +1,130 @@
#morecrossbows common configuration
#Requires Client Restart
[Durability]
#Requires Client Restart
#Range: 0 ~ 999999999
CopperCrossbowDurability = 484
#Requires Client Restart
#Range: 0 ~ 999999999
IronCrossbowDurability = 634
#Requires Client Restart
#Range: 0 ~ 999999999
GoldenCrossbowDurability = 666
#Requires Client Restart
#Range: 0 ~ 999999999
EmeraldCrossbowDurability = 1222
#Requires Client Restart
#Range: 0 ~ 999999999
DiamondCrossbowDurability = 1945
#Requires Client Restart
#Range: 0 ~ 999999999
NetheriteCrossbowDurability = 2415
#Requires Client Restart
#Range: 0 ~ 999999999
GildedNetheriteCrossbowDurability = 2555
#Requires Client Restart
#Range: 0 ~ 999999999
EnderiteCrossbowDurability = 2777
#Requires Client Restart
#Range: 0 ~ 999999999
GildedEnderiteCrossbowDurability = 3000
[Bonus Damage]
#Range: 0.0 ~ 9.99999999E8
CopperCrossbowBonusDamage = 0.5
#Range: 0.0 ~ 9.99999999E8
IronCrossbowBonusDamage = 1.0
#Range: 0.0 ~ 9.99999999E8
GoldenCrossbowBonusDamage = 1.5
#Range: 0.0 ~ 9.99999999E8
EmeraldCrossbowBonusDamage = 2.0
#Range: 0.0 ~ 9.99999999E8
DiamondCrossbowBonusDamage = 3.0
#Range: 0.0 ~ 9.99999999E8
NetheriteCrossbowBonusDamage = 4.0
#Range: 0.0 ~ 9.99999999E8
GildedNetheriteCrossbowBonusDamage = 4.5
#Range: 0.0 ~ 9.99999999E8
EnderiteCrossbowBonusDamage = 5.0
#Range: 0.0 ~ 9.99999999E8
GildedEnderiteCrossbowBonusDamage = 5.5
[Speed Multiplier]
#It works like that: Bow Default + Config
#Range: 0 ~ 999999999
CopperCrossbowSpeedMultiplier = 0
#It works like that: Bow Default + Config
#Range: 0 ~ 999999999
IronCrossbowSpeedMultiplier = 0
#It works like that: Bow Default + Config
#Range: 0 ~ 999999999
GoldenCrossbowSpeedMultiplier = 0
#It works like that: Bow Default + Config
#Range: 0 ~ 999999999
EmeraldCrossbowSpeedMultiplier = 0
#It works like that: Bow Default + Config
#Range: 0 ~ 999999999
DiamondCrossbowSpeedMultiplier = 0
#It works like that: Bow Default + Config
#Range: 0 ~ 999999999
NetheriteCrossbowSpeedMultiplier = 0
#It works like that: Bow Default + Config
#Range: 0 ~ 999999999
GildedNetheriteCrossbowSpeedMultiplier = 0
#It works like that: Bow Default + Config
#Range: 0 ~ 999999999
EnderiteCrossbowSpeedMultiplier = 1
#It works like that: Bow Default + Config
#Range: 0 ~ 999999999
GildedEnderiteCrossbowSpeedMultiplier = 1
[Charge Time]
#It works like that: Bow Default - Config
#Range: 0 ~ 10
CopperCrossbowChargeTime = 0
#It works like that: Bow Default - Config
#Range: 0 ~ 20
IronCrossbowChargeTime = 0
#It works like that: Bow Default - Config
#Range: 0 ~ 20
GoldenCrossbowChargeTime = 0
#It works like that: Bow Default - Config
#Range: 0 ~ 20
EmeraldCrossbowChargeTime = 0
#It works like that: Bow Default - Config
#Range: 0 ~ 20
DiamondCrossbowChargeTime = 0
#It works like that: Bow Default - Config
#Range: 0 ~ 20
NetheriteCrossbowChargeTime = 0
#It works like that: Bow Default - Config
#Range: 0 ~ 20
GildedNetheriteCrossbowChargeTime = 2
#It works like that: Bow Default - Config
#Range: 0 ~ 20
EnderiteCrossbowChargeTime = 0
#It works like that: Bow Default - Config
#Range: 0 ~ 20
GildedEnderiteCrossbowChargeTime = 2
[Enchantability]
#Range: 0 ~ 100
CopperCrossbowEnchantability = 1
#Range: 0 ~ 100
IronCrossbowEnchantability = 1
#Range: 0 ~ 100
GoldenCrossbowEnchantability = 5
#Range: 0 ~ 100
EmeraldCrossbowEnchantability = 3
#Range: 0 ~ 100
DiamondCrossbowEnchantability = 3
#Range: 0 ~ 100
NetheriteCrossbowEnchantability = 4
#Range: 0 ~ 100
GildedNetheriteCrossbowEnchantability = 5
#Range: 0 ~ 100
EnderiteCrossbowEnchantability = 5
#Range: 0 ~ 100
GildedEnderiteCrossbowEnchantability = 6

View File

@@ -1,7 +1,7 @@
#Packet Fixer config file.
#Default values (minecraft default): nbtMaxSize 2097152, packetSize 1048576, decoderSize 2097152 and varInt21Size 3.
#Max values are 2147483647 for packetSize/decoderSize/varInt21 and 9223372036854775807 for nbtMaxSize.
#Sat Sep 07 05:30:44 CST 2024
#Fri Sep 13 19:44:14 CST 2024
decoderSize=838860800
nbtMaxSize=209715200
packetSize=104857600

View File

@@ -1,5 +0,0 @@
#Quilt-loader configuration: https://github.com/QuiltMC/quilt-loader/wiki/Configuration-options
#Mon Aug 12 16:40:07 CST 2024
always_show_mod_state_window=false
load_sub_folders=true
restrict_game_versions=true

View File

@@ -1,42 +0,0 @@
[registry_sync]
# Mod protocol is a feature allowing you to prevent clients with mismatched settings to join.
# Client with mismatched values won't be able to connect to servers having this enabled.
# It should be used only for non-vanilla compatible modpacks!
# Protocol version. Needs to be the same on client and server. If it has value of -1, it won't be required by servers.
# default: -1
mod_protocol_version = -1
# Protocol id. It should be different for every modpack, to prevent joining with mismatched mods.
# default: my_quilt_modpack
mod_protocol_id = "my_quilt_modpack"
# A mod protocol name. Used for easier identification. Doesn't effect functionality
# default: My Quilt Modpack
mod_protocol_name = "My Quilt Modpack"
# Message displayed for players joining with clients incompatible with Registry Sync. Supports strings and Minecraft's JSON text format.
# default: {"translate":"qsl.registry_sync.unsupported_client","fallback":"Unsupported (vanilla?) client!\nThis server requires modded client to join!\n"}
missing_registry_sync_message = "{\"translate\":\"qsl.registry_sync.unsupported_client\",\"fallback\":\"Unsupported (vanilla?) client!\\nThis server requires modded client to join!\\n\"}"
# Top part of the message displayed for players joining with incompatible clients. Supports strings and Minecraft's JSON text format.
# default: {"translate":"qsl.registry_sync.failed_sync","fallback":"Failed to synchronize client with the server!\nThis can happen when client's and server's mods don't match.\n"}
mismatched_entries_top_message = "{\"translate\":\"qsl.registry_sync.failed_sync\",\"fallback\":\"Failed to synchronize client with the server!\\nThis can happen when client's and server's mods don't match.\\n\"}"
# Bottom part of the message displayed for players joining with incompatible clients. Supports strings and Minecraft's JSON text format.
# default:
mismatched_entries_bottom_message = ""
# Shows some details about why client couldn't connect.
# default: true
mismatched_entries_show_details = true
# Allows players with Fabric API to connect, as long as they have all required mods.
# default: true
support_fabric_api_protocol = true
# Forces unknown clients to use the Fabric Registry Sync protocol fallback. Disables preventing Vanilla clients from joining.
# default: false
force_fabric_api_protocol_fallback = false
# Disables the Mod Protocol sync on server list/initial query.
# default: false
disable_mod_protocol_ping = false
# Disables the Registry Sync requirement. USE AT YOUR OWN RISK!
# default: false
disable_registry_sync = false
# Disables validation of (block/fluid) states. USE AT YOUR OWN RISK!
# default: false
disable_state_validation = false

View File

@@ -86,9 +86,9 @@
"functionality": {
"inputMethod": "rei:pinyin",
// Declares whether REI should remove the recipe book.
"disableRecipeBook": false,
"disableRecipeBook": true,
// Declares whether mob effects should be on the left side instead of the right side.
"leftSideMobEffects": false,
"leftSideMobEffects": true,
// Declares whether subsets is enabled.
"isSubsetsEnabled": false,
"allowInventoryHighlighting": true,
@@ -159,7 +159,80 @@
"cachingDisplayLookup": true,
"categorySettings": {
"filteringQuickCraftCategories": { },
"categoryOrdering": [],
"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",
"farmersdelight:plugin/cooking",
"farmersdelight:plugin/cutting",
"farmersdelight:plugin/decomposition",
"createbigcannons:melting",
"createbigcannons:cannon_casting",
"createbigcannons:built_up_heating",
"createbigcannons:drill_boring",
"createbigcannons:incomplete_cannon_blocks",
"createaddition:rolling",
"createaddition:charging",
"createaddition:liquid_burning",
"create:milling",
"create:crushing",
"create:pressing",
"create:fan_washing",
"create:fan_smoking",
"create:fan_blasting",
"create:fan_haunting",
"create:mixing",
"create:automatic_shapeless",
"create:automatic_brewing",
"create:packing",
"create:automatic_packing",
"create:sawing",
"create:block_cutting",
"create:wood_cutting",
"create:sandpaper_polishing",
"create:item_application",
"create:deploying",
"create:spout_filling",
"create:draining",
"create:automatic_shaped",
"create:mechanical_crafting",
"create:sequenced_assembly",
"create:mystery_conversion",
"botania:petal_apothecary",
"botania:pure_daisy",
"botania:mana_infusion",
"botania:runic_altar",
"botania:elven_trade",
"botania:brew",
"botania:terra_plate",
"botania:orechid",
"botania:orechid_ignem",
"botania:marimorphosis",
"ae2:item_transformation",
"ae2:condenser",
"ae2:ae2.inscriber",
"ae2:attunement",
"ae2:charger",
"roughlyenoughitems:plugins/information",
"minecraft:plugins/tag"
],
"hiddenCategories": []
}
},
@@ -168,7 +241,8 @@
"shouldFilterDisplays": true,
"filteringRules": [
"{id:\"roughlyenoughitems:manual\",rule:{}}",
"{id:\"roughlyenoughitems:basic\",rule:{}}"
"{id:\"roughlyenoughitems:basic\",rule:{}}",
"{id:\"roughlyenoughitems:hidden_from_recipe_viewers\",rule:{}}"
]
}
}

View File

@@ -1,24 +1,7 @@
{
"favorites": [
"{data:{Count:1b,id:\"minecraft:item_frame\",type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}",
"{data:{Count:1b,id:\"minecraft:iron_sword\",tag:{Damage:0},type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}",
"{data:{Count:1b,id:\"create_enchantment_industry:enchanting_guide\",type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}",
"{data:{Count:1b,id:\"botania:terraform_rod\",type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}",
"{data:{Count:1b,id:\"create:brass_door\",type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}",
"{data:{Count:1b,id:\"railways:fuel_tank\",type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}",
"{data:{Count:1b,id:\"create:placard\",type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}",
"{data:{Count:1b,id:\"create:display_link\",type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}",
"{data:{Count:1b,id:\"railways:track_coupler\",type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}",
"{data:{Count:1b,id:\"create:track_station\",type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}",
"{data:{Count:1b,id:\"create:schematic_table\",type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}",
"{data:{Count:1b,id:\"create:schematicannon\",type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}",
"{data:{Count:1b,id:\"create:empty_schematic\",type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}",
"{data:{Count:1b,id:\"create:schematic_and_quill\",type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}"
"{data:{Count:1b,id:\"morecrossbows:netherite_crossbow\",tag:{Damage:0},type:\"minecraft:item\"},type:\"roughlyenoughitems:entry_stack\"}"
],
"hiddenFavorites": [],
"displays": [
"{DisplayHistoryCategory:\"create:packing\",DisplayHistoryContains:0b,DisplayHistoryUUID:\"6ec78ccf-91fa-42ea-b5f5-c2148f35a39b\"}",
"{DisplayHistoryCategory:\"create:fan_haunting\",DisplayHistoryContains:0b,DisplayHistoryUUID:\"8322dcc0-f561-468c-9058-47e7f8efb657\"}",
"{DisplayHistoryCategory:\"create:spout_filling\",DisplayHistoryContains:0b,DisplayHistoryUUID:\"b8f3d3fa-2afb-4656-bfd5-099fa7cd7fa8\"}"
]
"displays": []
}

View File

@@ -1 +1 @@
{"UUID":"717f2e14db7134358e5811b7a52a4611","shownHints":[]}
{"UUID":"717f2e14db7134358e5811b7a52a4611","shownHints":["text.rei.hint.input.methods"]}

View File

@@ -1,2 +1,2 @@
#Pinyin Options
#Sat Sep 07 05:21:47 CST 2024
#Fri Sep 13 19:50:45 CST 2024

View File

@@ -1,3 +1,3 @@
#Double Pinyin Options
#Sat Sep 07 05:21:47 CST 2024
#Fri Sep 13 19:50:45 CST 2024
Converter=sougou

View File

@@ -1 +1 @@
{"v":1,"s":"d67f9116b027deb8c19d2b0ef43c0902f4e5931e94d49e62543fe51635b7a8a92793c1bfa2c317ce508af2df94b4cc7307818a4330925d5464d970b7d02161f3","u":"510eedf8b8a675ad8408cd65c39e92ac5463605dae4ff275026873c8d8836e34adeabc26437d1df6b025fbf44fc21c73ee754b6ef1bd033c18264ba453569baa","p":"7c03184e6001e650a8cb546410c9d05656f913ec7b445fcb10e53b247734e4e000db0cc458c4d3ef928370300c1c5c80955259116e30b3af4342171cf4316267","t":1723452948}
{"v":1,"s":"04d8ef438a78a5c1df23f3f558f6d7cdb9c0971565ff3888bbf89419eba015eb0119209f4cc3783d2e6f55fa18a5fa16f14365f6f1edcff77c48ad93af3d6483","u":"166471670bf79a3615acce0a1f9cb0eb3eb0a5ec8599e77d652e60812a90dab416f30cab4dc3883e97ace1129a18bff5c20c4d81dc198db37bbd8e32193df178","p":"beafbffcfc8184a6cff05bc4a78b97503c1ce188fad7cdc035e65030c7c3acd6fe9ad5119581b15c02bc07dac856abed240937003e93a330d03cab932e15193a","t":1726224656}

View File

@@ -20,6 +20,6 @@
},
"notifications": {
"has_cleared_donation_button": false,
"has_seen_donation_prompt": true
"has_seen_donation_prompt": false
}
}

View File

@@ -1,5 +1,5 @@
#CONFIG ONLY OPTIONS
ignoreUpdate:376
ignoreUpdate:0
settingsButton:false
allowWrongWorldTeleportation:false
differentiateByServerAddress:true
@@ -126,4 +126,4 @@ 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=true;fromBottom=false;flippedVer=false;flippedHor=false;
module;id=xaerominimap:minimap;active=true;x=0;y=0;centered=false;fromRight=false;fromBottom=false;flippedVer=false;flippedHor=false;

View File

@@ -10,16 +10,16 @@
"name": "gui.xaero_entity_category_root",
"protection": true,
"settingOverrides": {
"displayed": true,
"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,
"dotSize": 2.0,
"renderOverMinimapFrame": 1.0,
"icons": 1.0,
"heightLimit": 20.0,