From ab0226f74d138594bb1f0cc2c55a9c94244473ae Mon Sep 17 00:00:00 2001 From: Mqrius Date: Sat, 13 Dec 2025 19:22:44 +0100 Subject: [PATCH] Don't backup DistantHorizons LODs (#2406) Exclude "DistantHorizons.sqlite" from ftbbackups2 since that's not critical data and leads to a lot of backup bloat. Signed-off-by: Mqrius --- config/ftbbackups2.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/ftbbackups2.json b/config/ftbbackups2.json index fb96a0bd6..32efe057c 100644 --- a/config/ftbbackups2.json +++ b/config/ftbbackups2.json @@ -65,7 +65,7 @@ *path/ends/with.txt Any files who's path ends with *path/contains* Any files who's path contains */ - "excluded": [], + "excluded": ["DistantHorizons.sqlite"], // 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 +}