Description condition merging
This commit is contained in:
parent
112e39c7fd
commit
c8ae0f291f
@ -39,8 +39,8 @@ Icon by [Zauromoun](https://www.tumblr.com/zauromoun)
|
||||
- Macro modifiers!
|
||||
> ╭ /eatpant +1
|
||||
> 'you absorb the nutrients of the pant', ` 5 ` ⟵ [4] 1d6 + 1
|
||||
> ╭ /eatpant 2h6+3
|
||||
> 'become pant', ` 9 ` ⟵ [5, 6] 2h6 + 3
|
||||
> ╭ /eatpant 2h6+3; nirvana:
|
||||
> 'nirvana:', 'become pant', ` 9 ` ⟵ [5, 6] 2h6 + 3
|
||||
- Command editing and recalculation!
|
||||
> There is no demonstration for this
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "dicedicedice",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"description": "Dice bot",
|
||||
"main": "src/index.js",
|
||||
"scripts": {
|
||||
|
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user