RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
FollowWaypoint.java
1package com.osroyale.game.world.entity.mob.movement.waypoint;
2
3import com.osroyale.game.world.entity.mob.Mob;
4
22
23public class FollowWaypoint extends Waypoint {
24
25 public FollowWaypoint(Mob mob, Mob target) {
26 super(mob, target);
27 }
28
29 @Override
30 public void onDestination() {
31 mob.movement.reset();
32 }
33
34}