修复fixed序列反了

This commit is contained in:
MrZ_26
2023-08-02 21:45:31 +08:00
parent 0595ce4ea6
commit c9cbb0e363

View File

@@ -218,7 +218,7 @@ local seqGenerators={
end
end,
fixed=function(rndGen,seq0)
for i=#seq0,1,-1 do
for i=1,#seq0 do
yield(seq0[i])
end
end,