Rename Configuration to AE Config

This commit is contained in:
AlgorithmX2
2014-02-08 23:08:27 -06:00
parent 0588374450
commit 5f8570abdc
35 changed files with 327 additions and 324 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ import net.minecraft.util.MathHelper;
import net.minecraft.world.World;
import appeng.api.AEApi;
import appeng.core.CommonHelper;
import appeng.core.Configuration;
import appeng.core.AEConfig;
import appeng.util.Platform;
final public class EntityChargedQuartz extends EntityItem
@@ -35,7 +35,7 @@ final public class EntityChargedQuartz extends EntityItem
{
super.onUpdate();
if ( Platform.isClient() && delay++ > 30 && Configuration.instance.enableEffects )
if ( Platform.isClient() && delay++ > 30 && AEConfig.instance.enableEffects )
{
CommonHelper.proxy.spawnLightning( worldObj, posX, posY, posZ );
delay = 0;