Item Despawn Rate

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2013-09-22 19:10:53 +10:00
parent 19bfb10583
commit 54a84c6c79
2 changed files with 20 additions and 2 deletions

View File

@@ -187,4 +187,11 @@ public class SpigotWorldConfig
this.mobSpawnRange = (byte) this.getInt( "mob-spawn-range", 6 );
this.log( "Mob Spawn Range: " + this.mobSpawnRange );
}
public int itemDespawnRate;
private void itemDespawnRate()
{
this.itemDespawnRate = this.getInt( "item-despawn-rate", 6000 );
this.log( "Item Despawn Rate: " + this.itemDespawnRate );
}
}