diff options
| author | 2018-06-14 11:14:29 +0200 | |
|---|---|---|
| committer | 2018-06-14 11:16:02 +0200 | |
| commit | e2969a6b122b98b6e9ed2241c3990d239c8cb13d (patch) | |
| tree | 1f79aeb0d2ebecfb35aab94856b665a47d0ddc6a /node | |
| parent | 0fc28f038271f7ee4f2656af4d53ec3351701dd9 (diff) | |
| download | OneRoll-e2969a6b122b98b6e9ed2241c3990d239c8cb13d.tar.gz OneRoll-e2969a6b122b98b6e9ed2241c3990d239c8cb13d.zip | |
remove debug message
Diffstat (limited to 'node')
| -rw-r--r-- | node/explodedicenode.cpp | 4 | ||||
| -rw-r--r-- | node/rerolldicenode.cpp | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/node/explodedicenode.cpp b/node/explodedicenode.cpp index d640eaa..b151de8 100644 --- a/node/explodedicenode.cpp +++ b/node/explodedicenode.cpp @@ -38,10 +38,6 @@ void ExplodeDiceNode::run(ExecutionNode* previous) m_nextNode->run(this); } } - else - { - qDebug() << "test!!"; - } } } ExplodeDiceNode::~ExplodeDiceNode() diff --git a/node/rerolldicenode.cpp b/node/rerolldicenode.cpp index 21e0dbf..3f0228c 100644 --- a/node/rerolldicenode.cpp +++ b/node/rerolldicenode.cpp @@ -44,7 +44,6 @@ void RerollDiceNode::run(ExecutionNode* previous) bool finished = false; while(m_validator->hasValid(die,false) && !finished) { - qDebug() << "reroll"<< die->getValue() << m_instruction; if(m_instruction != nullptr) { m_instruction->run(this); |