Skip to content
This repository has been archived by the owner on Jan 26, 2019. It is now read-only.

Commit

Permalink
Force #52
Browse files Browse the repository at this point in the history
  • Loading branch information
sameer committed Jan 31, 2016
1 parent 5d7e025 commit 9e0c8a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/org/spigotmc/SpigotWorldConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -279,12 +279,12 @@ private void maxEntityCollision()
log( "Max Entity Collisions: " + maxCollisionsPerEntity );
}

public int tileMaxTickTime;
public int entityMaxTickTime;
public final int tileMaxTickTime = 1000;
public final int entityMaxTickTime = 1000;
private void maxTickTimes()
{
tileMaxTickTime = getInt("max-tick-time.tile", 50);
entityMaxTickTime = getInt("max-tick-time.entity", 50);
//tileMaxTickTime = getInt("max-tick-time.tile", 50);
//entityMaxTickTime = getInt("max-tick-time.entity", 50);
log("Tile Max Tick Time: " + tileMaxTickTime + "ms Entity max Tick Time: " + entityMaxTickTime + "ms");
}

Expand Down

0 comments on commit 9e0c8a1

Please sign in to comment.