Debug log cleanup
Removed a few debug logs no longer needed
This commit is contained in:
parent
d5db813508
commit
bca3975ad2
1 changed files with 4 additions and 4 deletions
|
@ -63,14 +63,14 @@ public class TileEntityCamera extends TileEntity implements IPeripheral {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void invalidate() {
|
public void invalidate() {
|
||||||
WarpDrive.debugPrint("" + this + " invalidated");
|
// WarpDrive.debugPrint("" + this + " invalidated");
|
||||||
WarpDrive.instance.cams.removeFromRegistry(worldObj, new ChunkPosition(xCoord, yCoord, zCoord));
|
WarpDrive.instance.cams.removeFromRegistry(worldObj, new ChunkPosition(xCoord, yCoord, zCoord));
|
||||||
super.invalidate();
|
super.invalidate();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onChunkUnload() {
|
public void onChunkUnload() {
|
||||||
WarpDrive.debugPrint("" + this + " onChunkUnload");
|
// WarpDrive.debugPrint("" + this + " onChunkUnload");
|
||||||
WarpDrive.instance.cams.removeFromRegistry(worldObj, new ChunkPosition(xCoord, yCoord, zCoord));
|
WarpDrive.instance.cams.removeFromRegistry(worldObj, new ChunkPosition(xCoord, yCoord, zCoord));
|
||||||
super.onChunkUnload();
|
super.onChunkUnload();
|
||||||
}
|
}
|
||||||
|
@ -79,14 +79,14 @@ public class TileEntityCamera extends TileEntity implements IPeripheral {
|
||||||
public void readFromNBT(NBTTagCompound tag) {
|
public void readFromNBT(NBTTagCompound tag) {
|
||||||
super.readFromNBT(tag);
|
super.readFromNBT(tag);
|
||||||
frequency = tag.getInteger("frequency");
|
frequency = tag.getInteger("frequency");
|
||||||
WarpDrive.debugPrint("" + this + " readFromNBT");
|
// WarpDrive.debugPrint("" + this + " readFromNBT");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void writeToNBT(NBTTagCompound tag) {
|
public void writeToNBT(NBTTagCompound tag) {
|
||||||
super.writeToNBT(tag);
|
super.writeToNBT(tag);
|
||||||
tag.setInteger("frequency", frequency);
|
tag.setInteger("frequency", frequency);
|
||||||
WarpDrive.debugPrint("" + this + " writeToNBT");
|
// WarpDrive.debugPrint("" + this + " writeToNBT");
|
||||||
}
|
}
|
||||||
|
|
||||||
// IPeripheral methods implementation
|
// IPeripheral methods implementation
|
||||||
|
|
Loading…
Reference in a new issue