diff --git a/server/engine/game.js b/server/engine/game.js index 3a63022..c540f4d 100644 --- a/server/engine/game.js +++ b/server/engine/game.js @@ -85,6 +85,11 @@ Game.prototype.getStatus = function () { var lines = []; + lines.push('Enthusiasm:'); + lines.push(_.map(this.heroines, function (heroine) { + return heroine.enthusiasm; + }).join(' ')); + lines.push('Real Love:'); _.each(this.heroines, function (heroine) { lines.push(heroine.realLove.join(' '));