Skip to content

Commit

Permalink
Removed Debug Lines
Browse files Browse the repository at this point in the history
  • Loading branch information
darichey committed Jan 22, 2016
1 parent 5b89e7d commit 50911c1
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public PeripheralChunkLoader(ITurtleAccess turtle) {
@Override
public void attach(IComputerAccess computer) {
super.attach(computer);
PeripheralsPlusPlus.LOGGER.info("Peripheral Attached");
attached = true;
}

Expand All @@ -47,7 +46,6 @@ public void update() {
@Override
public void detach(IComputerAccess computer) {
super.detach(computer);
PeripheralsPlusPlus.LOGGER.info("Peripheral Detached");
ForgeChunkManager.releaseTicket(ticket);
ticket = null;
}
Expand All @@ -58,7 +56,6 @@ public void updateTicket() {
for (ChunkCoordIntPair coordIntPair : getChunksInRadius(Config.chunkLoadingRadius)) {
ForgeChunkManager.forceChunk(ticket, coordIntPair);
}
PeripheralsPlusPlus.LOGGER.info("Ticked Updated");
}

public ArrayList<ChunkCoordIntPair> getChunksInRadius(int radius) {
Expand Down

0 comments on commit 50911c1

Please sign in to comment.