1
0
Fork 0

Fix chatcommand not under mcl_structures in /help

This commit is contained in:
cora 2022-06-15 04:48:26 +02:00
parent 726d1f07fa
commit 92da429f50
1 changed files with 66 additions and 67 deletions

View File

@ -573,16 +573,9 @@ end
dofile(modpath.."/api.lua")
minetest.register_on_mods_loaded(function()
-- Debug command
local chatcommand_params = "desert_temple | desert_well | igloo | witch_hut | boulder | ice_spike_small | ice_spike_large | fossil | end_exit_portal | end_exit_portal_open | end_gateway_portal | end_portal_shrine | nether_portal | dungeon"
for n,_ in pairs(mcl_structures.registered_structures) do
chatcommand_params = chatcommand_params .. " | "..n
end
minetest.register_chatcommand("spawnstruct", {
params = chatcommand_params,
params = "desert_temple | desert_well | igloo | witch_hut | boulder | ice_spike_small | ice_spike_large | fossil | end_exit_portal | end_exit_portal_open | end_gateway_portal | end_portal_shrine | nether_portal | dungeon",
description = S("Generate a pre-defined structure near your position."),
privs = {debug = true},
func = function(name, param)
@ -643,4 +636,10 @@ minetest.register_on_mods_loaded(function()
end
end
})
minetest.register_on_mods_loaded(function()
local p = ""
for n,_ in pairs(mcl_structures.registered_structures) do
p = p .. " | "..n
end
minetest.registered_chatcommands["spawnstruct"].params = minetest.registered_chatcommands["spawnstruct"].params .. p
end)