Removed Block Definitions for MAC Parts.
Removed Options For MAC and Crafting. Added Options for Crafting with Quartz Growth and Fluix Reaction. EU Tunnels Re-Added ( Limit 1 per block. ) Adjusted naming/categorization of various features. Added "sparkle" effect to seeds that are "growing"
This commit is contained in:
@@ -12,8 +12,10 @@ import net.minecraft.util.AxisAlignedBB;
|
||||
import net.minecraft.util.MathHelper;
|
||||
import net.minecraft.world.World;
|
||||
import appeng.api.AEApi;
|
||||
import appeng.core.CommonHelper;
|
||||
import appeng.client.EffectType;
|
||||
import appeng.core.AEConfig;
|
||||
import appeng.core.CommonHelper;
|
||||
import appeng.core.features.AEFeature;
|
||||
import appeng.util.Platform;
|
||||
|
||||
final public class EntityChargedQuartz extends EntityItem
|
||||
@@ -35,9 +37,12 @@ final public class EntityChargedQuartz extends EntityItem
|
||||
{
|
||||
super.onUpdate();
|
||||
|
||||
if ( !AEConfig.instance.isFeatureEnabled( AEFeature.inWorldFluix ) )
|
||||
return;
|
||||
|
||||
if ( Platform.isClient() && delay++ > 30 && AEConfig.instance.enableEffects )
|
||||
{
|
||||
CommonHelper.proxy.spawnLightning( worldObj, posX, posY, posZ );
|
||||
CommonHelper.proxy.spawnEffect( EffectType.Lightning, worldObj, posX, posY, posZ );
|
||||
delay = 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user