3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-19 13:00:06 +01:00

Fixed player teleporting not working with a certain method. This fixes BUKKIT-198

Dieser Commit ist enthalten in:
Nathan Adams 2011-12-04 13:22:31 +00:00
Ursprung 1dbebb4593
Commit 1185ca75fc

Datei anzeigen

@ -153,7 +153,7 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
}
public boolean teleport(Location location) {
return teleport(this, TeleportCause.PLUGIN);
return teleport(location, TeleportCause.PLUGIN);
}
public boolean teleport(Location location, TeleportCause cause) {