fix scoreboard

This commit is contained in:
ntr
2019-04-27 23:27:44 +10:00
parent 95c463757d
commit 0daa7967f4
6 changed files with 43 additions and 20 deletions
+1 -1
View File
@@ -180,7 +180,7 @@ function Info(args) {
? infoCrypElement(player.cryps.find(c => c.id === activeCryp.id))
: null;
const otherInfo = !info[0]
const otherInfo = info[0]
? infoVar(info)
: null;
+1
View File
@@ -8,6 +8,7 @@ function setupKeys(store) {
key('esc', () => store.dispatch(actions.setReclaiming(false)));
key('esc', () => store.dispatch(actions.setActiveSkill(null)));
key('esc', () => store.dispatch(actions.setActiveCryp(null)));
key('esc', () => store.dispatch(actions.setInfo([null, null])));
}
module.exports = setupKeys;