mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 05:43:01 +00:00
params modification for UAK
This commit is contained in:
parent
a31e34f420
commit
1a18d4c8d0
4 changed files with 4 additions and 4 deletions
|
@ -11,7 +11,7 @@ local Vector3 = wea_c.Vector3
|
||||||
|
|
||||||
|
|
||||||
worldeditadditions_core.register_command("sgrow", {
|
worldeditadditions_core.register_command("sgrow", {
|
||||||
params = "[<axis1>] <length1> [[<axis2>] <length2> [...]]",
|
params = "<Unified Axis Keywords>",
|
||||||
description = "Grow selection region",
|
description = "Grow selection region",
|
||||||
privs = { worldedit = true },
|
privs = { worldedit = true },
|
||||||
require_pos = 0,
|
require_pos = 0,
|
||||||
|
|
|
@ -11,7 +11,7 @@ local Vector3 = wea_c.Vector3
|
||||||
|
|
||||||
|
|
||||||
worldeditadditions_core.register_command("srel", {
|
worldeditadditions_core.register_command("srel", {
|
||||||
params = "[<axis1>] <length1> [[<axis2>] <length2> [...]]",
|
params = "<Unified Axis Keywords>",
|
||||||
description = "Set WorldEdit region position 2 relative to position 1 and player facing.",
|
description = "Set WorldEdit region position 2 relative to position 1 and player facing.",
|
||||||
privs = { worldedit = true },
|
privs = { worldedit = true },
|
||||||
require_pos = 0,
|
require_pos = 0,
|
||||||
|
|
|
@ -8,7 +8,7 @@ local Vector3 = worldeditadditions.Vector3
|
||||||
-- ███████ ███████ ██ ██ ██ ██ ██
|
-- ███████ ███████ ██ ██ ██ ██ ██
|
||||||
|
|
||||||
worldeditadditions_core.register_command("sshift", {
|
worldeditadditions_core.register_command("sshift", {
|
||||||
params = "[<axis1>] <distance1> [[<axis2>] <distance2> [...]]",
|
params = "<Unified Axis Keywords>",
|
||||||
description = "Shift the WorldEdit region in 3 dimensions.",
|
description = "Shift the WorldEdit region in 3 dimensions.",
|
||||||
privs = { worldedit = true },
|
privs = { worldedit = true },
|
||||||
require_pos = 2,
|
require_pos = 2,
|
||||||
|
|
|
@ -11,7 +11,7 @@ local Vector3 = wea_c.Vector3
|
||||||
|
|
||||||
|
|
||||||
worldeditadditions_core.register_command("sshrink", {
|
worldeditadditions_core.register_command("sshrink", {
|
||||||
params = "[<axis1>] <length1> [[<axis2>] <length2> [...]]",
|
params = "<Unified Axis Keywords>",
|
||||||
description = "Shrink selection region",
|
description = "Shrink selection region",
|
||||||
privs = { worldedit = true },
|
privs = { worldedit = true },
|
||||||
require_pos = 0,
|
require_pos = 0,
|
||||||
|
|
Loading…
Reference in a new issue