diff --git a/config/ambientsounds-client.json b/config/ambientsounds-client.json index e4b34ec14..d27f1706a 100644 --- a/config/ambientsounds-client.json +++ b/config/ambientsounds-client.json @@ -128,6 +128,10 @@ "ocean": 1, "wind.light-wind": 1 }, + "ocean_deep": { + "overall": 1, + "whale": 1 + }, "plains": { "overall": 1, "cricket": 1, @@ -145,6 +149,7 @@ "cicadas-desert": 1, "cricket-warm-night": 1, "wolf": 1, + "long-wolf": 1, "bird-warm": 1 }, "sky": { @@ -171,7 +176,8 @@ "overall": 1, "cricket-swamp": 1, "cricket-warm-night": 1, - "frog": 1 + "frog": 1, + "mouring_dove": 1 }, "taiga": { "overall": 1, @@ -200,9 +206,11 @@ "bird_night": 1 }, "cicadas": 1, - "cricket": 1, - "cricket_day": 1, - "cricket_night": 1 + "cricket": { + "cricket": 1, + "cricket_day": 1, + "cricket_night": 1 + } }, "cave": 1, "weather": 1, diff --git a/config/chat_heads.json5 b/config/chat_heads.json5 index 0f74fb24e..e1d42f383 100644 --- a/config/chat_heads.json5 +++ b/config/chat_heads.json5 @@ -1,4 +1,5 @@ { + "renderPosition": "BEFORE_NAME", "offsetNonPlayerText": true, "senderDetection": "UUID_AND_HEURISTIC", "smartHeuristics": true, diff --git a/config/craftpresence.json b/config/craftpresence.json index 03d50191c..e1289566c 100644 --- a/config/craftpresence.json +++ b/config/craftpresence.json @@ -14,7 +14,6 @@ "clientId": "1182610212121743470", "defaultIcon": "tfg-icon", "enableJoinRequests": false, - "partyPrivacyLevel": 1, "preferredClientLevel": 3, "resetTimeOnInit": false, "autoRegister": false @@ -103,62 +102,19 @@ "enableClassGraph": false }, "accessibilitySettings": { - "tooltipBackground": { - "start": { - "red": 16, - "green": 0, - "blue": 16, - "alpha": 240 - } - }, - "tooltipBorder": { - "start": { - "red": 80, - "green": 0, - "blue": 255, - "alpha": 80 - }, - "end": { - "red": 40, - "green": 0, - "blue": 127, - "alpha": 80 - } - }, - "guiBackground": { - "start": { - "red": 64, - "green": 64, - "blue": 64, - "alpha": 255 - }, - "texLocation": "minecraft:textures/gui/options_background.png" - }, - "altGuiBackground": { - "start": { - "red": 16, - "green": 16, - "blue": 16, - "alpha": 192 - }, - "end": { - "red": 16, - "green": 16, - "blue": 16, - "alpha": 208 - } - }, "languageId": "en_us", "stripTranslationColors": false, "stripTranslationFormatting": false, "stripExtraGuiElements": false, - "renderTooltips": true, "configKeyCode": -1 }, "displaySettings": { "presenceData": { "enabled": true, "useAsMain": false, + "isInstance": false, + "activityType": 0, + "partyPrivacy": 1, "details": "{getFirst(menu.message, dimension.message)}", "gameState": "{getOrDefault(server.message)} {getOrDefault(pack.name)}", "largeImageKey": "{getFirst(menu.icon, dimension.icon)}", diff --git a/config/ftbbackups2.json b/config/ftbbackups2.json new file mode 100644 index 000000000..0e872ef20 --- /dev/null +++ b/config/ftbbackups2.json @@ -0,0 +1,71 @@ +{ + // Allow the creation of backups automatically + "enabled": true, + // Permission level to use the /backup command + "command_permission_level": 3, + // Only send backup status to server ops + "notify_op_only": true, + // Don't send backup status at all + "do_not_notify": false, + /* Backup retention mode. Valid Modes: MAX_BACKUPS, TIERED + Note: TIERED mode is an experimental feature, Use at your own risk. + */ + "retention_mode": "MAX_BACKUPS", + // Applies to retention_mode:MAX_BACKUPS, Sets the maximum number of backups to keep + "max_backups": 5, + // Applies to retention_mode:TIERED, The latest x number of backups will be retained + "keep_latest": 5, + // Applies to retention_mode:TIERED, Sets number of hourly backups to keep + "keep_hourly": 1, + // Applies to retention_mode:TIERED, Sets number of daily backups to keep + "keep_daily": 1, + // Applies to retention_mode:TIERED, Sets number of weekly backups to keep + "keep_weekly": 1, + // Applies to retention_mode:TIERED, Sets number of monthly backups to keep + "keep_monthly": 1, + /* This is done with an implementation of cron from the Quartz java library. + More info here + (http://www.cronmaker.com) + */ + "backup_cron": "0 */30 * * * ?", + // Time between manual backups using the command + "manual_backups_time": 0, + // Only run a backup if a player has been online since the last backup + "only_if_players_been_online": true, + // Additional directories to include in backup + "additional_directories": [], + /* Additional files and directories to include in backup. + Can specify a file name, path relative to server directory or wildcard file path + Examples: (All file paths are relative to server root) + fileName.txt Any/all file named "fileName.txt" + folder/file.txt Exact file path + folder/ Everything in this folder + path/starts/with* Any files who's path starts with + *path/ends/with.txt Any files who's path ends with + *path/contains* Any files who's path contains + */ + "additional_files": [], + // Display file size in backup message + "display_file_size": false, + // backup location + "backup_location": ".", + // Specify the backup format. Valid options are ZIP and DIRECTORY + "backup_format": "ZIP", + // Minimum free disk space in MB. If a backup's creation would leave less than this amount of disk space remaining, the backup will be aborted. + "minimum_free_space": 0, + // If the previous backup failed due to lack of space, the oldest backup will be deleted to free space. + "free_space_if_needed": false, + /* Specify files or folders to be excluded. + Can specify a file name, path relative to server directory or wildcard file path + Examples: (All file paths are relative to server root) + fileName.txt Any/all file named "fileName.txt" + folder/file.txt Exact file path + folder/ Everything in this folder + path/starts/with* Any files who's path starts with + *path/ends/with.txt Any files who's path ends with + *path/contains* Any files who's path contains + */ + "excluded": [], + // The dimension used when creating backup preview image, specify "all" to enable automatic detection of primary dimension (can be very slow) + "preview_dimension": "minecraft:overworld" +} \ No newline at end of file diff --git a/config/itemphysiclite-client.json b/config/itemphysiclite-client.json index d23585694..dd54ca96f 100644 --- a/config/itemphysiclite-client.json +++ b/config/itemphysiclite-client.json @@ -1,3 +1,14 @@ { - "rotateSpeed": 1.0 + "rotateSpeed": 1.0, + "blockRequireOffset": { + "blocks": [ + "minecraft:snow", + "minecraft:soul_sand" + ], + "tags": [] + }, + "blockBelowRequireOffset": { + "blocks": [], + "tags": [] + } } \ No newline at end of file diff --git a/config/nerb.yaml b/config/nerb.yaml new file mode 100644 index 000000000..2ead48095 --- /dev/null +++ b/config/nerb.yaml @@ -0,0 +1,6 @@ +# Recipe Book mode: +# DISABLED: Removes the recipe book button with its default functionality from your inventory. +# ENABLED: Retains the recipe book button in your inventory, but its default functionality remains disabled. +# DISCOVERED: Automatically unlocks all existing recipes in your recipe book. Does not apply any optimizations. +# TOGGLE: Keeps the recipe book button in your inventory, but instead of toggling the recipe book, it toggles the visibility of the JEI/REI/EMI UI. Its default functionality remains disabled. +buttonMode: TOGGLE diff --git a/config/packetfixer.properties b/config/packetfixer.properties index b52932142..9f72e0286 100644 --- a/config/packetfixer.properties +++ b/config/packetfixer.properties @@ -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. -#Fri Jul 05 04:36:29 YEKT 2024 +#Mon Sep 30 21:59:36 YEKT 2024 nbtMaxSize=209715200 decoderSize=838860800 packetSize=104857600 diff --git a/config/xaerominimap-common.txt b/config/xaerominimap-common.txt index b36023c03..34539faa2 100644 --- a/config/xaerominimap-common.txt +++ b/config/xaerominimap-common.txt @@ -2,3 +2,4 @@ allowCaveModeOnServer:true allowNetherCaveModeOnServer:true allowRadarOnServer:true registerStatusEffects:true +everyoneTracksEveryone:false diff --git a/config/xaeroworldmap-common.txt b/config/xaeroworldmap-common.txt index c4becb0ec..0caae0c64 100644 --- a/config/xaeroworldmap-common.txt +++ b/config/xaeroworldmap-common.txt @@ -1,3 +1,4 @@ allowCaveModeOnServer:true allowNetherCaveModeOnServer:true registerStatusEffects:true +everyoneTracksEveryone:false