summaryrefslogtreecommitdiff
path: root/worldedit_commands
diff options
context:
space:
mode:
authorAnthony Zhang <azhang9@gmail.com>2013-06-22 23:05:34 -0400
committerAnthony Zhang <azhang9@gmail.com>2013-06-22 23:05:34 -0400
commit58970e7fab96c6d2883ee8c14ee84b07dc8acdfc (patch)
treee72e02b66b5abc05d8c6b2d808369749e50a086d /worldedit_commands
parent7070f81c59afdfce0cb279310b3c02c0864de273 (diff)
Clarify the documentation regarding the the positioning of WorldEdit primitives relative to position 1.
Diffstat (limited to 'worldedit_commands')
-rw-r--r--worldedit_commands/init.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/worldedit_commands/init.lua b/worldedit_commands/init.lua
index b50198e..d98dc9d 100644
--- a/worldedit_commands/init.lua
+++ b/worldedit_commands/init.lua
@@ -289,7 +289,7 @@ minetest.register_chatcommand("/replaceinverse", {
minetest.register_chatcommand("/hollowsphere", {
params = "<radius> <node>",
- description = "Add hollow sphere at WorldEdit position 1 with radius <radius>, composed of <node>",
+ description = "Add hollow sphere centered at WorldEdit position 1 with radius <radius>, composed of <node>",
privs = {worldedit=true},
func = function(name, param)
local pos = worldedit.pos1[name]
@@ -320,7 +320,7 @@ minetest.register_chatcommand("/hollowsphere", {
minetest.register_chatcommand("/sphere", {
params = "<radius> <node>",
- description = "Add sphere at WorldEdit position 1 with radius <radius>, composed of <node>",
+ description = "Add sphere centered at WorldEdit position 1 with radius <radius>, composed of <node>",
privs = {worldedit=true},
func = function(name, param)
local pos = worldedit.pos1[name]
@@ -351,7 +351,7 @@ minetest.register_chatcommand("/sphere", {
minetest.register_chatcommand("/hollowdome", {
params = "<radius> <node>",
- description = "Add hollow dome at WorldEdit position 1 with radius <radius>, composed of <node>",
+ description = "Add hollow dome centered at WorldEdit position 1 with radius <radius>, composed of <node>",
privs = {worldedit=true},
func = function(name, param)
local pos = worldedit.pos1[name]
@@ -382,7 +382,7 @@ minetest.register_chatcommand("/hollowdome", {
minetest.register_chatcommand("/dome", {
params = "<radius> <node>",
- description = "Add dome at WorldEdit position 1 with radius <radius>, composed of <node>",
+ description = "Add dome centered at WorldEdit position 1 with radius <radius>, composed of <node>",
privs = {worldedit=true},
func = function(name, param)
local pos = worldedit.pos1[name]
@@ -483,7 +483,7 @@ minetest.register_chatcommand("/cylinder", {
minetest.register_chatcommand("/pyramid", {
params = "<height> <node>",
- description = "Add pyramid at WorldEdit position 1 with height <height>, composed of <node>",
+ description = "Add pyramid centered at WorldEdit position 1 with height <height>, composed of <node>",
privs = {worldedit=true},
func = function(name, param)
local pos = worldedit.pos1[name]
@@ -514,7 +514,7 @@ minetest.register_chatcommand("/pyramid", {
minetest.register_chatcommand("/spiral", {
params = "<width> <height> <space> <node>",
- description = "Add spiral at WorldEdit position 1 with width <width>, height <height>, space between walls <space>, composed of <node>",
+ description = "Add spiral centered at WorldEdit position 1 with width <width>, height <height>, space between walls <space>, composed of <node>",
privs = {worldedit=true},
func = function(name, param)
local pos = worldedit.pos1[name]