Set minimum donation % from 1 to 0, default is still 5%
This commit is contained in:
parent
f6bcba49c3
commit
6caa358315
1 changed files with 1 additions and 1 deletions
|
@ -478,7 +478,7 @@ bool Options::parseArg(int key, uint64_t arg)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 1003: /* --donate-level */
|
case 1003: /* --donate-level */
|
||||||
if (arg < 1 || arg > 99) {
|
if (arg < 0 || arg > 99) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue