diff --git a/battles.js b/battles.js index 390b3d3552..daa2db4590 100644 --- a/battles.js +++ b/battles.js @@ -924,7 +924,7 @@ var BattlePokemon = (function() { BattlePokemon.prototype.getHealth = function(realHp) { if (!this.hp) return '0 fnt'; var hpstring; - if (realHp) { + if (realHp || this.getFormat().debug) { hpstring = ''+this.hp+'/'+this.maxhp; } else { var ratio = this.hp / this.maxhp;