Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ baseGroup=com.jelly.farmhelperv2
mcVersion=1.8.9
modid=farmhelperv2
modName=FarmHelper
version=2.9.7-pre5
version=2.9.7-pre6
shouldRelease=true
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,10 @@
public class ProfitCalculator implements IFeature {
private static ProfitCalculator instance;
public final List<BazaarItem> cropsToCount = new ArrayList<BazaarItem>() {{
final int HAY_ENCHANTED_TIER_1 = 144;
final int ENCHANTED_TIER_1 = 160;
final int ENCHANTED_TIER_2 = 25600;

add(new BazaarItem("Hay Bale", "ENCHANTED_HAY_BLOCK", HAY_ENCHANTED_TIER_1, 54).setImage());
add(new BazaarItem("Hay Bale", "ENCHANTED_HAY_BALE", ENCHANTED_TIER_2, 6).setImage());
add(new BazaarItem("Seeds", "ENCHANTED_SEEDS", ENCHANTED_TIER_1, 3).setImage());
add(new BazaarItem("Carrot", "ENCHANTED_CARROT", ENCHANTED_TIER_1, 3).setImage());
add(new BazaarItem("Potato", "ENCHANTED_POTATO", ENCHANTED_TIER_1, 3).setImage());
Expand Down