From 2e52d15eccb145b9eb20e53b3b2f854a3190880d Mon Sep 17 00:00:00 2001 From: MustangXPress7 Date: Sun, 10 May 2015 01:22:21 +0200 Subject: [PATCH] Started to fix Meteors from Meteor Sword --- .../cyanwarriorswordsmod/Swords/ItemmeteorSword.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com/cyanwarriorswords/cyanwarriorswordsmod/Swords/ItemmeteorSword.java b/com/cyanwarriorswords/cyanwarriorswordsmod/Swords/ItemmeteorSword.java index 8887cd0..e05b9a4 100644 --- a/com/cyanwarriorswords/cyanwarriorswordsmod/Swords/ItemmeteorSword.java +++ b/com/cyanwarriorswords/cyanwarriorswordsmod/Swords/ItemmeteorSword.java @@ -68,7 +68,7 @@ public ItemStack onItemRightClick(ItemStack itemstack, World world, EntityPlayer if (!world.isRemote) { Vec3 look = entity.getLookVec(); -EntityLargeFireball fireball2 = new EntityLargeFireball(world, entity, 1, 1, 1); +EntityLargeFireball fireball2 = new EntityLargeFireball(world, entity, 0, 0, 0); fireball2.setPosition(entity.posX + look.xCoord * 5, entity.posY + look.yCoord * 5, entity.posZ + look.zCoord * 5); fireball2.accelerationX = look.xCoord * 0.5; fireball2.accelerationY = look.yCoord * 0.5;