mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
parent
7bc01571ee
commit
1c9592aba3
@ -2,6 +2,7 @@ Version 2.1.169
|
|||||||
Fixed a few memory leaks involving arrows
|
Fixed a few memory leaks involving arrows
|
||||||
Fixed mcMMO inappropriately assigning metadata to projectiles not fired from players
|
Fixed mcMMO inappropriately assigning metadata to projectiles not fired from players
|
||||||
Fix mctop not working if locale was set to something other than en_US
|
Fix mctop not working if locale was set to something other than en_US
|
||||||
|
mcMMO will now always emulate lure in order to stack it correctly and avoid vanilla bugs
|
||||||
|
|
||||||
Version 2.1.168
|
Version 2.1.168
|
||||||
Fixed an IndexOutOfBoundsException error when trying to access UserBlockTracker from an invalid range (thanks t00thpick1)
|
Fixed an IndexOutOfBoundsException error when trying to access UserBlockTracker from an invalid range (thanks t00thpick1)
|
||||||
|
@ -265,7 +265,7 @@ public class FishingManager extends SkillManager {
|
|||||||
int convertedLureBonus = 0;
|
int convertedLureBonus = 0;
|
||||||
|
|
||||||
//This avoids a Minecraft bug where lure levels above 3 break fishing
|
//This avoids a Minecraft bug where lure levels above 3 break fishing
|
||||||
if(lureLevel > 3) {
|
if(lureLevel > 0) {
|
||||||
masterAnglerCompatibilityLayer.setApplyLure(fishHook, false);
|
masterAnglerCompatibilityLayer.setApplyLure(fishHook, false);
|
||||||
convertedLureBonus = lureLevel * 100;
|
convertedLureBonus = lureLevel * 100;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user