]> git.lizzy.rs Git - worldedit.git/blobdiff - worldedit_commands/init.lua
Clarify the documentation regarding the the positioning of WorldEdit primitives relat...
[worldedit.git] / worldedit_commands / init.lua
index b50198ef692f7a68cdc020d40d0c61091b25a308..d98dc9d27dc1d6b1ebfaadb5a3d2364dd246eb69 100644 (file)
@@ -289,7 +289,7 @@ minetest.register_chatcommand("/replaceinverse", {
 \r
 minetest.register_chatcommand("/hollowsphere", {\r
        params = "<radius> <node>",\r
-       description = "Add hollow sphere at WorldEdit position 1 with radius <radius>, composed of <node>",\r
+       description = "Add hollow sphere centered at WorldEdit position 1 with radius <radius>, composed of <node>",\r
        privs = {worldedit=true},\r
        func = function(name, param)\r
                local pos = worldedit.pos1[name]\r
@@ -320,7 +320,7 @@ minetest.register_chatcommand("/hollowsphere", {
 \r
 minetest.register_chatcommand("/sphere", {\r
        params = "<radius> <node>",\r
-       description = "Add sphere at WorldEdit position 1 with radius <radius>, composed of <node>",\r
+       description = "Add sphere centered at WorldEdit position 1 with radius <radius>, composed of <node>",\r
        privs = {worldedit=true},\r
        func = function(name, param)\r
                local pos = worldedit.pos1[name]\r
@@ -351,7 +351,7 @@ minetest.register_chatcommand("/sphere", {
 \r
 minetest.register_chatcommand("/hollowdome", {\r
        params = "<radius> <node>",\r
-       description = "Add hollow dome at WorldEdit position 1 with radius <radius>, composed of <node>",\r
+       description = "Add hollow dome centered at WorldEdit position 1 with radius <radius>, composed of <node>",\r
        privs = {worldedit=true},\r
        func = function(name, param)\r
                local pos = worldedit.pos1[name]\r
@@ -382,7 +382,7 @@ minetest.register_chatcommand("/hollowdome", {
 \r
 minetest.register_chatcommand("/dome", {\r
        params = "<radius> <node>",\r
-       description = "Add dome at WorldEdit position 1 with radius <radius>, composed of <node>",\r
+       description = "Add dome centered at WorldEdit position 1 with radius <radius>, composed of <node>",\r
        privs = {worldedit=true},\r
        func = function(name, param)\r
                local pos = worldedit.pos1[name]\r
@@ -483,7 +483,7 @@ minetest.register_chatcommand("/cylinder", {
 \r
 minetest.register_chatcommand("/pyramid", {\r
        params = "<height> <node>",\r
-       description = "Add pyramid at WorldEdit position 1 with height <height>, composed of <node>",\r
+       description = "Add pyramid centered at WorldEdit position 1 with height <height>, composed of <node>",\r
        privs = {worldedit=true},\r
        func = function(name, param)\r
                local pos = worldedit.pos1[name]\r
@@ -514,7 +514,7 @@ minetest.register_chatcommand("/pyramid", {
 \r
 minetest.register_chatcommand("/spiral", {\r
        params = "<width> <height> <space> <node>",\r
-       description = "Add spiral at WorldEdit position 1 with width <width>, height <height>, space between walls <space>, composed of <node>",\r
+       description = "Add spiral centered at WorldEdit position 1 with width <width>, height <height>, space between walls <space>, composed of <node>",\r
        privs = {worldedit=true},\r
        func = function(name, param)\r
                local pos = worldedit.pos1[name]\r