Skip to content

Commit

Permalink
Fix #8; remove debug statement in world save loop
Browse files Browse the repository at this point in the history
  • Loading branch information
dizzyd committed Aug 9, 2018
1 parent 5d6b06b commit 008cb12
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/java/com/dizzyd/prospects/world/WorldData.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,7 @@ public NBTTagCompound writeToNBT(NBTTagCompound compound) {
chunkData.setInteger("cx", cx);
chunkData.setInteger("cz", cz);
chunkData.setLong("expiry", chunk.expiry);

Prospects.logger.debug("Writing chunk: " + cx + "," + cz);


NBTTagCompound oreData = new NBTTagCompound();
for (Map.Entry<String, Float> ores : chunk.ores.entrySet()) {
oreData.setFloat(ores.getKey(), ores.getValue());
Expand Down

0 comments on commit 008cb12

Please sign in to comment.