18 lines
337 B
Lua
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
|