-
Notifications
You must be signed in to change notification settings - Fork 148
Commands
Saves the region between the fromXYZ and toXYZ points to filename
.
Display a list of all schematics inside the player's folder.
Deletes a schematic from the player's folder. This is an internal command and you shouldn't have to use it manually.
Download a schematic from the remote server. This is a server only command and will not be available in single player.
Replaces all blocks matching pattern
with the replacement
block.
<block_name>[<property1>=<value1>,<property2>=<value2>,<property3>=<value3>,...]
The block_name
is mandatory for both types, while the properties are optional.
The pattern matches all block states of a given block by default. Properties can be used to narrow down the selection to specific block types (blue glass, south facing stairs, ...).
The replacement selector is actually used to override the default and copied properties. It works as follows:
- Create a block state using the default block state of the specified
block_name
. - Copy all properties that the
pattern
andreplacement
blocks have in common (color
,axis
,direction
etc) to the new state. - Override all properties of the new block state using the properties of the
replacement
argument.
# replace dirt with iron blocks
/schematicaReplace dirt iron_block
# replace blue glass with blue hardened clay
/schematicaReplace glass[color=blue] hardened_clay