aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--node/dicerollernode.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/node/dicerollernode.cpp b/node/dicerollernode.cpp
index 70fd245..6691c38 100644
--- a/node/dicerollernode.cpp
+++ b/node/dicerollernode.cpp
@@ -30,7 +30,6 @@ void DiceRollerNode::run(ExecutionNode* previous)
m_errors.insert(NO_DICE_TO_ROLL,QObject::tr("No dice to roll"));
}
auto possibleValue = static_cast<quint64>(abs((m_max-m_min)+1));
- //qDebug() << possibleValue;
if( possibleValue < m_diceCount && m_unique)
{
m_errors.insert(TOO_MANY_DICE,QObject::tr("More unique values asked than possible values (D operator)"));