From b210a975797b18a803f450541af51a91c6086964 Mon Sep 17 00:00:00 2001 From: Fabrizio La Rosa Date: Mon, 20 Oct 2025 16:03:16 +0200 Subject: [PATCH] Update processor_type to protected_blocks in examples Replaces 'minecraft:block_ignore' with 'minecraft:protected_blocks' in JigsawProcessors examples to reflect correct processor usage. --- .../Content/WorldgenReference/Examples/JigsawProcessors.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/creator/Reference/Content/WorldgenReference/Examples/JigsawProcessors.md b/creator/Reference/Content/WorldgenReference/Examples/JigsawProcessors.md index bdc55b8a2..882338d4f 100644 --- a/creator/Reference/Content/WorldgenReference/Examples/JigsawProcessors.md +++ b/creator/Reference/Content/WorldgenReference/Examples/JigsawProcessors.md @@ -51,7 +51,7 @@ A list of processors of [processor_type](#processor_type) that will be run when "blocks": ["", ...] }, { - "processor_type": "minecraft:block_ignore", + "processor_type": "minecraft:protected_blocks", "value": "" }, { @@ -111,7 +111,7 @@ Specifies which blocks in the world cannot be overridden by this structure. ```json "processors": [ { - "processor_type": "minecraft:block_ignore", + "processor_type": "minecraft:protected_blocks", "value": "" }, ]