From 8e2a93fa34f54e2e3d6feae60d1b408b2d930454 Mon Sep 17 00:00:00 2001 From: Nicholas Ignoffo Date: Fri, 8 Feb 2019 20:33:43 -0800 Subject: [PATCH] Improve nocturnal prowess behavior (#1461) No more flickering. If you're in the dark, it will apply a max duration effect. If you're in the light and (as far as it can tell) the effect was applied by the armor, the effect will be removed. --- .../upgrade/LivingArmourUpgradeNightSight.java | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeNightSight.java b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeNightSight.java index 3493b8e1..e18b3c1b 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeNightSight.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/upgrade/LivingArmourUpgradeNightSight.java @@ -31,17 +31,13 @@ public class LivingArmourUpgradeNightSight extends LivingArmourUpgrade { public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) { if (world.getLight(player.getPosition(), false) <= 9) { isActive = true; - if (player.isPotionActive(MobEffects.NIGHT_VISION)) { - int dur = player.getActivePotionEffect(MobEffects.NIGHT_VISION).getDuration(); - if (dur > 100 && dur < 20 * 60 * 20) { - //Don't override the potion effect if the other potion effect is sufficiently long. - return; - } - } + if (player.isPotionActive(MobEffects.NIGHT_VISION)) + return; - player.addPotionEffect(new PotionEffect(MobEffects.NIGHT_VISION, Constants.Misc.NIGHT_VISION_CONSTANT_BEGIN, 0, false, false)); - } else { + player.addPotionEffect(new PotionEffect(MobEffects.NIGHT_VISION, Integer.MAX_VALUE, 0, false, false)); + } else if (isActive) { isActive = false; + player.removePotionEffect(MobEffects.NIGHT_VISION); } }