diff options
author | Anthony Zhang <azhang9@gmail.com> | 2012-10-21 17:49:43 -0400 |
---|---|---|
committer | Anthony Zhang <azhang9@gmail.com> | 2012-10-21 17:49:43 -0400 |
commit | aa4a70d237db22b587d46a50a21d1a71a445874e (patch) | |
tree | 042d48b7a83e28e41d25f03b481d6c08a56c373d /Chat Commands.md | |
parent | 5f598db3e6ef1f30cdba9cda4b2e0f32c658de16 (diff) |
Rename //find to //highlight and worldedit.find to worldedit.highlight, add //allocate and worldedit.allocate as well as related documentation. Improve documentation by fixing a few mistakes and adding return signatures.
Diffstat (limited to 'Chat Commands.md')
-rw-r--r-- | Chat Commands.md | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/Chat Commands.md b/Chat Commands.md index 8e8da96..b90318b 100644 --- a/Chat Commands.md +++ b/Chat Commands.md @@ -182,13 +182,13 @@ Suppress all <node> in the current WorldEdit region non-destructively. //suppress default:glass
//suppress mesecons:mesecon
-### //find <node>
+### //highlight <node>
-Find <node> in the current WorldEdit region by hiding everything else non-destructively.
+Highlight <node> in the current WorldEdit region by hiding everything else non-destructively.
- //find dirt
- //find default:glass
- //find mesecons:mesecon
+ //highlight dirt
+ //highlight default:glass
+ //highlight mesecons:mesecon
### //restore
@@ -203,6 +203,13 @@ Save the current WorldEdit region to "(world folder)/schems/<file>.we". //save some random filename
//save huge_base
+### //allocate <file>
+
+Set the region defined by nodes from "(world folder)/schems/<file>.we" as the current WorldEdit region.
+
+ //allocate some random filename
+ //allocate huge_base
+
### //load <file>
Load nodes from "(world folder)/schems/<file>.we" with position 1 of the current WorldEdit region as the origin.
|