fix zone tag join

This commit is contained in:
ntr
2019-01-14 22:26:06 +11:00
parent 1eb5b5345e
commit 2d918af744
3 changed files with 20 additions and 10 deletions
+11 -1
View File
@@ -62,7 +62,17 @@ class StatSheet extends Phaser.Scene {
this.stats.add(this.add
.text(STAT_X, STAT_Y, `${stat.stat}: ${stat.base}`, TEXT.NORMAL));
};
const CRYP_STATS = [cryp.stamina, cryp.phys_dmg, cryp.spell_dmg, cryp.speed];
const CRYP_STATS = [
cryp.stamina,
cryp.armour,
cryp.spell_shield,
cryp.evasion,
cryp.phys_dmg,
cryp.spell_dmg,
cryp.speed,
];
CRYP_STATS.forEach(crypStat);
}