1
0
mirror of https://github.com/Uberi/Minetest-WorldEdit.git synced 2025-07-14 22:00:28 +02:00

//replace: Addmixed block support

This commit is contained in:
Starbeamrainbowlabs
2018-10-14 21:00:08 +01:00
parent 13499b50d3
commit 1c2efd0153
3 changed files with 128 additions and 29 deletions

View File

@ -134,21 +134,25 @@ Fill the current WorldEdit region with a random mix of `<node1>`, `<node2>`, `..
### `//replace <search node> <replace node>`
Replace all instances of `<search node>` with `<replace node>` in the current WorldEdit region.
Replace all instances of `<search node>` with `<replace node>` in the current WorldEdit region. `<replace_node>` can be in the same format as `//mix`.
//replace Cobblestone air
//replace lightstone_blue glass
//replace dirt Bronze Block
//replace mesecons:wire_00000000_off flowers:flower_tulip
//replace dirt snowblock 5 ice 2
//replace dirt_with_grass sand 10 silver_sand 3 desert_sand
### `//replaceinverse <search node> <replace node>`
Replace all nodes other than `<search node>` with `<replace node>` in the current WorldEdit region.
Replace all nodes other than `<search node>` with `<replace node>` in the current WorldEdit region. `<replace_node>` can be in the same format as `//mix`.
//replaceinverse Cobblestone air
//replaceinverse flowers:flower_waterlily glass
//replaceinverse dirt Bronze Block
//replaceinverse mesecons:wire_00000000_off flowers:flower_tulip
//replaceinverse dirt snowblock 5 ice 2
//replaceinverse dirt_with_grass sand 10 silver_sand 3 desert_sand
### `//hollowcube <width> <height> <length> <node>`