item type config

This commit is contained in:
tilera 2018-02-07 21:35:07 +01:00
parent b2859863b4
commit 2b42bae8e3

View file

@ -99,6 +99,7 @@ public final class AEConfig extends Configuration implements IConfigurableObject
private double WirelessBaseRange = 16;
private double WirelessBoosterRangeMultiplier = 1;
private double WirelessBoosterExp = 1.5;
public int ItemTypeLimit = 65536;
public AEConfig( final File configFile )
{
@ -159,6 +160,8 @@ public final class AEConfig extends Configuration implements IConfigurableObject
this.colorApplicatorBattery = this.get( "battery", "colorApplicator", this.colorApplicatorBattery ).getInt( this.colorApplicatorBattery );
this.matterCannonBattery = this.get( "battery", "matterCannon", this.matterCannonBattery ).getInt( this.matterCannonBattery );
this.ItemTypeLimit = this.get( "storage", "typeLimit", this.ItemTypeLimit ).getInt( this.ItemTypeLimit );
this.clientSync();
for( final AEFeature feature : AEFeature.values() )