diff options
| author | 2018-04-11 00:29:13 +0200 | |
|---|---|---|
| committer | 2018-04-11 00:29:13 +0200 | |
| commit | a93bcdb2b38ed9a4881cab79af2c774214806d9e (patch) | |
| tree | d825dbc0f54efaa0fafcdb2e08ac5df7b5620edd | |
| parent | 395d723d7839776319e5e69fba9bc6a6433a17a8 (diff) | |
| download | OneRoll-a93bcdb2b38ed9a4881cab79af2c774214806d9e.tar.gz OneRoll-a93bcdb2b38ed9a4881cab79af2c774214806d9e.zip | |
-Fix regression on range.
| -rw-r--r-- | diceparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/diceparser.cpp b/diceparser.cpp index 8deb691..7117b09 100644 --- a/diceparser.cpp +++ b/diceparser.cpp @@ -681,7 +681,7 @@ bool DiceParser::readDice(QString& str,ExecutionNode* & node) } return true; } - else if(m_parsingToolbox->readDiceRange(str,max,min)) + else if(m_parsingToolbox->readDiceRange(str,min,max)) { DiceRollerNode* drNode = new DiceRollerNode(max,min); drNode->setUnique(unique); |