修正音效室mini和b2b(b3b)顺序不对

This commit is contained in:
MrZ626
2021-09-23 01:00:37 +08:00
parent 86d1f9470e
commit a7ddc69679

View File

@@ -22,14 +22,14 @@ function scene.keyDown(key,isRep)
pc=not pc
elseif type(key)=='number'then
local CHN=VOC.getFreeChannel()
if mini then
VOC.play('mini',CHN)
end
if b2b then
VOC.play('b2b',CHN)
elseif b3b then
VOC.play('b3b',CHN)
end
if mini then
VOC.play('mini',CHN)
end
if key>=10 then
VOC.play(blockName[math.floor(key/10)].."spin",CHN)
end