From 3c88f5d5fd5f06a65476a59a333fc59870be0f19 Mon Sep 17 00:00:00 2001 From: Kevin Dungs Date: Sun, 23 Nov 2014 13:06:33 +0100 Subject: [PATCH] Fix error in display of reputation gain. --- js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/app.js b/js/app.js index 69cfd8f..ecdc9d2 100644 --- a/js/app.js +++ b/js/app.js @@ -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) {