mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2024-12-21 04:49:51 +08:00
Renamed a parameter in BukkitUtil.
This commit is contained in:
parent
ab0d170d9a
commit
743a5ea869
@ -137,12 +137,12 @@ public static boolean equals(org.bukkit.Location a, org.bukkit.Location b) {
|
||||
|
||||
public static final double EQUALS_PRECISION = 0.0001;
|
||||
|
||||
public static org.bukkit.Location toLocation(Location teleportLocation) {
|
||||
Vector pt = teleportLocation.getPosition();
|
||||
public static org.bukkit.Location toLocation(Location location) {
|
||||
Vector pt = location.getPosition();
|
||||
return new org.bukkit.Location(
|
||||
toWorld(teleportLocation.getWorld()),
|
||||
toWorld(location.getWorld()),
|
||||
pt.getX(), pt.getY(), pt.getZ(),
|
||||
teleportLocation.getYaw(), teleportLocation.getPitch()
|
||||
location.getYaw(), location.getPitch()
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user