mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 23:04:57 +00:00
15 lines
195 B
Lua
15 lines
195 B
Lua
local M = {}
|
|
|
|
function M.assign_bucket(party)
|
|
local size = party.size or 1
|
|
if size >= 4 then
|
|
return "squad"
|
|
end
|
|
if size == 2 then
|
|
return "duo"
|
|
end
|
|
return "solo"
|
|
end
|
|
|
|
return M
|