diff options
| author | 2014-02-04 17:39:18 +0100 | |
|---|---|---|
| committer | 2014-02-04 17:39:18 +0100 | |
| commit | 7e98fdef41f6a9424ef273f9468bdde9269f776c (patch) | |
| tree | 2ab7dcd72d1c780ffcbdcd97a7123e3ea2585529 /node | |
| parent | f168858cbd62f92b7403338e53553fa8d9f240fa (diff) | |
| download | OneRoll-7e98fdef41f6a9424ef273f9468bdde9269f776c.tar.gz OneRoll-7e98fdef41f6a9424ef273f9468bdde9269f776c.zip | |
Update dicerollernode.cpp
getPriority set to 4
Diffstat (limited to 'node')
| -rw-r--r-- | node/dicerollernode.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/node/dicerollernode.cpp b/node/dicerollernode.cpp index 1e2dd88..735aacb 100644 --- a/node/dicerollernode.cpp +++ b/node/dicerollernode.cpp @@ -48,11 +48,11 @@ QString DiceRollerNode::toString() const } qint64 DiceRollerNode::getPriority() const { - qint64 priority=0; - if(NULL!=m_nextNode) - { - priority = m_nextNode->getPriority(); - } + qint64 priority=4; +// if(NULL!=m_nextNode) +// { +// priority = m_nextNode->getPriority(); +// } return priority; |