Commit bb5f711a authored by Chunchi Che's avatar Chunchi Che

adjust delay time

parent e9e4d11c
...@@ -29,5 +29,5 @@ export default async (attack: ygopro.StocGameMessage.MsgAttack) => { ...@@ -29,5 +29,5 @@ export default async (attack: ygopro.StocGameMessage.MsgAttack) => {
console.warn(`<Attack>attacker from ${attack.attacker_location} is null`); console.warn(`<Attack>attacker from ${attack.attacker_location} is null`);
} }
await sleep(1000); await sleep(2000);
}; };
...@@ -32,7 +32,7 @@ export default async (chaining: ygopro.StocGameMessage.MsgChaining) => { ...@@ -32,7 +32,7 @@ export default async (chaining: ygopro.StocGameMessage.MsgChaining) => {
// 临时办法,这里延迟500ms // 临时办法,这里延迟500ms
// 长期:需要实现动画序列,一个动画完成后才执行下一个动画 // 长期:需要实现动画序列,一个动画完成后才执行下一个动画
await sleep(500); await sleep(1000);
} else { } else {
console.warn(`<Chaining>target from ${location} is null`); console.warn(`<Chaining>target from ${location} is null`);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment