Fix rayTrace call to this.l

This commit is contained in:
fullwall 2012-10-28 13:18:38 +08:00
parent bc575cbcf5
commit 918a9c5bba

View File

@ -144,7 +144,7 @@ public class NMS {
public static boolean rayTrace(LivingEntity entity, LivingEntity entity2) {
EntityLiving from = ((CraftLivingEntity) entity).getHandle();
EntityLiving to = ((CraftLivingEntity) entity2).getHandle();
return from.l(to);
return from.m(to);
}
public static void registerEntityClass(Class<? extends Entity> clazz) {