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:
parent
383be360ff
commit
778838e2b0
|
@ -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();
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue