From 24b5857d8653664fb2adab36a80d809e4d75ac79 Mon Sep 17 00:00:00 2001 From: Mashy Date: Wed, 18 Dec 2019 17:03:30 +1000 Subject: [PATCH] sleep fix --- client/src/components/anims/sleep.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/anims/sleep.jsx b/client/src/components/anims/sleep.jsx index ba861d46..60d51982 100644 --- a/client/src/components/anims/sleep.jsx +++ b/client/src/components/anims/sleep.jsx @@ -83,7 +83,7 @@ class Sleep extends Component { rotate: 180, easing: 'linear', loop: true, - duration: TIMES.TARGET_DURATION_MS + TIMES.POST_SKILL_DURATION_MS, + duration: TIMES.TARGET_DURATION_MS, })); this.animations.push(anime({ @@ -97,7 +97,7 @@ class Sleep extends Component { this.animations.push(anime({ targets: ['#charges'], opacity: 1, - delay: anime.stagger(TIMES.TARGET_DURATION_MS * 0.015, { start: TIMES.TARGET_DELAY_MS }), + delay: anime.stagger(TIMES.TARGET_DURATION_MS * 0.01), easing: 'easeInOutSine', }));