修复之前重构next和hold系统后ai的不正确行为

This commit is contained in:
MrZ626
2020-11-20 00:20:54 +08:00
parent 25b8098c02
commit 7bfd362567
3 changed files with 10 additions and 15 deletions

View File

@@ -4,8 +4,8 @@ return function(type,speedLV,next,hold,node)
if not hold then hold=false else hold=true end
return{
type="CC",
nextCount=next,
holdCount=hold,
next=next,
hold=hold,
delta=AISpeed[speedLV],
node=node,
}
@@ -13,7 +13,7 @@ return function(type,speedLV,next,hold,node)
return{
type="9S",
delta=math.floor(AISpeed[speedLV]),
holdCount=hold,
hold=hold,
}
end
end