-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
33 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,16 @@ | ||
# Whether or not the output should include the results of each XdY statement | ||
# Whether or not the output should include the results of each XdY statement. | ||
show_statement: false | ||
# Whether or not the output should include the results of individual dice rolls | ||
# Whether or not the output should include the results of individual dice rolls. | ||
show_rolls: false | ||
|
||
# Number of dice rolls (the Y in XdY) after which show_rolls is ignored. | ||
show_rolls_limit: 20 | ||
# Number of dice rolls after which dice rolls will not be individually randomized, | ||
# but rather picked randomly from a normal distribution. | ||
gauss_limit: 100 | ||
|
||
# Maximum number of digits in result. | ||
result_max_length: 512 | ||
|
||
# Number of decimal places that results should be rounded to. Set to -1 to disable rounding. | ||
round_decimals: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters