Skip to content

Commit bb9f49f

Browse files
authored
Merge pull request #63 from nathane/patch-1
fix: minimum chance for duckdice
2 parents 08d474a + e433d9d commit bb9f49f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/public/js/DuckDice/info.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function checkParams(p,ch){
3030
if(p < 0.00000001 || p > 1000000000*1000000000) {
3131
return false
3232
}
33-
if(ch>98 || ch<1) {
33+
if(ch>98 || ch<0.01) {
3434
return false
3535
}
3636
return true;

0 commit comments

Comments
 (0)