修复CC死后不能正常复活

This commit is contained in:
MrZ626
2020-09-03 01:22:50 +08:00
parent ffbfa525d4
commit b730d5e485
2 changed files with 274 additions and 270 deletions

View File

@@ -1,4 +1,3 @@
local int=math.floor
local AISpeed={60,50,45,35,25,15,9,6,4,3}
return function(type,speedLV,next,hold,node)
if type=="CC"then
@@ -12,7 +11,7 @@ return function(type,speedLV,next,hold,node)
elseif type=="9S"then
return{
type="9S",
delta=int(AISpeed[speedLV]*.5),
delta=math.floor(AISpeed[speedLV]*.5),
}
end
end