From de33f43e2524e3385d268b205ca461b64400b8d0 Mon Sep 17 00:00:00 2001 From: Sam Date: Tue, 21 Nov 2017 20:22:13 +0000 Subject: [PATCH] Move location back --- .../gadget/gadgets/outfit/reindeer/OutfitReindeerAntlers.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Mineplex.Core/src/mineplex/core/gadget/gadgets/outfit/reindeer/OutfitReindeerAntlers.java b/Plugins/Mineplex.Core/src/mineplex/core/gadget/gadgets/outfit/reindeer/OutfitReindeerAntlers.java index c3ecebaeb..6fc872a69 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/gadget/gadgets/outfit/reindeer/OutfitReindeerAntlers.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/gadget/gadgets/outfit/reindeer/OutfitReindeerAntlers.java @@ -76,9 +76,9 @@ public class OutfitReindeerAntlers extends OutfitReindeer private void updateRotation(Player player, ArmorStand left, ArmorStand right) { - Location location = player.getLocation().subtract(0, player.isSneaking() ? 0.3 : 0, 0); + Location location = player.getLocation().add(0, player.isSneaking() ? -0.3 : 0.2, 0); location.setPitch(0); - location.add(location.getDirection().multiply(0.4)); + location.add(location.getDirection().multiply(0.2)); left.teleport(location); right.teleport(location);