We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 437f36b commit 5dd23e0Copy full SHA for 5dd23e0
server/engine/game.js
@@ -85,6 +85,11 @@
85
Game.prototype.getStatus = function () {
86
var lines = [];
87
88
+ lines.push('Enthusiasm:');
89
+ lines.push(_.map(this.heroines, function (heroine) {
90
+ return heroine.enthusiasm;
91
+ }).join(' '));
92
+
93
lines.push('Real Love:');
94
_.each(this.heroines, function (heroine) {
95
lines.push(heroine.realLove.join(' '));
0 commit comments