Fix light calculation to use actual visible level. Should now work on (#1295)

surface at night as well as underground. Tweak duration to reduce
flicker.
This commit is contained in:
cpw 2018-05-04 03:26:28 +01:00 committed by Nick Ignoffo
parent 383be360ff
commit 778838e2b0
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ public class LivingArmourUpgradeNightSight extends LivingArmourUpgrade {
@Override
public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) {
if (world.getLight(player.getPosition()) <= 9) {
if (world.getLight(player.getPosition(), false) <= 9) {
isActive = true;
if (player.isPotionActive(MobEffects.NIGHT_VISION)) {
int dur = player.getActivePotionEffect(MobEffects.NIGHT_VISION).getDuration();

View file

@ -168,7 +168,7 @@ public class Constants
{
public static final int POTION_ARRAY_SIZE = 256;
public static final float ALTERED_STEP_HEIGHT = 1.00314159f;
public static final int NIGHT_VISION_CONSTANT_BEGIN = 30002;
public static final int NIGHT_VISION_CONSTANT_BEGIN = 30020;
public static final int NIGHT_VISION_CONSTANT_END = 30000;
}
}