diff options
Diffstat (limited to 'cli')
| -rw-r--r-- | cli/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/main.cpp b/cli/main.cpp index acc59ba..198c85c 100644 --- a/cli/main.cpp +++ b/cli/main.cpp @@ -206,7 +206,7 @@ int startDiceParsing(QStringList& cmds,QString& treeFile,bool withColor, EXPORTF DiceParser parser; parser.insertAlias(new DiceAlias("L5R5R",QStringLiteral("L[-,⨀,⨀⬢,❂⬢,❁,❁⬢]")),0); parser.insertAlias(new DiceAlias("L5R5S",QStringLiteral("L[-,-,⨀,⨀,⨀❁,⨀⬢,⨀⬢,❂,❂⬢,❁,❁,❁]")),1); - int i = 0; + int i = 2; for(auto alias : array) { auto objAlias = alias.toObject(); @@ -215,7 +215,6 @@ int startDiceParsing(QStringList& cmds,QString& treeFile,bool withColor, EXPORTF parser.insertAlias(dice,i++); } - int rt=0; for(QString cmd : cmds) { |