TootComposer: fix random stmt may be empty
This commit is contained in:
parent
161c72fea5
commit
599d735665
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"$schema": "https://json.schemastore.org/package",
|
||||
"name": "tutu",
|
||||
"version": "1.0.6",
|
||||
"version": "1.0.7",
|
||||
"description": "",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
|
|
|
@ -183,7 +183,7 @@ function randomChoose<T extends any[]>(
|
|||
rn: number,
|
||||
K: T,
|
||||
): T extends Array<infer E> ? E : never {
|
||||
const idx = Math.round(rn * K.length);
|
||||
const idx = Math.round(rn * K.length) - 1;
|
||||
return K[idx];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue