From 13eb4338e3e27b072725b6d32a5c6677377625a1 Mon Sep 17 00:00:00 2001 From: NullBite Date: Thu, 2 Nov 2023 16:25:47 -0400 Subject: [PATCH] Disable double trapdoors in DoubleDoors mod --- config/yosbr/config/doubledoors.json5 | 13 +++++++++++++ index.toml | 4 ++++ pack.toml | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 config/yosbr/config/doubledoors.json5 diff --git a/config/yosbr/config/doubledoors.json5 b/config/yosbr/config/doubledoors.json5 new file mode 100644 index 0000000..022e28d --- /dev/null +++ b/config/yosbr/config/doubledoors.json5 @@ -0,0 +1,13 @@ +{ + // Whether the recursive opening feature should be enabled. This allows you to for example build a giant door with trapdoors which will all open at the same time, as long as they are connected. The 'recursiveOpeningMaxBlocksDistance' config option determines how far the function should search. + "enableRecursiveOpening": true, + // How many blocks the recursive function should search when 'enableRecursiveOpening' is enabled. + // min: 1, max: 64 + "recursiveOpeningMaxBlocksDistance": 10, + // When enables, the mod works with double doors. + "enableDoors": true, + // When enables, the mod works with double fence gates. + "enableFenceGates": true, + // When enables, the mod works with double trapdoors. + "enableTrapdoors": false +} diff --git a/index.toml b/index.toml index 15ee9c1..0d91444 100644 --- a/index.toml +++ b/index.toml @@ -12,6 +12,10 @@ hash = "f5931fa810e46cf080715fe862132aded028984f89c80f293ef66ee34856e6a5" file = "config/yosbr/config/capes.json5" hash = "b0e11760190870b23a50e68018a3792e6ad3929302bb2917db21268a20f858af" +[[files]] +file = "config/yosbr/config/doubledoors.json5" +hash = "c499be02b3bda95064ad3791a6018b7d4d07d351cd429bf0397a3f710d06c36c" + [[files]] file = "config/yosbr/config/figura.json" hash = "b6842d4f8da21a23a32b70c584ba495d6311b5c7e2a8a79b5f7d4ee2a048016b" diff --git a/pack.toml b/pack.toml index 78b4391..25d7d76 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "59ac3e388cc4caf0b6d7b9ee17e3045f5ae927f237cfa80a3818bd233c5883c8" +hash = "ef7d0e111b0f8fa9be2c6856f814b09a9b66a02e89b3ad7206568d4a88066161" [versions] minecraft = "1.20.1"