You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/usage/general/masks.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ The second type of region mask is ``#dregion`` (d for dynamic, also ``#dsel``, `
92
92
Block Category Mask
93
93
-------------------
94
94
95
-
Block categories, or `tags <https://minecraft.gamepedia.com/Tag>`_ can also be used as masks. A category mask will match any block that is in that category. Just like the pattern, the syntax is `##<tag>`.
95
+
Block categories, or `tags <https://minecraft.wiki/w/Tag>`_ can also be used as masks. A category mask will match any block that is in that category. Just like the pattern, the syntax is `##<tag>`.
96
96
97
97
.. topic:: Example: Block Category Masks
98
98
@@ -136,7 +136,7 @@ This mask can evaluate a mathematical expression upon each block. The mask start
136
136
Biome Mask
137
137
----------
138
138
139
-
The biome mask matches blocks with the given biome. Its syntax is ``$<biome id>``. The biome ID must be the `namespaced id <https://minecraft.gamepedia.com/Java_Edition_data_values#Biomes>`_, with `minecraft:` being optional for vanilla biomes, and mod ids being required for mod-added biomes.
139
+
The biome mask matches blocks with the given biome. Its syntax is ``$<biome id>``. The biome ID must be the `namespaced id <https://minecraft.wiki/w/Java_Edition_data_values#Biomes>`_, with `minecraft:` being optional for vanilla biomes, and mod ids being required for mod-added biomes.
Copy file name to clipboardExpand all lines: source/usage/general/patterns.rst
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ Available Patterns
18
18
Single Block Pattern
19
19
--------------------
20
20
21
-
The most basic pattern of just a single block. A block is identified by two parts: the `block type <https://minecraft.gamepedia.com/Java_Edition_data_values#IDs>`_, and additional `block states <https://minecraft.gamepedia.com/Block_states>`_. These two links to the Minecraft Wiki, along with WorldEdit's in-built tab-completion for commands, should guide you in specifying the block you want. Additional states are always appended to the type using the syntax ``block_type[state1=value,state2=value,...]``. Note that when states are not specified, or if some are left out, the default values will be used for those states.
21
+
The most basic pattern of just a single block. A block is identified by two parts: the `block type <https://minecraft.wiki/w/Java_Edition_data_values#IDs>`_, and additional `block states <https://minecraft.gamepedia.com/Block_states>`_. These two links to the Minecraft Wiki, along with WorldEdit's in-built tab-completion for commands, should guide you in specifying the block you want. Additional states are always appended to the type using the syntax ``block_type[state1=value,state2=value,...]``. Note that when states are not specified, or if some are left out, the default values will be used for those states.
22
22
23
23
.. topic:: Example: Single block patterns
24
24
@@ -114,7 +114,7 @@ This pattern, prefixed by ``^``, lets you set the type or states of a block with
114
114
Block Category Pattern
115
115
----------------------
116
116
117
-
This pattern allows setting random blocks within a block category, often referred to as a "`tag <https://minecraft.gamepedia.com/Tag>`_". Tags allow grouping blocks together under a single name. Minecraft comes with many tags inbuilt (see the link) and also allows creating and modifying tags via data packs. You may already have noticed these tags being used as a :ref:`mask <usage/general/masks:Block category mask>` in the example above (``##slabs``).
117
+
This pattern allows setting random blocks within a block category, often referred to as a "`tag <https://minecraft.wiki/w/Tag>`_". Tags allow grouping blocks together under a single name. Minecraft comes with many tags inbuilt (see the link) and also allows creating and modifying tags via data packs. You may already have noticed these tags being used as a :ref:`mask <usage/general/masks:Block category mask>` in the example above (``##slabs``).
118
118
119
119
The syntax for this pattern is ``##<tag name>``, which will randomly choose between the default state of all blocks in the category. You can also mix this with the random state pattern (``##*<tag name>``) to use all states, not just the defaults.
120
120
@@ -162,7 +162,7 @@ You can set the skin of a player head by specifying a username after the pipe sy
162
162
Mob Spawners
163
163
------------
164
164
165
-
You can set the type of mob to be spawned (again via the pipe symbol). Note that the name of the mob must be an `entity ID <https://minecraft.gamepedia.com/Java_Edition_data_values#Entities>`_. Prefixing `minecraft:` is optional, modded mobs must have a namespace.
165
+
You can set the type of mob to be spawned (again via the pipe symbol). Note that the name of the mob must be an `entity ID <https://minecraft.wiki/w/Java_Edition_data_values#Entities>`_. Prefixing `minecraft:` is optional, modded mobs must have a namespace.
Copy file name to clipboardExpand all lines: source/usage/regions/regionops.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -189,7 +189,7 @@ By default, coordinates are normalized from -1 to 1 on each axis, from the min t
189
189
Setting Biomes
190
190
--------------
191
191
192
-
While WorldEdit mostly focuses on manipulating blocks, the ``//setbiome <biome>`` command allows you to set the biome in your selection. The biome type should be specifed by `biome id <https://minecraft.gamepedia.com/Biome#Biome_IDs>`_. If you are using a biome added by a mod, the ``namespace:`` must prefix the id, e.g. ``minecraft:plains``.
192
+
While WorldEdit mostly focuses on manipulating blocks, the ``//setbiome <biome>`` command allows you to set the biome in your selection. The biome type should be specifed by `biome id <https://minecraft.wiki/w/Biome#Biome_IDs>`_. If you are using a biome added by a mod, the ``namespace:`` must prefix the id, e.g. ``minecraft:plains``.
193
193
194
194
.. note:: WorldEdit supports Minecraft's 3D biomes since 7.2, on 1.15 and above. This means that for the most part, the biome will be set
195
195
inside your selection only, even in the Y direction. Unfortunately, Mojang made biomes 4x4x4 cubes instead of
0 commit comments