Skip to content

Commit

Permalink
Patch up item_projectile collision, fixes #1326
Browse files Browse the repository at this point in the history
  • Loading branch information
Morphan1 committed Mar 9, 2016
1 parent cc0487d commit 1886a0a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -59,7 +59,7 @@ public void m() {
for (Object aList : list) {
Entity entity1 = (Entity) aList;

if ((entity1.ad()) && ((entity1 != shooter) || (age >= 5))) {
if ((entity1.aT()) && ((entity1 != shooter) || (age >= 5))) {
float f1 = 0.3F;
AxisAlignedBB axisalignedbb1 = entity1.getBoundingBox().grow(f1, f1, f1);
MovingObjectPosition movingobjectposition1 = axisalignedbb1.a(vec3d, vec3d1);
Expand Down

0 comments on commit 1886a0a

Please sign in to comment.