equip animations

This commit is contained in:
ntr
2019-06-09 13:45:05 +10:00
parent 4e004703d7
commit fc2f58391c
2 changed files with 41 additions and 26 deletions
+1 -1
View File
@@ -106,7 +106,7 @@ function Equipment(props) {
return (
<figure key={i} onClick={e => skillClick(e, i)} onMouseOver={e => hoverInfo(e, item)} >
{shapes[item]()}
<figcaption>{item}</figcaption>
<figcaption>{item ? item : '-'}</figcaption>
</figure>
);
}