Skip to content

Commit

Permalink
tested: stable enough
Browse files Browse the repository at this point in the history
  • Loading branch information
VorTechnix committed Sep 13, 2024
1 parent 23aae69 commit 981bdc2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion worldeditadditions_commands/commands/selectors/sgrow.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ worldeditadditions_core.register_command("sgrow", {
require_pos = 0,
parse = function(params_text)
local ret = wea_c.split(params_text)
if #ret < 1 then return false, "SREL: No params found!"
if #ret < 1 then return false, "SGROW: No params found!"
else return true, ret end
end,
func = function(name, params_text)
Expand Down
4 changes: 2 additions & 2 deletions worldeditadditions_commands/commands/selectors/sshrink.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ local Vector3 = wea_c.Vector3
-- ███████ ███████ ██ ██ ██ ██ ██ ██ ████ ██ ██


worldeditadditions_core.register_command("shrink", {
worldeditadditions_core.register_command("sshrink", {
params = "[<axis1>] <length1> [[<axis2>] <length2> [...]]",
description = "Shrink selection region",
privs = { worldedit = true },
require_pos = 0,
parse = function(params_text)
local ret = wea_c.split(params_text)
if #ret < 1 then return false, "SREL: No params found!"
if #ret < 1 then return false, "SSHRINK: No params found!"
else return true, ret end
end,
func = function(name, params_text)
Expand Down

0 comments on commit 981bdc2

Please sign in to comment.