Merge branch 'VorTechnix' of https://github.com/sbrl/Minetest-WorldEditAdditions into VorTechnix

This commit is contained in:
VorTechnix 2021-07-15 14:09:16 -07:00
commit c1bfb496b5
4 changed files with 6 additions and 5 deletions

View File

@ -784,11 +784,12 @@ Pops a selection off your per-user selection stack and applies it to the current
Alias for [`//count`](#count).
```
//mface
//mcount
```
## `//mface`
Returns the horizontal (X/Z) axis or axes the player is looking along.
Aliases: `//mfacing`.
```
//mface
@ -809,7 +810,7 @@ Returns the lengths of the current selection on the X, Y and Z axes.
```
## `//mtrig`
Returns the length of the diagonal pos1,pos2 and it's angle on the XZ and h/Y axes.
Returns the length of the diagonal from pos1 to pos2 and its angle on the XZ (horizontal) and Y (vertical) axes.
```
//mtrig

View File

@ -14,7 +14,7 @@ worldedit.register_command("mtrig", {
return true
end,
func = function(name, params_text)
local str = "The measurements of the line pos1,pos2 are Length (D): "
local str = "The measurements of the line from pos1 to pos2 are Length (D): "
local vec = v3.subtract(worldedit.pos2[name],worldedit.pos1[name]):abs()
local len = vec:length()
str = str..wea.round(len, 4)..", ∠XZ: "..

View File

@ -10,7 +10,7 @@ local we_c = worldeditadditions_core
we_c.modpath = minetest.get_modpath("worldeditadditions_core")
-- Initialze WorldEdit stuff if the WorldEdit mod is not present
-- Initialise WorldEdit stuff if the WorldEdit mod is not present
if not minetest.get_modpath("worldedit") then
dofile(we_c.modpath.."/worldedit/init.lua")
end

View File

@ -5,7 +5,7 @@ function worldeditadditions_core.register_command(def)
def.require_pos = def.require_pos or 0
assert(def.require_pos >= 0 and def.require_pos < 3)
if def.params == "" and not def.parse then
def.parse = function(param) return true end
def.parse = function(params_text) return true end
else
assert(def.parse)
end