Always emulate lure bonus to avoid vanilla bugs

Fixes #4359
This commit is contained in:
nossr50
2021-01-05 12:16:16 -08:00
parent 7bc01571ee
commit 1c9592aba3
2 changed files with 2 additions and 1 deletions

View File

@ -265,7 +265,7 @@ public class FishingManager extends SkillManager {
int convertedLureBonus = 0;
//This avoids a Minecraft bug where lure levels above 3 break fishing
if(lureLevel > 3) {
if(lureLevel > 0) {
masterAnglerCompatibilityLayer.setApplyLure(fishHook, false);
convertedLureBonus = lureLevel * 100;
}