Skip to content

Commit f0acbda

Browse files
Get rid of the debugging particles
1 parent 914c468 commit f0acbda

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

API/src/main/java/org/inventivetalent/npclib/path/PathfinderAbstract.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ public PathfinderAbstract(Vector3DDouble target, double speed) {
2929
public void tick() {
3030
super.tick();
3131

32-
for (int i = 0; i < this.pathEntity.getLength(); i++) {
33-
NMSPathPoint point = this.pathEntity.getPoint(i);
34-
getNpcWorld().spawnParticle(Particle.FLAME, point.getX() + .5, point.getY() + .5, point.getZ() + .5, 1, 0, 0, 0, 0, null);
35-
}
36-
3732
if (this.currentPoint == null) {
3833
// We have no points!
3934
finished = true;

0 commit comments

Comments
 (0)