Skip to content

Commit

Permalink
remove origin world check
Browse files Browse the repository at this point in the history
  • Loading branch information
456dev committed Aug 1, 2023
1 parent 984b861 commit 0680d68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public CourseRunnerListener(Parkour addon) {
public void onVisitorArrive(IslandEnterEvent e) {
// Check if visitor
User user = User.getInstance(e.getPlayerUUID());
if (user == null || !user.isOnline() || !addon.inWorld(e.getLocation())) {
if (user == null || !user.isOnline()) {
return;
}
Island island = e.getIsland();
Expand Down

0 comments on commit 0680d68

Please sign in to comment.