/
This update introduces a massive refactor of the drone's movement and scanning logic. By moving away from expensive per-tick operations and constant teleportation, DeliveryDrones 1.0.2 offers a significantly lighter footprint for high-population servers.
setVelocity() for cruise flight. This allows the server to handle the physics naturally, ensuring Armor Stand entities only "tick" while in motion.computeLandingFrom() function now runs once per target change. Drones no longer re-calculate their landing spot every single tick during the descent.| Logic | Old Method (1.0.1) | New Method (1.0.2) | Benefit |
|---|---|---|---|
| Movement | Per-tick Teleport | Physics-based Velocity | Lower CPU & smoother visuals |
| Pathfinding | Every Tick | Cached on target change | Massive reduction in main-thread load |
| Scanning | Dense Radius Scan | Coarse-to-Fine + Heightmap | Near-instant landing calculations |

🛸 Advanced Delivery Drones is a comprehensive Minecraft plugin for real-time item and animal transport via customizable physical drones.