From 0e2525689fa05b8e64b23951a54bbffb4101a2f7 Mon Sep 17 00:00:00 2001 From: Mashy Date: Thu, 12 Sep 2019 12:08:37 +1000 Subject: [PATCH] fix speed stat info hover --- client/src/components/instance.constructs.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/instance.constructs.jsx b/client/src/components/instance.constructs.jsx index 1eecfd6e..24a1d833 100644 --- a/client/src/components/instance.constructs.jsx +++ b/client/src/components/instance.constructs.jsx @@ -179,7 +179,7 @@ function Construct(props) { const stats = Object.keys(STATS).map(s => { const stat = STATS[s]; - const info = (s === 'Speed' && 'Speed') + const info = (s === 'SpeedStat' && 'Speed') || (s.includes('Power') && 'Power') || (s.includes('Life') && 'Life');