Skip to content

Commit

Permalink
spinren少出两行防止一直响警报
Browse files Browse the repository at this point in the history
  • Loading branch information
MrZ626 committed Aug 2, 2024
1 parent 24a95a3 commit aa98116
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions parts/modes/spinren.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ return {
P.modeData.colorSet[i]=P.holeRND:random(25)
end
P.randomizer_spinren=randomizer(P.holeRND)
P:pushLineList(get_lines(20,P))
P:pushLineList(get_lines(18,P))
P.fieldBeneath=0
end,
env={
lock=1e99,
drop=1e99,
minsdarr=4,
minsdarr=3,
infHold=true,
highCam=false,
bgm='lounge',
Expand All @@ -70,7 +70,7 @@ return {
if P.lastPiece.row==0 then
P:win('finish')
end
local up=MATH.clamp(20-P.stat.row+P.lastPiece.row,0,P.lastPiece.row)
local up=MATH.clamp(22-P.stat.row+P.lastPiece.row,0,P.lastPiece.row)
P:pushLineList(get_lines(up,P))
end
},
Expand Down

0 comments on commit aa98116

Please sign in to comment.