Description condition merging

This commit is contained in:
2023-05-22 16:06:15 -06:00
parent 112e39c7fd
commit c8ae0f291f
3 changed files with 4 additions and 4 deletions

View File

@@ -462,7 +462,7 @@ const handleCommand = async interaction => {
for(let [ key, value ] of Object.entries(optionDice)) {
if(value)
dice[key] = value
dice[key] = Array.isArray(value) ? value.concat(dice[key]) : value
}
}