Skip to content

Commit

Permalink
Fix error in display of reputation gain.
Browse files Browse the repository at this point in the history
  • Loading branch information
kdungs committed Dec 12, 2014
1 parent 88109a7 commit 3c88f5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
var cost = item.research(lab);
if (cost > 0) {
UI.showUpdateValue("#update-data", -cost);
UI.showUpdateValue("#update-reputation", item.reputation);
UI.showUpdateValue("#update-reputation", item.state.reputation);
}
};
this.showInfo = function(r) {
Expand Down

0 comments on commit 3c88f5d

Please sign in to comment.