修复fixed序列不能用

This commit is contained in:
MrZ626
2021-03-24 01:10:57 +08:00
parent 9f8b8d2596
commit 65db835cb5

View File

@@ -125,11 +125,14 @@ local sequenceModes={
end
while true do
while #P.nextQueue<6 do
if not(seq[1]or P.cur or P.holdQueue[1])then
P:lose(true)
if seq[1]then
P:getNext(rem(seq))
else
if not(P.cur or P.nextQueue[1]or P.holdQueue[1])then
P:lose(true)
end
break
end
P:getNext(rem(seq))
end
yield()
end