Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Nfinished committed Dec 30, 2023
1 parent bc619a0 commit 575af79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions store/refining/getters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ export const getters: GetterTree<RefiningState, {}> = {
const city = state.settings.cities.refiningResources;
const useFocus = state.settings.useFocus;

const bonusCity = getDoesItemHaveProductionBonusForCity(itemName, city);
const hasProductionBonus = getDoesItemHaveProductionBonusForCity(itemName, city);

if (!bonusCity) {
if (!hasProductionBonus) {
return useFocus ? 43.5 : 15.2;;
} else {
return useFocus ? 53.9 : 36.7;
Expand Down

0 comments on commit 575af79

Please sign in to comment.