From fb84e1becf4fca69e5ee4bcd6b831f6661982a5e Mon Sep 17 00:00:00 2001 From: Mashy Date: Sat, 27 Jul 2019 11:23:55 +1000 Subject: [PATCH] clear skills during anim phase --- client/src/components/game.construct.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/game.construct.jsx b/client/src/components/game.construct.jsx index 14b298bf..c7e2b4fb 100644 --- a/client/src/components/game.construct.jsx +++ b/client/src/components/game.construct.jsx @@ -97,7 +97,7 @@ class GameConstruct extends Component { .map(j => ); let crypSkills =
 
; - if (player) crypSkills = (
{skills}
); + if (player && !animating) crypSkills = (
{skills}
); const effects = construct.effects.length ? construct.effects.map(c =>
{c.effect} - {c.duration}T
)