diff options
author | Anthony Zhang <azhang9@gmail.com> | 2013-01-12 18:29:57 -0500 |
---|---|---|
committer | Anthony Zhang <azhang9@gmail.com> | 2013-01-12 18:29:57 -0500 |
commit | 7cf84045d4dea9727f9db5e5de9a6524fc4ef1af (patch) | |
tree | 7fc04acbd62ca3cc8f0cea758818de2346359a21 /Chat Commands.md | |
parent | e2f1c4ef174443b2807aa94a209261546bbf19fb (diff) |
Replace //homogenize with //replaceinverse (//homogenize x is equivalent to //replaceinverse air x), add documentation for it.
Diffstat (limited to 'Chat Commands.md')
-rw-r--r-- | Chat Commands.md | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Chat Commands.md b/Chat Commands.md index 23920a4..9e9ccae 100644 --- a/Chat Commands.md +++ b/Chat Commands.md @@ -51,13 +51,22 @@ Set the current WorldEdit region to <node>. ### //replace <search node> <replace node>
-Replace all instances of <search node> with <place node> in the current WorldEdit region.
+Replace all instances of <search node> with <replace node> in the current WorldEdit region.
//replace cobble stone
//replace default:steelblock glass
//replace dirt flowers:flower_waterlily
//replace flowers:flower_rose flowers:flower_tulip
+### //replaceinverse <search node> <replace node>
+
+Replace all nodes other than <search node> with <replace node> in the current WorldEdit region.
+
+ //replaceinverse air stone
+ //replaceinverse water_source default:dirt
+ //replaceinverse mesecons:mesecon air
+ //replaceinverse default:steelblock default:glass
+
### //hollowsphere <radius> <node>
Add hollow sphere at WorldEdit position 1 with radius <radius>, composed of <node>.
|