fix stats

This commit is contained in:
ntr 2019-05-02 17:20:51 +10:00
parent 97f29cea54
commit 18c8016908

View File

@ -153,9 +153,6 @@ function GamePanel(props) {
className={`game-cryp ${ko} ${classes}`}
style={ activeSkill ? { cursor: 'pointer' } : {}}
onClick={() => selectSkillTarget(cryp.id)} >
<div className="stats">
{stats}
</div>
<figure
className="img"
onClick={() => selectSkillTarget(cryp.id)} >
@ -165,6 +162,9 @@ function GamePanel(props) {
<div className="effects">
{cryp.effects.map(c => <span key={c.effect}>{c.effect} - {c.duration}T</span>)}
</div>
<div className="stats">
{stats}
</div>
</div>
);
}