diff options
| author | 2020-05-22 01:51:51 +0200 | |
|---|---|---|
| committer | 2020-05-22 01:51:51 +0200 | |
| commit | 9872fa26641aa57acc0c01fd8d1a981f9984eab5 (patch) | |
| tree | aec5aba6190180f5b5e42ea9f809a70fdc64585b /result | |
| parent | cdc2fcccdbdb40530ff1c63f70c43bf1100e3410 (diff) | |
| download | OneRoll-9872fa26641aa57acc0c01fd8d1a981f9984eab5.tar.gz OneRoll-9872fa26641aa57acc0c01fd8d1a981f9984eab5.zip | |
Fix behaviour of output.
Diffstat (limited to 'result')
| -rw-r--r-- | result/diceresult.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/result/diceresult.cpp b/result/diceresult.cpp index 7129f43..2f13210 100644 --- a/result/diceresult.cpp +++ b/result/diceresult.cpp @@ -184,7 +184,7 @@ Result* DiceResult::getCopy() const { auto newdie= new Die(*die); newdie->setDisplayed(false); - die->displayed(); + // die->displayed(); list.append(newdie); } copy->setResultList(list); |