Skip to content

Commit

Permalink
Small fix + debug removal
Browse files Browse the repository at this point in the history
  • Loading branch information
CleverNucleus committed Dec 18, 2022
1 parent d27a4c4 commit 9232e6e
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ public final class ExperienceDataManager implements ExperienceData {

public ExperienceDataManager(final Chunk chunk) {
this.chunk = chunk;
this.chunk.setNeedsSaving(true);
this.expNegationFactor = 1.0F;
this.ticks = 0;

Expand Down Expand Up @@ -49,7 +48,6 @@ public void serverTick() {
this.ticks = 0;
this.expNegationFactor = Math.min(this.expNegationFactor * this.restorativeForce, 1.0F);
this.chunk.setNeedsSaving(true);
System.out.println("T: " + this.expNegationFactor);
}
}

Expand Down

0 comments on commit 9232e6e

Please sign in to comment.