diff options
| author | 2017-04-28 10:05:22 +0200 | |
|---|---|---|
| committer | 2017-04-28 10:05:22 +0200 | |
| commit | 12e90b99e7bcc92aaf486eb0ef261e657ce0bb4f (patch) | |
| tree | b010e3f65b59c8cabb8d03dbb8d430058679976b /diceparser.cpp | |
| parent | 9b2839b6f09177bda6b3654c56a750f84173123a (diff) | |
| download | OneRoll-12e90b99e7bcc92aaf486eb0ef261e657ce0bb4f.tar.gz OneRoll-12e90b99e7bcc92aaf486eb0ef261e657ce0bb4f.zip | |
fix switch case issue
Diffstat (limited to 'diceparser.cpp')
| -rw-r--r-- | diceparser.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/diceparser.cpp b/diceparser.cpp index 315c8d5..31bcf59 100644 --- a/diceparser.cpp +++ b/diceparser.cpp @@ -1055,10 +1055,11 @@ bool DiceParser::readOption(QString& str,ExecutionNode* previous)//, { delete nodeif; } + break; } case Split: { - SplitNode* splitnode = new SplitNote(); + SplitNode* splitnode = new SplitNode(); previous->setNextNode(splitnode); node = splitnode; found = true; |