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:
parent
827ee85e81
commit
a04e4d7a09
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue