If you supply an instance of Phaser.Text with a negative value for lineSpacing, its resulting height causes its text to be cut off at the bottom. **Phaser.Text line 398** `var height = (lineHeight + this._lineSpacing) * lines.length;` **My current fix:** `var height = (lineHeight + (Math.max(this._lineSpacing, 0))) * lines.length;`