Skip to content

Commit e6a0fef

Browse files
committed
fixed minor bug in dice roll engine
1 parent 958b5a6 commit e6a0fef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/client/util/dicerollentry.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DiceRollResult DiceRollEntry::roll(bool signOnPositive) const
5353
return DiceRollResult("",0);
5454
else
5555
{
56-
QString text = signString(signOnPositive)+QString::number(std::abs(value_));
56+
QString text = signString(signOnPositive)+QString::number(std::abs(value_))+nameString();
5757
return DiceRollResult(text,value_);
5858
}
5959
}

0 commit comments

Comments
 (0)