Fix x/z coordinate error, see comment on d0fda72

This commit is contained in:
Electroblob
2018-02-16 16:14:28 +00:00
parent d0d6f3a1fc
commit 2dd52ce6b1
@@ -169,7 +169,7 @@ public class EntityIceGiant extends EntityIronGolem implements ISummonedCreature
target.motionY += 0.2; target.motionY += 0.2;
target.motionX += this.getLookVec().x * 0.2; target.motionX += this.getLookVec().x * 0.2;
target.motionZ += this.getLookVec().x * 0.2; target.motionZ += this.getLookVec().z * 0.2;
target.addPotionEffect(new PotionEffect(WizardryPotions.frost, 300, 0)); target.addPotionEffect(new PotionEffect(WizardryPotions.frost, 300, 0));