Commit 9cab421a by doszhang

dos

parent 12401f2e
......@@ -432,11 +432,10 @@ function RandomNumBoth(Min, Max, exclude = '') {
if (exclude == '') {
return num;
} else if (num == exclude) {
RandomNumBoth(Min, Max, exclude);
return RandomNumBoth(Min, Max, exclude);
} else {
return num;
}
}
function checkIt(bind, maxNum) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment