SolarPowered logic fix. (#1454)

Need to see the sky AND needs to be day, instead of or.

Before:
- Solar Powered works at night
- Solar Powered works at day underground

After:
- Solar Powered works only during daytime if the sky is in line of sight, as well
This commit is contained in:
Tobias Gremeyer 2019-02-01 01:36:31 +01:00 committed by Nick Ignoffo
parent 827ee85e81
commit a04e4d7a09

View file

@ -26,7 +26,7 @@ public class LivingArmourUpgradeSolarPowered extends LivingArmourUpgrade {
@Override
public double getArmourProtection(EntityLivingBase wearer, DamageSource source) {
if (wearer.getEntityWorld().canSeeSky(wearer.getPosition()) || wearer.getEntityWorld().provider.isDaytime()) {
if (wearer.getEntityWorld().canSeeSky(wearer.getPosition()) && wearer.getEntityWorld().provider.isDaytime()) {
return protectionLevel[this.level];
}
@ -36,7 +36,7 @@ public class LivingArmourUpgradeSolarPowered extends LivingArmourUpgrade {
@Override
public void onTick(World world, EntityPlayer player, ILivingArmour livingArmour) {
counter++;
if (world.canSeeSky(player.getPosition()) || world.provider.isDaytime()) {
if (world.canSeeSky(player.getPosition()) && world.provider.isDaytime()) {
if (counter % regenCooldown[this.level] == 0 && player.getHealth() < player.getMaxHealth()) {
player.heal(1);
}