diff --git a/assets/hbm/textures/items/plate_paa.png b/assets/hbm/textures/items/plate_paa.png index 3ce695ac1..4e7951d23 100644 Binary files a/assets/hbm/textures/items/plate_paa.png and b/assets/hbm/textures/items/plate_paa.png differ diff --git a/assets/hbm/textures/items/plate_steel.png b/assets/hbm/textures/items/plate_steel.png index e29cc7f44..90c5e825b 100644 Binary files a/assets/hbm/textures/items/plate_steel.png and b/assets/hbm/textures/items/plate_steel.png differ diff --git a/assets/hbm/textures/items/plate_titanium.png b/assets/hbm/textures/items/plate_titanium.png index caa15bb4e..763f0ea4f 100644 Binary files a/assets/hbm/textures/items/plate_titanium.png and b/assets/hbm/textures/items/plate_titanium.png differ diff --git a/com/hbm/entity/missile/EntitySoyuz.java b/com/hbm/entity/missile/EntitySoyuz.java index 2368b2850..83ebe1863 100644 --- a/com/hbm/entity/missile/EntitySoyuz.java +++ b/com/hbm/entity/missile/EntitySoyuz.java @@ -61,8 +61,8 @@ public class EntitySoyuz extends Entity { NBTTagCompound data = new NBTTagCompound(); data.setString("type", "exhaust"); data.setString("mode", "soyuz"); - data.setInteger("count", 2); - data.setDouble("width", worldObj.rand.nextDouble() * 0.35 - 0.7); + data.setInteger("count", 1); + data.setDouble("width", worldObj.rand.nextDouble() * 0.25 - 0.5); data.setDouble("posX", x); data.setDouble("posY", y); data.setDouble("posZ", z); diff --git a/com/hbm/entity/projectile/EntityMeteor.java b/com/hbm/entity/projectile/EntityMeteor.java index bb1f5f7a0..aa7da0fff 100644 --- a/com/hbm/entity/projectile/EntityMeteor.java +++ b/com/hbm/entity/projectile/EntityMeteor.java @@ -1,7 +1,5 @@ package com.hbm.entity.projectile; -import com.hbm.entity.particle.EntityGasFlameFX; -import com.hbm.entity.particle.EntitySmokeFX; import com.hbm.explosion.ExplosionLarge; import com.hbm.main.MainRegistry; import com.hbm.world.feature.Meteorite; diff --git a/com/hbm/inventory/MachineRecipes.java b/com/hbm/inventory/MachineRecipes.java index 3a01bd78e..6244b46ed 100644 --- a/com/hbm/inventory/MachineRecipes.java +++ b/com/hbm/inventory/MachineRecipes.java @@ -2028,7 +2028,6 @@ public class MachineRecipes { if(dust != null) { for(ItemStack stack : matches) { - System.out.println("INGOT Added " + stack.getDisplayName() + " to " + dust.getDisplayName() + " (" + dust.stackSize + ")"); shredderRecipes.put(new StackWrapper(stack), dust); } } @@ -2040,7 +2039,6 @@ public class MachineRecipes { dust.stackSize = 2; for(ItemStack stack : matches) { - System.out.println("ORE Added " + stack.getDisplayName() + " to " + dust.getDisplayName() + " (" + dust.stackSize + ")"); shredderRecipes.put(new StackWrapper(stack), dust); } } @@ -2052,7 +2050,6 @@ public class MachineRecipes { dust.stackSize = 9; for(ItemStack stack : matches) { - System.out.println("BLOCK Added " + stack.getDisplayName() + " to " + dust.getDisplayName() + " (" + dust.stackSize + ")"); shredderRecipes.put(new StackWrapper(stack), dust); } } @@ -2062,7 +2059,6 @@ public class MachineRecipes { if(dust != null) { for(ItemStack stack : matches) { - System.out.println("GEM Added " + stack.getDisplayName() + " to " + dust.getDisplayName() + " (" + dust.stackSize + ")"); shredderRecipes.put(new StackWrapper(stack), dust); } } diff --git a/com/hbm/particle/ParticleRocketFlame.java b/com/hbm/particle/ParticleRocketFlame.java index 269ea3a1e..d613dac2e 100644 --- a/com/hbm/particle/ParticleRocketFlame.java +++ b/com/hbm/particle/ParticleRocketFlame.java @@ -65,7 +65,7 @@ public class ParticleRocketFlame extends EntityFX { Random urandom = new Random(this.getEntityId()); - for(int i = 0; i < 15; i++) { + for(int i = 0; i < 10; i++) { p_70539_1_.startDrawingQuads(); @@ -82,7 +82,7 @@ public class ParticleRocketFlame extends EntityFX { p_70539_1_.setNormal(0.0F, 1.0F, 0.0F); p_70539_1_.setBrightness(240); - float spread = (float) Math.pow(((float)(age) / (float)maxAge) * 4F, 1.5) + 0.5F; + float spread = (float) Math.pow(((float)(age) / (float)maxAge) * 4F, 1.5) + 1F; float scale = urandom.nextFloat() * 0.5F + 0.1F + ((float)(age) / (float)maxAge) * 2F; float pX = (float) ((this.prevPosX + (this.posX - this.prevPosX) * (double)p_70539_2_ - interpPosX) + (urandom.nextGaussian() - 1D) * 0.2F * spread); diff --git a/com/hbm/tileentity/machine/TileEntitySoyuzLauncher.java b/com/hbm/tileentity/machine/TileEntitySoyuzLauncher.java index fb3b88010..69644276b 100644 --- a/com/hbm/tileentity/machine/TileEntitySoyuzLauncher.java +++ b/com/hbm/tileentity/machine/TileEntitySoyuzLauncher.java @@ -75,7 +75,7 @@ public class TileEntitySoyuzLauncher extends TileEntityMachineBase implements IS countdown = maxCount; starting = false; } else if(countdown > 0) { - countdown --; + countdown--; if(countdown % 100 == 0 && countdown > 0) worldObj.playSoundEffect(xCoord, yCoord, zCoord, "hbm:alarm.hatch", 100F, 1.1F);