Skip to content

Commit

Permalink
Temporarily bypass a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
cavallium committed Apr 1, 2023
1 parent 09a9bfd commit ff09823
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,8 @@ public void waitAllTasks() {

@Override
public void teleport(Player player, Location location) {
player.teleportAsync(location);
// player.teleportAsync(location);
// todo: remove the following line when https://github.com/PaperMC/Folia/issues/26 is fixed
player.getScheduler().run(authMe, task -> player.teleportAsync(location), null);
}
}

0 comments on commit ff09823

Please sign in to comment.