Skip to content

Commit

Permalink
Grammar. :)
Browse files Browse the repository at this point in the history
Signed-off-by: King Lemming <[email protected]>
  • Loading branch information
KingLemming committed Aug 8, 2017
1 parent cbe15a9 commit 1461532
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/cofh/cofhworld/init/WorldTickHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ public void tickEnd(WorldTickEvent event) {
RetroChunkCoord r = chunks.pollFirst();
ChunkCoord c = r.coord;
if (retroC++ == 0 || chunks.size() < 3) {
CoFHWorld.log.info("RetroGening " + c.toString() + ".");
CoFHWorld.log.info("Retro-Generating " + c.toString() + ".");
} else {
CoFHWorld.log.debug("RetroGening " + c.toString() + ".");
CoFHWorld.log.debug("Retro-Generating " + c.toString() + ".");
}
retroC &= 31;
long worldSeed = world.getSeed();
Expand All @@ -63,9 +63,9 @@ public void tickEnd(WorldTickEvent event) {
if (chunks != null && chunks.size() > 0) {
ChunkCoord c = chunks.pollFirst();
if (pregenC++ == 0 || chunks.size() < 5) {
CoFHWorld.log.info("PreGening " + c.toString() + ".");
CoFHWorld.log.info("Pre-Generating " + c.toString() + ".");
} else {
CoFHWorld.log.debug("PreGening " + c.toString() + ".");
CoFHWorld.log.debug("Pre-Generating " + c.toString() + ".");
}
pregenC &= 31;
world.getChunkFromChunkCoords(c.chunkX, c.chunkZ);
Expand Down

0 comments on commit 1461532

Please sign in to comment.