diff options
author | sfan5 <sfan5@live.de> | 2017-08-31 19:07:51 +0200 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2017-08-31 19:08:10 +0200 |
commit | 870873ad151defd9ed59ddf5e4937a58166704d8 (patch) | |
tree | bdcd6dfd53496a4812528181546cce2b819b0a0f /ChatCommands.md | |
parent | e356f4521c9e4e10ae2ad6a1f8a64543573def2d (diff) |
Add //hollowcube and //cube
closes #143
Diffstat (limited to 'ChatCommands.md')
-rw-r--r-- | ChatCommands.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ChatCommands.md b/ChatCommands.md index 9d3f9d8..2a43c05 100644 --- a/ChatCommands.md +++ b/ChatCommands.md @@ -17,6 +17,7 @@ Many commands also have shorter names that can be typed faster. For example, if | `//s` | `//set` |
| `//r` | `//replace` |
| `//ri` | `//replaceinverse` |
+| `//hcube` | `//hollowcube` |
| `//hspr` | `//hollowsphere` |
| `//spr` | `//sphere` |
| `//hdo` | `//hollowdome` |
@@ -143,6 +144,19 @@ Replace all nodes other than `<search node>` with `<replace node>` in the curren //replaceinverse dirt Bronze Block
//replaceinverse mesecons:wire_00000000_off flowers:flower_tulip
+### `//hollowcube <width> <height> <length> <node>`
+
+Adds a hollow cube with its ground level centered at WorldEdit position 1 with dimensions `<width>` x `<height>` x `<length>`, composed of `<node>`.
+
+ //hollowcube 6 5 6 Diamond Block
+
+### `//cube <width> <height> <length> <node>`
+
+Adds a cube with its ground level centered at WorldEdit position 1 with dimensions `<width>` x `<height>` x `<length>`, composed of `<node>`.
+
+ //cube 6 5 6 Diamond Block
+ //cube 7 2 1 default:cobble
+
### `//hollowsphere <radius> <node>`
Add hollow sphere centered at WorldEdit position 1 with radius `<radius>`, composed of `<node>`.
|