diff --git a/Essentials/src/main/java/com/earth2me/essentials/commands/Commandtp.java b/Essentials/src/main/java/com/earth2me/essentials/commands/Commandtp.java index f596ee094fd..ad764a43f67 100644 --- a/Essentials/src/main/java/com/earth2me/essentials/commands/Commandtp.java +++ b/Essentials/src/main/java/com/earth2me/essentials/commands/Commandtp.java @@ -56,7 +56,7 @@ public void run(final Server server, final User user, final String commandLabel, throw new NotEnoughArgumentsException(user.playerTl("teleportInvalidLocation")); } final Location locpos = new Location(user.getWorld(), x2, y2, z2, user.getLocation().getYaw(), user.getLocation().getPitch()); - user.getAsyncTeleport().now(locpos, false, TeleportCause.COMMAND, future); + user.getAsyncTeleport().now(locpos, true, TeleportCause.COMMAND, future); future.thenAccept(success -> { if (success) { user.sendTl("teleporting", locpos.getWorld().getName(), locpos.getBlockX(), locpos.getBlockY(), locpos.getBlockZ());