mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 13:53:03 +00:00
df2af2df7d
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
22 lines
1 KiB
Lua
22 lines
1 KiB
Lua
local wea = worldeditadditions
|
|
local wea_c = worldeditadditions_core
|
|
local Vector3 = wea_c.Vector3
|
|
|
|
|
|
-- ███████ ███████ █████ ██████ ████████ ██████ ██████
|
|
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
-- ███████ █████ ███████ ██ ██ ██ ██ ██████
|
|
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
-- ███████ ██ ██ ██ ██████ ██ ██████ ██ ██
|
|
worldeditadditions_core.register_command("sfactor", {
|
|
params = "None",
|
|
description = "DEPRECATED: please use //grow or //shrink instead.",
|
|
|
|
privs = { worldedit = true },
|
|
parse = function(params_text)
|
|
return params_text
|
|
end,
|
|
func = function(name, paramtext)
|
|
return false, "DEPRECATED: please use //grow or //shrink instead..."
|
|
end
|
|
})
|