Puts everywhere brackets

This commit is contained in:
thatsIch
2015-04-29 02:30:53 +02:00
parent 23aa8fd72d
commit 64ed05a1b4
465 changed files with 6726 additions and 14 deletions
@@ -70,10 +70,14 @@ public final class EntitySingularity extends AEBaseEntityItem
public void doExplosion()
{
if( Platform.isClient() )
{
return;
}
if( !AEConfig.instance.isFeatureEnabled( AEFeature.inWorldSingularity ) )
{
return;
}
ItemStack item = this.getEntityItem();
@@ -120,7 +124,9 @@ public final class EntitySingularity extends AEBaseEntityItem
{
other.stackSize--;
if( other.stackSize == 0 )
{
e.setDead();
}
for( ItemStack singularityStack : materials.qESingularity().maybeStack( 2 ).asSet() )
{
@@ -135,7 +141,9 @@ public final class EntitySingularity extends AEBaseEntityItem
}
if( item.stackSize <= 0 )
{
this.setDead();
}
}
}
}