From cdf246bff811bb8d16c9bdb5e9284141481e6c5c Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sun, 16 Jun 2019 14:13:05 +0100 Subject: [PATCH] Add //yy and //nn to detailed descriptions --- README.md | 34 ++++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5e066d0..5f481ce 100644 --- a/README.md +++ b/README.md @@ -8,17 +8,17 @@ If you can dream of it, it probably belongs here! ## Current commands: **Quick Reference:** - - `//floodfill [ []]` - - `//overlay ` - - `//ellipsoid ` - - `//hollowellipsoid ` - - `//torus ` - - `//hollowtorus ` - - `//multi .....` - - `//yy` - - `//nn` + - [`//floodfill [ []]`](#floodfill-replace_node-radius-floodfill) + - [`//overlay `](#overlay-node_name) + - [`//ellipsoid `](#ellipsoid-rx-ry-rz-node_name) + - [`//hollowellipsoid `](#hollowellipsoid-rx-ry-rz-node_name) + - [`//torus `](#torus-major_radius-minor_radius-node_name) + - [`//hollowtorus `](#hollowtorus-major_radius-minor_radius-node_name) + - [`//multi .....`](#multi-command_a-command_b-command_c-) + - [`//yy`](#yy) + - [`//nn`](#nn) -### `//floodfill [ []]` {#floodfill} +### `//floodfill [ []]` Floods all connected nodes of the same type starting at _pos1_ with (which defaults to `water_source`), in a sphere with a radius of (which defaults to 50). ``` @@ -82,6 +82,20 @@ Executes multi chat commands in sequence. Intended for _WorldEdit_ commands, but //multi /time 7:00 //1 outset h 20 //outset v 5 //overlay dirt_with_grass //1 //sphere 8 air //shift down 1 //floodfill //reset ``` +### `//yy` +Confirms the execution of a command if it could potentially affect a large number of nodes and take a while. Equivalent to _WorldEdit_'s `//y`, but because of security sandboxing issues it's not really possible to hook into WorldEdit's existing command. + +``` +//yy +``` + +### `//nn` +Prevents the execution of a command if it could potentially affect a large number of nodes and take a while. Equivalent to _WorldEdit_'s `//y`, but because of security sandboxing issues it's not really possible to hook into WorldEdit's existing command. + +``` +//nn +``` + ## Contributing Contributions are welcome! Please state in your pull request(s) that you release your contribution under the _Mozilla Public License 2.0_.