Closed OdedDeutch closed 8 years ago
One can roll 2d4+1 correctly but the 3d4+3d6 will interpreted as (3d4+3)+(1d6)
/roll 3d4 3d6 will do what you want. The primary issue here is that it's parsed left to right (via regex).
/roll 3d4 3d6
Feel free to reopen if would prefer syntax altered.
Actually fixed in last commit.
One can roll 2d4+1 correctly but the 3d4+3d6 will interpreted as (3d4+3)+(1d6)