2022-05-19 21:50:53 +00:00
|
|
|
local wea_c = worldeditadditions_core
|
2022-05-16 19:33:04 +00:00
|
|
|
|
2022-05-23 23:11:22 +00:00
|
|
|
|
2022-05-19 21:50:53 +00:00
|
|
|
wea_c.register_alias("smoothadv", "convolve")
|
|
|
|
wea_c.register_alias("conv", "convolve")
|
2022-05-16 19:33:04 +00:00
|
|
|
|
2022-05-19 21:50:53 +00:00
|
|
|
wea_c.register_alias("naturalise", "layers")
|
|
|
|
wea_c.register_alias("naturalize", "layers")
|
|
|
|
|
2023-12-13 22:15:27 +00:00
|
|
|
if wea_c.command_exists("/bonemeal") then
|
|
|
|
-- No need to log here, since we notify the server admin in the server logs in the dofile() for the main //bonemeal command
|
|
|
|
wea_c.register_alias("flora", "bonemeal")
|
|
|
|
end
|
2022-05-16 19:33:04 +00:00
|
|
|
|
|
|
|
-- Measure Tools
|
2022-05-19 21:50:53 +00:00
|
|
|
wea_c.register_alias("mcount", "count")
|
|
|
|
wea_c.register_alias("mfacing", "mface")
|
2022-05-16 20:21:15 +00:00
|
|
|
|
|
|
|
|
2023-07-10 20:12:54 +00:00
|
|
|
--- Overrides to core WorldEdit commands that have been thoroughly tested
|
|
|
|
-- These are now enabled by default, but if you find a bug please report and
|
|
|
|
-- it will be fixed as a matter of priority.
|
|
|
|
wea_c.register_alias("copy", "copy+", true)
|
|
|
|
wea_c.register_alias("move", "move+", true)
|
|
|
|
|
2022-05-16 20:21:15 +00:00
|
|
|
--- Overrides to core WorldEdit commands
|
2022-05-24 01:24:43 +00:00
|
|
|
-- These are disabled by default for now, as they could be potentially dangerous to stability
|
|
|
|
-- Thorough testing is required of our replacement commands before these are enabled by default
|
|
|
|
local worldmt_settings = Settings(minetest.get_worldpath().."/world.mt")
|
|
|
|
local should_override = worldmt_settings:get_bool("worldeditadditions_override_commands", false)
|
|
|
|
if should_override then
|
|
|
|
minetest.log("info", "[WorldEditAdditions] Enabling override aliases")
|
2022-09-18 16:59:57 +00:00
|
|
|
wea_c.register_alias("replace", "replacemix", true)
|
2022-05-23 23:11:22 +00:00
|
|
|
end
|