From 06f53ce7c2fc449d6b0a28d2504225dfb255cf5b Mon Sep 17 00:00:00 2001 From: Sollace Date: Mon, 28 Sep 2020 21:29:26 +0200 Subject: [PATCH] We no longer actually need this --- .../unicopia/entity/behaviour/EntityBehaviour.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/main/java/com/minelittlepony/unicopia/entity/behaviour/EntityBehaviour.java b/src/main/java/com/minelittlepony/unicopia/entity/behaviour/EntityBehaviour.java index ea4bedde..dd31acf9 100644 --- a/src/main/java/com/minelittlepony/unicopia/entity/behaviour/EntityBehaviour.java +++ b/src/main/java/com/minelittlepony/unicopia/entity/behaviour/EntityBehaviour.java @@ -131,12 +131,6 @@ public class EntityBehaviour { copyInventory(from, l); } - /*if (to instanceof RangedAttackMob) { - ItemStack activeItem = from.getActiveItem(); - - ((RangedAttackMob)to).setSwingingArms(!activeItem.isEmpty() && activeItem.getUseAction() == UseAction.BOW); - }*/ - if (to instanceof TameableEntity) { ((TameableEntity)to).setSitting(from.isSneaking()); }