Mystical Agriculture

Mystical Agriculture

86M Downloads

Tertium Farmland consistently yields more crop than Imperium Farmland.

sutartmelson opened this issue ยท 3 comments

commented

Running the latest release downloaded from forge for 1.15.2.

When harvesting Inferium Essence, Tertium farmland consistently yields more than Imperium farmland. I've attempted to dig through the code, I can't find anything obvious like a swapping of tiers in block/ModBlocks.java.

Hopefully someone else can reproduce this bug.

commented

I stumbled upon this while trying to determine how Inferium Essence yield could be maximized. It's due to the way InferiumCropBlock determines how many crops it should yield. The condition tier % 2 > 0 should in fact be tier % 2 == 0. Otherwise, you would get the following yields:

  • Tier 1: 100%
  • Tier 2: 100%
  • Tier 3: 250%
  • Tier 4: 200%
  • Tier 5: 350%

Whereas I believe it should be:

  • Tier 1: 100%
  • Tier 2: 150%
  • Tier 3: 200%
  • Tier 4: 250%
  • Tier 5: 300%
commented

I probably spent an hour stepping through that block of code and didn't catch that. Good work @erispre !

commented

Fixed in the latest version.