Fixing infobar bug for operating expenses.

This commit is contained in:
2020-03-29 10:34:03 -07:00
parent d554476502
commit ebf3e6aace

View File

@@ -259,7 +259,7 @@ function initialize(st, sc) {
case 'harvest|expense-value':
store.dispatch(message(state.farm.game.currentPlayer +
' had operating expense of $' +
formatMoney(Math.abs(state.farm.ui.actionValue.operatingExpenseValue))));
formatMoney(Math.abs(state.farm.ui.actionValue.operatingExpenseValue[state.farm.game.currentPlayer]))));
break;
}
}