TootComposer: fix random stmt may be empty
This commit is contained in:
parent
591a930bb6
commit
a6b791ab5a
2 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue