spinren模式结束时显示的文本会根据是否到10行变化

This commit is contained in:
MrZ_26
2024-08-02 23:22:16 +08:00
parent beff0c9d99
commit de4b73cf83

View File

@@ -68,7 +68,11 @@ return {
eventSet='sprintEff_40',
hook_drop=function(P)
if P.lastPiece.row==0 then
P:win('finish')
if P.stat.row<10 then
P:lose()
else
P:win('finish')
end
end
local up=MATH.clamp(22-P.stat.row+P.lastPiece.row,0,P.lastPiece.row)
P:pushLineList(get_lines(up,P))