
Setup: Google Chrome 64-bit v85 / OSX 10.15.6 / Javascript enabled Issue: Roll20 doesn't support rolling many (>999) dice or rolling many-sided (>9999999) dice. This can be reproduced by typing a large roll (e.g. `/roll 99999d6`) into the chat window -- if you look at the sum totals they do not converge to the expected value. It would be great if the Roll20 interface supported higher rolls or at the very least gave players some indication their roll has been modified. Mechanism : Looking at the client side code (`app.js`), it seems like large rolls are silently rounded down. The `MAX_NUM_ROLLS` and `MAX_ROLLS` variables set the limits for these roll parameters. This check appears to only exist on the client side -- larger rolls can be performed by dispatching POST requests to the `" <a href="https://dice.roll20.net`" rel="nofollow">https://dice.roll20.net`</a> server. The `dice.roll20` server supports up to 2^48 sided dice and can complete up to ~50,000 rolls before experiencing performance regressions. It should be possible to support even larger numbers of rolls by switching the roll outcome representation from an array of results to a frequency map. Console log : The console log reported no errors.