修复提前硬降失效

This commit is contained in:
MrZ_26
2020-08-13 02:09:30 +08:00
parent cb98a9094a
commit d196d73448
2 changed files with 6 additions and 3 deletions

View File

@@ -388,8 +388,8 @@ function gameStart()
SFX.play("start")
for P=1,#players do
P=players[P]
P:popNext()
P.timing=true
P.control=true
P.timing=true
P:popNext()
end
end

View File

@@ -1541,7 +1541,10 @@ function player.popNext(P)--Pop next queue to hand
end
--IHdS
if _[6]then P.act.hardDrop(P)_[6]=false end
if _[6]then
P.act.hardDrop(P)
_[6]=false
end
end
end