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.
This commit is contained in:
Nicholas Ignoffo 2019-02-08 20:33:43 -08:00
parent cb69f84ed6
commit 8e2a93fa34

View file

@ -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.
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);
}
}