landsandboat/scripts/commands/reloadrecipes.lua
2025-01-16 14:05:30 +00:00

18 lines
337 B
Lua

-----------------------------------
-- func: reloadrecipes
-- desc: Reloads crafting recipes from the DB
-----------------------------------
---@type TCommand
local commandObj = {}
commandObj.cmdprops =
{
permission = 5,
parameters = ''
}
commandObj.onTrigger = function(player)
ReloadSynthRecipes()
end
return commandObj