From be8996d85a245fe2e80e93feca89dc8d5043324c Mon Sep 17 00:00:00 2001 From: Guo-William Date: Tue, 27 Mar 2018 12:42:32 -0400 Subject: [PATCH] Fix status colors --- pokeboot/assets/js/HpBar.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pokeboot/assets/js/HpBar.jsx b/pokeboot/assets/js/HpBar.jsx index 1b372c2..6732852 100644 --- a/pokeboot/assets/js/HpBar.jsx +++ b/pokeboot/assets/js/HpBar.jsx @@ -30,9 +30,9 @@ export function HpBar({ name, health, maxHealth, isOpponent, history, status }) : null; - const burn = status.Burn > 0 ? BURN : ; + const burn = status.Burn > 0 ? BURN : ; const freeze = status.Freeze > 0 ? FREEZE : ; - const stun = status.Stun > 0 ? STUN : ; + const stun = status.Stun > 0 ? STUN : ; return (