Uploaded image for project: 'Minecraft: Java Edition'
  1. Minecraft: Java Edition
  2. MC-196556

When projectiles (such as arrows and tridents) move too fast, they can't be teleported by portals and end gateways

    • Icon: Bug Bug
    • Resolution: Fixed
    • 24w33a, 24w36a
    • 1.16.1, (106)
      1.16.2 Pre-release 1, 1.16.2 Release Candidate 1, 1.16.2 Release Candidate 2, 1.16.2, 1.16.3, 1.16.4 Pre-release 1, 1.16.4 Release Candidate 1, 1.16.4, 20w45a, 20w46a, 20w51a, 21w03a, 1.16.5, 21w05a, 21w05b, 21w06a, 21w07a, 21w11a, 1.17 Pre-release 2, 1.17 Pre-release 5, 1.17 Release Candidate 1, 1.17.1 Release Candidate 1, 1.17.1, 21w37a, 21w40a, 21w42a, 21w43a, 1.18 Pre-release 5, 1.18, 1.18.1 Release Candidate 1, 1.18.2, 22w15a, 1.19, 1.19.1 Release Candidate 2, 1.19.1 Release Candidate 3, 1.19.1, 1.19.2 Release Candidate 1, 1.19.2, 22w42a, 1.19.3 Release Candidate 1, 1.19.3 Release Candidate 3, 1.19.3, 23w04a, 23w06a, 1.19.4 Release Candidate 1, 1.19.4 Release Candidate 3, 1.19.4, 23w16a, 23w17a, 23w18a, 1.20 Pre-release 1, 1.20 Pre-release 2, 1.20 Pre-release 3, 1.20 Pre-release 4, 1.20 Pre-release 5, 1.20 Pre-release 6, 1.20 Pre-release 7, 1.20 Release Candidate 1, 1.20, 1.20.1 Release Candidate 1, 1.20.1, 23w31a, 23w32a, 23w33a, 23w35a, 1.20.2 Pre-release 2, 1.20.2 Release Candidate 1, 1.20.2, 23w40a, 23w41a, 23w42a, 23w43b, 23w44a, 23w45a, 23w46a, 1.20.3 Pre-Release 2, 1.20.3 Release Candidate 1, 1.20.4, 23w51b, 24w03b, 24w04a, 24w05b, 24w06a, 24w07a, 24w09a, 24w11a, 24w12a, 24w13a, 24w14a, 1.20.5 Pre-Release 1, 1.20.5 Pre-Release 3, 1.20.5 Release Candidate 2, 1.20.5, 1.20.6 Release Candidate 1, 1.20.6, 24w18a, 24w21b, 1.21 Pre-Release 1, 1.21 Pre-Release 2, 1.21 Pre-Release 3, 1.21 Pre-Release 4, 1.21 Release Candidate 1, 1.21, 24w33a, 1.21.1, 24w34a
    • None
    • Confirmed
    • Projectiles
    • Normal
    • Platform

      The bug

      When the arrows, tridents and projectiles rate of fire is too fast, it can't be teleported by the portal, end gateway and nether portal.

      Code analysis

      Code analysis by lovexyn0827 can be found in this comment.

        1. 2020-07-30_19.26.53.png
          2020-07-30_19.26.53.png
          688 kB
        2. 2020-07-30_19.27.17.png
          2020-07-30_19.27.17.png
          835 kB
        3. 2020-07-30_19.27.39.png
          2020-07-30_19.27.39.png
          836 kB
        4. 2020-07-30_19.26.44.png
          2020-07-30_19.26.44.png
          940 kB
        5. 2020-07-30_19.27.07.png
          2020-07-30_19.27.07.png
          2.27 MB
        6. 2020-07-30_19.27.29.png
          2020-07-30_19.27.29.png
          2.56 MB
        7. MC-196556.mp4
          6.71 MB
        8. 2024-08-16_20.42.22.png
          2024-08-16_20.42.22.png
          1020 kB
        9. 2024-08-16_20.42.19.png
          2024-08-16_20.42.19.png
          1.13 MB

          [MC-196556] When projectiles (such as arrows and tridents) move too fast, they can't be teleported by portals and end gateways

          Still in the 24w33a.

          [Mod] Les3awe added a comment - Still in the 24w33a.

          lovexyn0827 added a comment - - edited

          This is why it happens:

          In Minecraft 1.16.1 and earlier versions, thrown projects checks if the OUTLINE shapes of blocks, to find potential collisions and chances to be teleported ("hit" a nether_portal block, for example)(See ThrowableProjectile.tick()). A portal has its non-empty OUTLINE shapes though it has no collision box which can stop regular entity movement, so thrown projectiles can always detect if it can be teleported no matter how high their velocity is.

          But in 1.16.2-pre1, something was changed. The  OUTLINE shape get no longer used in collision checks, instead, the COLLIDER shape has been used since then (See ThrowableProjectile.tick() &  ProjectileUtil.getHitResult()). However, portals has empty COLLIDER shapes, so the teleporting check became dead code. And entities only stays in some seperated points, thus if the velocity of a thrown projectile entity is greater than 1 bloch per tick, it may pass through the portal if it failed to be teleported in the Entity.handleNetherPortal() method.

          Suggestions to solve it:

          The change may be intended to fix MC-73884, simply changing it back is not a good idea. But a addional ray trace may be introduced when the speed of the entity is higher than 1 block pre tick, just like what falling_blocks of concrete powder do.

          lovexyn0827 added a comment - - edited This is why it happens: In Minecraft 1.16.1 and earlier versions, thrown projects checks if the OUTLINE shapes of blocks, to find potential collisions and chances to be teleported ("hit" a nether_portal block, for example) (See ThrowableProjectile.tick()) . A portal has its non-empty OUTLINE shapes though it has no collision box which can stop regular entity movement, so thrown projectiles can always detect if it can be teleported no matter how high their velocity is. But in 1.16.2-pre1, something was changed. The  OUTLINE shape get no longer used in collision checks, instead, the COLLIDER shape has been used since then ( See ThrowableProjectile.tick() &  ProjectileUtil.getHitResult() ). However, portals has empty COLLIDER shapes, so the teleporting check became dead code. And entities only stays in some seperated points, thus if the velocity of a thrown projectile entity is greater than 1 bloch per tick, it may pass through the portal if it failed to be teleported in the Entity.handleNetherPortal() method. Suggestions to solve it: The change may be intended to fix MC-73884 , simply changing it back is not a good idea. But a addional ray trace may be introduced when the speed of the entity is higher than 1 block pre tick, just like what falling_blocks of concrete powder do.

          Can confirm in 21w42a.

          [Mod] ampolive added a comment - Can confirm in 21w42a.

          Can confirm in 1.17.1.

          [Mod] ampolive added a comment - Can confirm in 1.17.1.

          [Mod] Avoma added a comment -

          Can confirm in 21w11a.

          [Mod] Avoma added a comment - Can confirm in 21w11a.

          [Mod] Avoma added a comment - - edited

          Can confirm in 21w07a. Video attached.

          [Mod] Avoma added a comment - - edited Can confirm in 21w07a. Video attached.

          [Mod] Avoma added a comment -

          Can confirm in 21w06a.

          [Mod] Avoma added a comment - Can confirm in 21w06a.

          [Mod] Avoma added a comment -

          Can confirm in 21w05b.

          [Mod] Avoma added a comment - Can confirm in 21w05b.

          [Mod] Avoma added a comment -

          Can confirm in 21w05a.

          [Mod] Avoma added a comment - Can confirm in 21w05a.

          [Mod] Avoma added a comment - - edited

          Can confirm in 21w03a.

          [Mod] Avoma added a comment - - edited Can confirm in 21w03a.

            HugoHagglund [Mojang] SHugoh
            Les3awe [Mod] Les3awe
            Votes:
            19 Vote for this issue
            Watchers:
            12 Start watching this issue

              Created:
              Updated:
              Resolved:
              CHK: