aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/util/particles
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-03-04 12:58:47 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-03-04 12:58:47 +1000
commitae21012d216df71f31aed6fbc9d76215fc24ceed (patch)
treecc89accbe6ce5c04b72ed3c5e46b2a185f88be6a /src/Java/gtPlusPlus/core/util/particles
parentba89972a22a316030f8c3bd99974f915b1d7aefc (diff)
downloadGT5-Unofficial-ae21012d216df71f31aed6fbc9d76215fc24ceed.tar.gz
GT5-Unofficial-ae21012d216df71f31aed6fbc9d76215fc24ceed.tar.bz2
GT5-Unofficial-ae21012d216df71f31aed6fbc9d76215fc24ceed.zip
+ New texture for the slow builders ring.
+ Added the Alkalus Disk. $ Fixed Frame Box Assembler Recipes. $ Fixed Missing 7Li material. $ Fixed Tiered Tanks not showing their capacity in the tooltip. $ Fixed tooltips for alloys containing Bronze or Steel. $ Fixed Clay Pipe Extruder Recipes. - Removed a handful of Plasma cells for misc. materials. % Changed the Industrial Coke Oven's tooltip, to better describe the input/output requirements. % Cleaned up The Entire Project.
Diffstat (limited to 'src/Java/gtPlusPlus/core/util/particles')
-rw-r--r--src/Java/gtPlusPlus/core/util/particles/BlockBreakParticles.java8
-rw-r--r--src/Java/gtPlusPlus/core/util/particles/EntityParticleFXMysterious.java18
2 files changed, 13 insertions, 13 deletions
diff --git a/src/Java/gtPlusPlus/core/util/particles/BlockBreakParticles.java b/src/Java/gtPlusPlus/core/util/particles/BlockBreakParticles.java
index df0910da99..a1a46b39f4 100644
--- a/src/Java/gtPlusPlus/core/util/particles/BlockBreakParticles.java
+++ b/src/Java/gtPlusPlus/core/util/particles/BlockBreakParticles.java
@@ -6,12 +6,12 @@ import net.minecraft.world.World;
public class BlockBreakParticles {
- public BlockBreakParticles(World world, int x, int y, int z, Block block){
+ public BlockBreakParticles(final World world, final int x, final int y, final int z, final Block block){
try {
HANDLER_FR.createBlockBreakParticles(world, x, y, z, block);
- } catch (Throwable T){
-
+ } catch (final Throwable T){
+
}
}
-
+
}
diff --git a/src/Java/gtPlusPlus/core/util/particles/EntityParticleFXMysterious.java b/src/Java/gtPlusPlus/core/util/particles/EntityParticleFXMysterious.java
index 2c704e48a6..97103b636b 100644
--- a/src/Java/gtPlusPlus/core/util/particles/EntityParticleFXMysterious.java
+++ b/src/Java/gtPlusPlus/core/util/particles/EntityParticleFXMysterious.java
@@ -5,13 +5,13 @@ import net.minecraft.world.World;
public class EntityParticleFXMysterious extends EntityAuraFX
{
- public EntityParticleFXMysterious(World parWorld,
- double parX, double parY, double parZ,
- double parMotionX, double parMotionY, double parMotionZ)
- {
- super(parWorld, parX, parY, parZ, parMotionX, parMotionY, parMotionZ);
- setParticleTextureIndex(82); // same as happy villager
- particleScale = 2.0F;
- setRBGColorF(0x88, 0x00, 0x88);
- }
+ public EntityParticleFXMysterious(final World parWorld,
+ final double parX, final double parY, final double parZ,
+ final double parMotionX, final double parMotionY, final double parMotionZ)
+ {
+ super(parWorld, parX, parY, parZ, parMotionX, parMotionY, parMotionZ);
+ this.setParticleTextureIndex(82); // same as happy villager
+ this.particleScale = 2.0F;
+ this.setRBGColorF(0x88, 0x00, 0x88);
+ }
}