diff options
author | Tec <daniel112092@gmail.com> | 2019-07-17 10:23:45 +0200 |
---|---|---|
committer | Tec <daniel112092@gmail.com> | 2019-07-17 10:23:45 +0200 |
commit | 1790e69559b659d0050fe95d5df489e6b193ccf0 (patch) | |
tree | 8ea25383f4b4f27145b210cbeb2960562944a647 /src | |
parent | dfcdcaa0c6aadabdb665d34b74f0eed180600dc8 (diff) | |
download | GT5-Unofficial-1790e69559b659d0050fe95d5df489e6b193ccf0.tar.gz GT5-Unofficial-1790e69559b659d0050fe95d5df489e6b193ccf0.tar.bz2 GT5-Unofficial-1790e69559b659d0050fe95d5df489e6b193ccf0.zip |
Cleanup particle code
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/com/github/technus/tectech/entity/fx/WeightlessParticleFX.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/main/java/com/github/technus/tectech/entity/fx/WeightlessParticleFX.java b/src/main/java/com/github/technus/tectech/entity/fx/WeightlessParticleFX.java index 22b72463f8..f4afa098d9 100644 --- a/src/main/java/com/github/technus/tectech/entity/fx/WeightlessParticleFX.java +++ b/src/main/java/com/github/technus/tectech/entity/fx/WeightlessParticleFX.java @@ -8,8 +8,6 @@ import net.minecraft.world.World; @SideOnly(Side.CLIENT) public class WeightlessParticleFX extends EntityFX { - private static final String __OBFID = "CL_00000903"; - public WeightlessParticleFX(World p_i1205_1_, double p_i1205_2_, double p_i1205_4_, double p_i1205_6_, double p_i1205_8_, double p_i1205_10_, double p_i1205_12_) { super(p_i1205_1_, p_i1205_2_, p_i1205_4_, p_i1205_6_, p_i1205_8_, p_i1205_10_, p_i1205_12_); @@ -41,11 +39,5 @@ public class WeightlessParticleFX extends EntityFX this.motionX *= 0.8999999761581421D; this.motionY *= 0.8999999761581421D; this.motionZ *= 0.8999999761581421D; - - if (this.onGround) - { - this.motionX *= 0.699999988079071D; - this.motionZ *= 0.699999988079071D; - } } } |