@ -115,14 +115,14 @@ public class SpigotWorldConfig
public double itemMerge ;
private void itemMerge ( )
{
itemMerge = getDouble ( "merge-radius.item" , 2 . 5 ) ;
itemMerge = getDouble ( "merge-radius.item" , 4 ) ;
log ( "Item Merge Radius: " + itemMerge ) ;
}
public double expMerge ;
private void expMerge ( )
{
expMerge = getDouble ( "merge-radius.exp" , 3 . 0 ) ;
expMerge = getDouble ( "merge-radius.exp" , 6 ) ;
log ( "Experience Merge Radius: " + expMerge ) ;
}
@ -140,9 +140,9 @@ public class SpigotWorldConfig
log ( "Mob Spawn Range: " + mobSpawnRange ) ;
}
public int animalActivationRange = 32 ;
public int monsterActivationRange = 32 ;
public int miscActivationRange = 16 ;
public int animalActivationRange = 8 ;
public int monsterActivationRange = 10 ;
public int miscActivationRange = 2 ;
private void activationRange ( )
{
animalActivationRange = getInt ( "entity-activation-range.animals" , animalActivationRange ) ;
@ -151,11 +151,11 @@ public class SpigotWorldConfig
log ( "Entity Activation Range: An " + animalActivationRange + " / Mo " + monsterActivationRange + " / Mi " + miscActivationRange ) ;
}
public int playerTrackingRange = 48 ;
public int animalTrackingRange = 48 ;
public int monsterTrackingRange = 48 ;
public int miscTrackingRange = 3 2;
public int maxTrackingRange = 6 4;
public int playerTrackingRange = 32 ;
public int animalTrackingRange = 32 ;
public int monsterTrackingRange = 32 ;
public int miscTrackingRange = 24 ;
public int maxTrackingRange = 2 4;
private void trackingRange ( )
{
playerTrackingRange = getInt ( "entity-tracking-range.players" , playerTrackingRange ) ;
@ -166,8 +166,8 @@ public class SpigotWorldConfig
log ( "Entity Tracking Range: Pl " + playerTrackingRange + " / An " + animalTrackingRange + " / Mo " + monsterTrackingRange + " / Mi " + miscTrackingRange + " / Other " + maxTrackingRange ) ;
}
public int hopperTransfer = 8 ;
public int hopperCheck = 8 ;
public int hopperTransfer = 24 ;
public int hopperCheck = 24 ;
private void hoppers ( )
{
// Set the tick delay between hopper item movements
@ -182,7 +182,7 @@ public class SpigotWorldConfig
public boolean randomLightUpdates ;
private void lightUpdates ( )
{
randomLightUpdates = getBoolean ( "random-light-updates" , fals e ) ;
randomLightUpdates = getBoolean ( "random-light-updates" , tru e ) ;
log ( "Random Lighting Updates: " + randomLightUpdates ) ;
}
@ -201,14 +201,14 @@ public class SpigotWorldConfig
public int itemDespawnRate ;
private void itemDespawnRate ( )
{
itemDespawnRate = getInt ( "item-despawn-rate" , 6 000 ) ;
itemDespawnRate = getInt ( "item-despawn-rate" , 3 000 ) ;
log ( "Item Despawn Rate: " + itemDespawnRate ) ;
}
public int arrowDespawnRate ;
private void arrowDespawnRate ( )
{
arrowDespawnRate = getInt ( "arrow-despawn-rate" , 1200 ) ;
arrowDespawnRate = getInt ( "arrow-despawn-rate" , 120 ) ;
log ( "Arrow Despawn Rate: " + arrowDespawnRate ) ;
}
@ -219,7 +219,7 @@ public class SpigotWorldConfig
public AntiXray antiXrayInstance ;
private void antiXray ( )
{
antiXray = getBoolean ( "anti-xray.enabled" , tru e ) ;
antiXray = getBoolean ( "anti-xray.enabled" , fals e ) ;
log ( "Anti X-Ray: " + antiXray ) ;
engineMode = getInt ( "anti-xray.engine-mode" , 1 ) ;
@ -275,7 +275,7 @@ public class SpigotWorldConfig
public int maxCollisionsPerEntity ;
private void maxEntityCollision ( )
{
maxCollisionsPerEntity = getInt ( "max-entity-collisions" , 8 ) ;
maxCollisionsPerEntity = getInt ( "max-entity-collisions" , 2 ) ;
log ( "Max Entity Collisions: " + maxCollisionsPerEntity ) ;
}
@ -283,8 +283,8 @@ public class SpigotWorldConfig
public int entityMaxTickTime ;
private void maxTickTimes ( )
{
tileMaxTickTime = getInt ( "max-tick-time.tile" , 5 0) ;
entityMaxTickTime = getInt ( "max-tick-time.entity" , 5 0) ;
tileMaxTickTime = getInt ( "max-tick-time.tile" , 100 0) ;
entityMaxTickTime = getInt ( "max-tick-time.entity" , 100 0) ;
log ( "Tile Max Tick Time: " + tileMaxTickTime + "ms Entity max Tick Time: " + entityMaxTickTime + "ms" ) ;
}