aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node
diff options
context:
space:
mode:
Diffstat (limited to 'node')
-rw-r--r--node/explodedicenode.cpp4
-rw-r--r--node/rerolldicenode.cpp1
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);