Skip to content

Commit

Permalink
fix farming station range (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
boubou19 authored Mar 30, 2022
1 parent 3669b5a commit 958da17
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ private int getUpgradeDist() {
if(inventory[upg] == null) {
return 0;
} else {
return Config.farmBonusSize * EnderIO.itemBasicCapacitor.getCapacitor(inventory[upg]).getTier();
return Config.farmBonusSize * (EnderIO.itemBasicCapacitor.getCapacitor(inventory[upg]).getTier()-1);
}
}

Expand Down

0 comments on commit 958da17

Please sign in to comment.