removed debug from panels
This commit is contained in:
parent
746be27657
commit
2daeec78cb
1 changed files with 0 additions and 5 deletions
|
@ -26,16 +26,11 @@ public class TileEntitySolarPanel extends TileEntityEnergyMachine
|
|||
|
||||
if (this.worldObj.canBlockSeeTheSky(xCoord, yCoord + 1, zCoord) && !this.worldObj.provider.hasNoSky)
|
||||
{
|
||||
System.out.println("DayPower: "+BlockSolarPanel.wattDay);
|
||||
System.out.println("NightPower: "+BlockSolarPanel.wattNight);
|
||||
System.out.println("StormPower: "+BlockSolarPanel.wattStorm);
|
||||
if (this.worldObj.isDaytime())
|
||||
{
|
||||
System.out.println("HasSunLight");
|
||||
this.wattOutput = BlockSolarPanel.wattDay;
|
||||
if (this.worldObj.isThundering() || this.worldObj.isRaining())
|
||||
{
|
||||
System.out.println("Storming");
|
||||
this.wattOutput = BlockSolarPanel.wattStorm;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue