Fix error in display of reputation gain.

This commit is contained in:
Kevin Dungs
2014-11-23 13:06:33 +01:00
parent 88109a7f22
commit 3c88f5d5fd
+1 -1
View File
@@ -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) {